#include "wx/slider.h"
#include "wx/os2/private.h"
-#if !USE_SHARED_LIBRARY
IMPLEMENT_DYNAMIC_CLASS(wxSlider, wxControl)
// Slider
int value, int minValue, int maxValue,
const wxPoint& pos,
const wxSize& size, long style,
+#if wxUSE_VALIDATORS
const wxValidator& validator,
+#endif
const wxString& name)
{
SetName(name);
+#if wxUSE_VALIDATORS
SetValidator(validator);
+#endif
if (parent) parent->AddChild(this);
return TRUE;
}
*/
+ int newPos = 0; //temporary
SetValue(newPos);
wxScrollEvent event(scrollEvent, m_windowId);