X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ef5c70f96f5e06e1c8f8119f51b99dd019583d2b..b29b9485f64d1e50fd0f756b935da36cea56bbf8:/src/gtk/slider.cpp?ds=sidebyside diff --git a/src/gtk/slider.cpp b/src/gtk/slider.cpp index 5cde6b19f6..c0e286da94 100644 --- a/src/gtk/slider.cpp +++ b/src/gtk/slider.cpp @@ -19,7 +19,7 @@ #include "wx/math.h" #endif -#include "wx/gtk/private.h" +#include //----------------------------------------------------------------------------- // data @@ -124,15 +124,14 @@ extern "C" { static void gtk_value_changed(GtkRange* range, wxSlider* win) { - if (g_isIdle) wxapp_install_idle_handler(); - - if (!win->m_hasVMT) return; - if (g_blockEventsOnDrag) return; - GtkAdjustment* adj = gtk_range_get_adjustment (range); const int pos = wxRound(adj->value); const double oldPos = win->m_pos; win->m_pos = adj->value; + + if (!win->m_hasVMT || g_blockEventsOnDrag) + return; + if (win->m_blockScrollEvent) { win->m_scrollEventType = GTK_SCROLL_NONE; @@ -181,7 +180,6 @@ gtk_value_changed(GtkRange* range, wxSlider* win) // If integral position has changed if (wxRound(oldPos) != pos) { - wxCHECK_RET(eventType != wxEVT_NULL, _T("Unknown slider scroll event type")); ProcessScrollEvent(win, eventType); win->m_needThumbRelease = eventType == wxEVT_SCROLL_THUMBTRACK; } @@ -233,9 +231,9 @@ gtk_event_after(GtkRange* range, GdkEvent* event, wxSlider* win) ProcessScrollEvent(win, wxEVT_SCROLL_THUMBRELEASE); } // Keep slider at an integral position - win->BlockScrollEvent(); + win->m_blockScrollEvent = true; gtk_range_set_value(GTK_RANGE (win->m_widget), win->GetValue()); - win->UnblockScrollEvent(); + win->m_blockScrollEvent = false; } } } @@ -281,16 +279,20 @@ wxSlider::wxSlider() m_pos = 0; m_scrollEventType = 0; m_needThumbRelease = false; + m_blockScrollEvent = false; } -bool wxSlider::Create(wxWindow *parent, wxWindowID id, - int value, int minValue, int maxValue, - const wxPoint& pos, const wxSize& size, - long style, const wxValidator& validator, const wxString& name ) +bool wxSlider::Create(wxWindow *parent, + wxWindowID id, + int value, + int minValue, + int maxValue, + const wxPoint& pos, + const wxSize& size, + long style, + const wxValidator& validator, + const wxString& name) { - m_acceptsFocus = true; - m_needParent = true; - if (!PreCreation( parent, pos, size ) || !CreateBase( parent, id, pos, size, style, validator, name )) { @@ -298,10 +300,6 @@ bool wxSlider::Create(wxWindow *parent, wxWindowID id, return false; } - m_pos = 0; - m_scrollEventType = 0; - m_needThumbRelease = false; - if (style & wxSL_VERTICAL) m_widget = gtk_vscale_new( (GtkAdjustment *) NULL ); else @@ -343,18 +341,18 @@ void wxSlider::SetValue( int value ) { if (GetValue() != value) { - BlockScrollEvent(); + m_blockScrollEvent = true; gtk_range_set_value(GTK_RANGE (m_widget), value); - UnblockScrollEvent(); + m_blockScrollEvent = false; } } void wxSlider::SetRange( int minValue, int maxValue ) { - BlockScrollEvent(); + m_blockScrollEvent = true; gtk_range_set_range(GTK_RANGE (m_widget), minValue, maxValue); gtk_range_set_increments(GTK_RANGE (m_widget), 1, (maxValue - minValue + 9) / 10); - UnblockScrollEvent(); + m_blockScrollEvent = false; } int wxSlider::GetMin() const @@ -369,9 +367,9 @@ int wxSlider::GetMax() const void wxSlider::SetPageSize( int pageSize ) { - BlockScrollEvent(); + m_blockScrollEvent = true; gtk_range_set_increments(GTK_RANGE (m_widget), GetLineSize(), pageSize); - UnblockScrollEvent(); + m_blockScrollEvent = false; } int wxSlider::GetPageSize() const @@ -391,9 +389,9 @@ int wxSlider::GetThumbLength() const void wxSlider::SetLineSize( int lineSize ) { - BlockScrollEvent(); + m_blockScrollEvent = true; gtk_range_set_increments(GTK_RANGE (m_widget), lineSize, GetPageSize()); - UnblockScrollEvent(); + m_blockScrollEvent = false; } int wxSlider::GetLineSize() const