]>
git.saurik.com Git - wxWidgets.git/blob - src/gtk1/spinbutt.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk1/spinbutt.cpp
3 // Purpose: wxSpinButton
7 // Copyright: (c) Robert Roebling
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // For compilers that support precompilation, includes "wx.h".
12 #include "wx/wxprec.h"
16 #include "wx/spinbutt.h"
23 #include "wx/gtk1/private.h"
25 //-----------------------------------------------------------------------------
27 //-----------------------------------------------------------------------------
29 extern void wxapp_install_idle_handler();
32 //-----------------------------------------------------------------------------
34 //-----------------------------------------------------------------------------
36 extern bool g_blockEventsOnDrag
;
38 static const float sensitivity
= 0.02;
40 //-----------------------------------------------------------------------------
42 //-----------------------------------------------------------------------------
45 static void gtk_spinbutt_callback( GtkWidget
*WXUNUSED(widget
), wxSpinButton
*win
)
47 if (g_isIdle
) wxapp_install_idle_handler();
49 if (!win
->m_hasVMT
) return;
50 if (g_blockEventsOnDrag
) return;
52 float diff
= win
->m_adjust
->value
- win
->m_oldPos
;
53 if (fabs(diff
) < sensitivity
) return;
55 wxEventType command
= wxEVT_NULL
;
57 float line_step
= win
->m_adjust
->step_increment
;
59 if (fabs(diff
-line_step
) < sensitivity
) command
= wxEVT_SCROLL_LINEUP
;
60 else if (fabs(diff
+line_step
) < sensitivity
) command
= wxEVT_SCROLL_LINEDOWN
;
61 else command
= wxEVT_SCROLL_THUMBTRACK
;
63 int value
= (int)ceil(win
->m_adjust
->value
);
65 wxSpinEvent
event( command
, win
->GetId());
66 event
.SetPosition( value
);
67 event
.SetEventObject( win
);
69 if ((win
->GetEventHandler()->ProcessEvent( event
)) &&
72 /* program has vetoed */
73 win
->m_adjust
->value
= win
->m_oldPos
;
75 gtk_signal_disconnect_by_func( GTK_OBJECT (win
->m_adjust
),
76 (GtkSignalFunc
) gtk_spinbutt_callback
,
79 gtk_signal_emit_by_name( GTK_OBJECT(win
->m_adjust
), "value_changed" );
81 gtk_signal_connect( GTK_OBJECT (win
->m_adjust
),
83 (GtkSignalFunc
) gtk_spinbutt_callback
,
88 win
->m_oldPos
= win
->m_adjust
->value
;
90 /* always send a thumbtrack event */
91 if (command
!= wxEVT_SCROLL_THUMBTRACK
)
93 command
= wxEVT_SCROLL_THUMBTRACK
;
94 wxSpinEvent
event2( command
, win
->GetId());
95 event2
.SetPosition( value
);
96 event2
.SetEventObject( win
);
97 win
->GetEventHandler()->ProcessEvent( event2
);
102 //-----------------------------------------------------------------------------
104 //-----------------------------------------------------------------------------
106 IMPLEMENT_DYNAMIC_CLASS(wxSpinButton
,wxControl
)
107 IMPLEMENT_DYNAMIC_CLASS(wxSpinEvent
, wxNotifyEvent
)
109 BEGIN_EVENT_TABLE(wxSpinButton
, wxControl
)
110 EVT_SIZE(wxSpinButton::OnSize
)
113 bool wxSpinButton::Create(wxWindow
*parent
,
118 const wxString
& name
)
122 wxSize new_size
= size
,
123 sizeBest
= DoGetBestSize();
124 new_size
.x
= sizeBest
.x
; // override width always
125 if (new_size
.y
== -1)
126 new_size
.y
= sizeBest
.y
;
128 if (!PreCreation( parent
, pos
, new_size
) ||
129 !CreateBase( parent
, id
, pos
, new_size
, style
, wxDefaultValidator
, name
))
131 wxFAIL_MSG( wxT("wxXX creation failed") );
137 m_adjust
= (GtkAdjustment
*) gtk_adjustment_new( 0.0, 0.0, 100.0, 1.0, 5.0, 0.0);
139 m_widget
= gtk_spin_button_new( m_adjust
, 0, 0 );
141 gtk_spin_button_set_wrap( GTK_SPIN_BUTTON(m_widget
),
142 (int)(m_windowStyle
& wxSP_WRAP
) );
144 gtk_signal_connect( GTK_OBJECT (m_adjust
),
146 (GtkSignalFunc
) gtk_spinbutt_callback
,
149 m_parent
->DoAddChild( this );
151 PostCreation(new_size
);
156 int wxSpinButton::GetMin() const
158 wxCHECK_MSG( (m_widget
!= NULL
), 0, wxT("invalid spin button") );
160 return (int)ceil(m_adjust
->lower
);
163 int wxSpinButton::GetMax() const
165 wxCHECK_MSG( (m_widget
!= NULL
), 0, wxT("invalid spin button") );
167 return (int)ceil(m_adjust
->upper
);
170 int wxSpinButton::GetValue() const
172 wxCHECK_MSG( (m_widget
!= NULL
), 0, wxT("invalid spin button") );
174 return (int)ceil(m_adjust
->value
);
177 void wxSpinButton::SetValue( int value
)
179 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid spin button") );
181 float fpos
= (float)value
;
183 if (fabs(fpos
-m_adjust
->value
) < sensitivity
) return;
185 m_adjust
->value
= fpos
;
187 gtk_signal_emit_by_name( GTK_OBJECT(m_adjust
), "value_changed" );
190 void wxSpinButton::SetRange(int minVal
, int maxVal
)
192 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid spin button") );
194 float fmin
= (float)minVal
;
195 float fmax
= (float)maxVal
;
197 if ((fabs(fmin
-m_adjust
->lower
) < sensitivity
) &&
198 (fabs(fmax
-m_adjust
->upper
) < sensitivity
))
203 m_adjust
->lower
= fmin
;
204 m_adjust
->upper
= fmax
;
206 gtk_signal_emit_by_name( GTK_OBJECT(m_adjust
), "changed" );
208 // these two calls are required due to some bug in GTK
213 void wxSpinButton::OnSize( wxSizeEvent
&WXUNUSED(event
) )
215 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid spin button") );
217 m_width
= DoGetBestSize().x
;
218 gtk_widget_set_usize( m_widget
, m_width
, m_height
);
221 bool wxSpinButton::IsOwnGtkWindow( GdkWindow
*window
)
223 return GTK_SPIN_BUTTON(m_widget
)->panel
== window
;
226 wxSize
wxSpinButton::DoGetBestSize() const
228 wxSize
best(15, 26); // FIXME
235 wxSpinButton::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
237 // TODO: overload to accept functions like gtk_spin_button_new?
238 // Until then use a similar type
239 return GetDefaultAttributesFromGTKWidget(gtk_button_new
);
242 #endif // wxUSE_SPINBTN