X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/97b3455a6d8063228347484ca5df6507341aeced..a5e0e655cb829a0112e1eecdf9ce4bede79cae80:/src/gtk1/slider.cpp?ds=sidebyside diff --git a/src/gtk1/slider.cpp b/src/gtk1/slider.cpp index 74449d7641..3f2b9b84f8 100644 --- a/src/gtk1/slider.cpp +++ b/src/gtk1/slider.cpp @@ -48,7 +48,7 @@ static void gtk_slider_callback( GtkWidget *WXUNUSED(widget), wxSlider *win ) int value = (int)(win->m_adjust->value+0.5); int orient = wxHORIZONTAL; - if (win->GetWindowStyleFlag() & wxSB_VERTICAL == wxSB_VERTICAL) orient = wxHORIZONTAL; + if (win->GetWindowStyleFlag() & wxSB_VERTICAL == wxSB_VERTICAL) orient = wxVERTICAL; wxScrollEvent event( command, win->GetId(), value, orient ); event.SetEventObject( win ); @@ -238,3 +238,14 @@ void wxSlider::ClearSel(void) { } +bool wxSlider::IsOwnGtkWindow( GdkWindow *window ) +{ + GtkRange *range = GTK_RANGE(m_widget); + return ( (window == GTK_WIDGET(range)->window) || + (window == range->trough) || + (window == range->slider) || + (window == range->step_forw) || + (window == range->step_back) ); +} + +