…I’m just using the slider panel to adjust values in my parameter class. And when those change, the drawing will be automatically updated. No event needed since it’s already redrawing every frame. If the drawing gets too heavy then I can fire an event when the parameters change and defer redraw until then but.
Besides, it’d be silly if I have to write code in the controller to wire the events from the SliderPanel to update the Parameters. I want all of that taken care of in the SliderPanel.
So the purpose of this panel is very much catered to updating the Parameters class. Maybe a better name would be ParamSliders or ParameterPanel or something. Ooh alliteration. (-:
…
Still named SliderPanel right now but I got it to process events, update the value in the Parameters class, and update the little value display textbox next to the slider.
Next I’ll need to figure out how to deal with tuples.