#if wxUSE_SLIDER
-#ifndef WX_PRECOMP
-#include "wx/utils.h"
-#include "wx/brush.h"
#include "wx/slider.h"
-#endif
-#include "wx/toplevel.h"
+#ifndef WX_PRECOMP
+ #include "wx/utils.h"
+ #include "wx/brush.h"
+ #include "wx/toplevel.h"
+#endif
#include <Form.h>
#include <Control.h>
if(slider==NULL)
return false;
- SetInitialBestSize(size);
+ SetInitialSize(size);
Show();
return true;
}
wxScrollEvent eventWxTrack(wxEVT_SCROLL_THUMBRELEASE, GetId());
eventWxTrack.SetPosition(m_oldPos);
eventWxTrack.SetEventObject(this);
- bool handled = GetEventHandler()->ProcessEvent(eventWxTrack);
+ bool handled = HandleWindowEvent(eventWxTrack);
// then slider event if position changed
if( m_oldValue != m_oldPos )
wxScrollEvent eventWx(wxEVT_SCROLL_THUMBTRACK, GetId());
eventWx.SetPosition(newPos);
eventWx.SetEventObject(this);
- return GetEventHandler()->ProcessEvent(eventWx);
+ return HandleWindowEvent(eventWx);
}
void wxSlider::Command (wxCommandEvent & event)