]>
Commit | Line | Data |
---|---|---|
8e189077 RR |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: spinbutt.cpp | |
3 | // Purpose: wxSpinButton | |
4 | // Author: Robert | |
5 | // Modified by: | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) Robert Roebling | |
6380910c | 8 | // Licence: wxWindows licence |
8e189077 RR |
9 | ///////////////////////////////////////////////////////////////////////////// |
10 | ||
11 | #ifdef __GNUG__ | |
12 | #pragma implementation "spinbutt.h" | |
13 | #endif | |
14 | ||
15 | #include "wx/spinbutt.h" | |
dcf924a3 RR |
16 | |
17 | #ifdef wxUSE_SPINBTN | |
18 | ||
8e189077 | 19 | #include "wx/utils.h" |
f5368809 | 20 | #include <math.h> |
8e189077 | 21 | |
83624f79 RR |
22 | #include "gdk/gdk.h" |
23 | #include "gtk/gtk.h" | |
24 | ||
acfd422a RR |
25 | //----------------------------------------------------------------------------- |
26 | // idle system | |
27 | //----------------------------------------------------------------------------- | |
28 | ||
29 | extern void wxapp_install_idle_handler(); | |
30 | extern bool g_isIdle; | |
31 | ||
8e189077 RR |
32 | //----------------------------------------------------------------------------- |
33 | // data | |
34 | //----------------------------------------------------------------------------- | |
35 | ||
36 | extern bool g_blockEventsOnDrag; | |
37 | ||
6380910c VZ |
38 | static const float sensitivity = 0.2; |
39 | ||
8e189077 RR |
40 | //----------------------------------------------------------------------------- |
41 | // "value_changed" | |
42 | //----------------------------------------------------------------------------- | |
43 | ||
44 | static void gtk_spinbutt_callback( GtkWidget *WXUNUSED(widget), wxSpinButton *win ) | |
6380910c | 45 | { |
acfd422a RR |
46 | if (g_isIdle) wxapp_install_idle_handler(); |
47 | ||
a2053b27 | 48 | if (!win->m_hasVMT) return; |
83624f79 | 49 | if (g_blockEventsOnDrag) return; |
828f655f | 50 | |
83624f79 | 51 | float diff = win->m_adjust->value - win->m_oldPos; |
6380910c | 52 | if (fabs(diff) < sensitivity) return; |
828f655f | 53 | win->m_oldPos = win->m_adjust->value; |
6380910c | 54 | |
83624f79 | 55 | wxEventType command = wxEVT_NULL; |
6380910c | 56 | |
83624f79 RR |
57 | float line_step = win->m_adjust->step_increment; |
58 | float page_step = win->m_adjust->page_increment; | |
6380910c VZ |
59 | |
60 | if (fabs(diff-line_step) < sensitivity) command = wxEVT_SCROLL_LINEDOWN; | |
61 | else if (fabs(diff+line_step) < sensitivity) command = wxEVT_SCROLL_LINEUP; | |
62 | else if (fabs(diff-page_step) < sensitivity) command = wxEVT_SCROLL_PAGEDOWN; | |
63 | else if (fabs(diff+page_step) < sensitivity) command = wxEVT_SCROLL_PAGEUP; | |
83624f79 | 64 | else command = wxEVT_SCROLL_THUMBTRACK; |
8e189077 | 65 | |
66d78146 | 66 | int value = (int)ceil(win->m_adjust->value); |
6380910c | 67 | |
83624f79 RR |
68 | wxSpinEvent event( command, win->GetId()); |
69 | event.SetPosition( value ); | |
83624f79 | 70 | event.SetEventObject( win ); |
6380910c | 71 | |
828f655f | 72 | win->GetEventHandler()->ProcessEvent( event ); |
8e189077 RR |
73 | } |
74 | ||
75 | //----------------------------------------------------------------------------- | |
76 | // wxSpinButton | |
77 | //----------------------------------------------------------------------------- | |
78 | ||
79 | IMPLEMENT_DYNAMIC_CLASS(wxSpinButton,wxControl) | |
31528cd3 | 80 | IMPLEMENT_DYNAMIC_CLASS(wxSpinEvent, wxScrollEvent); |
8e189077 RR |
81 | |
82 | BEGIN_EVENT_TABLE(wxSpinButton, wxControl) | |
83 | EVT_SIZE(wxSpinButton::OnSize) | |
84 | END_EVENT_TABLE() | |
85 | ||
31528cd3 VZ |
86 | bool wxSpinButton::Create(wxWindow *parent, |
87 | wxWindowID id, | |
88 | const wxPoint& pos, | |
89 | const wxSize& size, | |
90 | long style, | |
91 | const wxString& name) | |
8e189077 | 92 | { |
83624f79 | 93 | m_needParent = TRUE; |
6380910c | 94 | |
83624f79 | 95 | wxSize new_size = size; |
19da4326 | 96 | new_size.x = 15; |
6380910c VZ |
97 | if (new_size.y == -1) |
98 | new_size.y = 30; | |
99 | ||
2259e007 | 100 | if (!PreCreation( parent, pos, new_size ) || |
4dcaf11a RR |
101 | !CreateBase( parent, id, pos, new_size, style, wxDefaultValidator, name )) |
102 | { | |
103 | wxFAIL_MSG( _T("wxXX creation failed") ); | |
104 | return FALSE; | |
105 | } | |
8e189077 | 106 | |
83624f79 | 107 | m_oldPos = 0.0; |
8e189077 | 108 | |
83624f79 | 109 | m_adjust = (GtkAdjustment*) gtk_adjustment_new( 0.0, 0.0, 100.0, 1.0, 5.0, 0.0); |
6380910c | 110 | |
83624f79 | 111 | m_widget = gtk_spin_button_new( m_adjust, 0, 0 ); |
6380910c | 112 | |
83624f79 | 113 | gtk_spin_button_set_wrap( GTK_SPIN_BUTTON(m_widget), (m_windowStyle & wxSP_WRAP) ); |
6380910c VZ |
114 | |
115 | gtk_signal_connect( GTK_OBJECT (m_adjust), | |
83624f79 | 116 | "value_changed", |
6380910c VZ |
117 | (GtkSignalFunc) gtk_spinbutt_callback, |
118 | (gpointer) this ); | |
119 | ||
f03fc89f | 120 | m_parent->DoAddChild( this ); |
6380910c | 121 | |
83624f79 | 122 | PostCreation(); |
6380910c | 123 | |
83624f79 | 124 | SetBackgroundColour( parent->GetBackgroundColour() ); |
8e189077 | 125 | |
83624f79 | 126 | Show( TRUE ); |
6380910c | 127 | |
83624f79 | 128 | return TRUE; |
8e189077 RR |
129 | } |
130 | ||
131 | wxSpinButton::~wxSpinButton() | |
132 | { | |
133 | } | |
134 | ||
135 | int wxSpinButton::GetMin() const | |
136 | { | |
9f15c5fe | 137 | wxCHECK_MSG( (m_widget != NULL), 0, _T("invalid spin button") ); |
6380910c | 138 | |
66d78146 | 139 | return (int)ceil(m_adjust->lower); |
8e189077 RR |
140 | } |
141 | ||
142 | int wxSpinButton::GetMax() const | |
143 | { | |
9f15c5fe | 144 | wxCHECK_MSG( (m_widget != NULL), 0, _T("invalid spin button") ); |
6380910c | 145 | |
66d78146 | 146 | return (int)ceil(m_adjust->upper); |
8e189077 RR |
147 | } |
148 | ||
149 | int wxSpinButton::GetValue() const | |
150 | { | |
9f15c5fe | 151 | wxCHECK_MSG( (m_widget != NULL), 0, _T("invalid spin button") ); |
6380910c | 152 | |
66d78146 | 153 | return (int)ceil(m_adjust->value); |
8e189077 RR |
154 | } |
155 | ||
156 | void wxSpinButton::SetValue( int value ) | |
157 | { | |
9f15c5fe | 158 | wxCHECK_RET( (m_widget != NULL), _T("invalid spin button") ); |
6380910c | 159 | |
83624f79 RR |
160 | float fpos = (float)value; |
161 | m_oldPos = fpos; | |
6380910c VZ |
162 | if (fabs(fpos-m_adjust->value) < sensitivity) return; |
163 | ||
83624f79 | 164 | m_adjust->value = fpos; |
6380910c | 165 | |
83624f79 | 166 | gtk_signal_emit_by_name( GTK_OBJECT(m_adjust), "value_changed" ); |
8e189077 RR |
167 | } |
168 | ||
169 | void wxSpinButton::SetRange(int minVal, int maxVal) | |
170 | { | |
9f15c5fe | 171 | wxCHECK_RET( (m_widget != NULL), _T("invalid spin button") ); |
6380910c | 172 | |
83624f79 RR |
173 | float fmin = (float)minVal; |
174 | float fmax = (float)maxVal; | |
6380910c VZ |
175 | |
176 | if ((fabs(fmin-m_adjust->lower) < sensitivity) && | |
177 | (fabs(fmax-m_adjust->upper) < sensitivity)) | |
83624f79 RR |
178 | { |
179 | return; | |
180 | } | |
6380910c | 181 | |
83624f79 RR |
182 | m_adjust->lower = fmin; |
183 | m_adjust->upper = fmax; | |
8e189077 | 184 | |
83624f79 | 185 | gtk_signal_emit_by_name( GTK_OBJECT(m_adjust), "changed" ); |
8e189077 RR |
186 | } |
187 | ||
188 | void wxSpinButton::OnSize( wxSizeEvent &WXUNUSED(event) ) | |
189 | { | |
9f15c5fe | 190 | wxCHECK_RET( (m_widget != NULL), _T("invalid spin button") ); |
6380910c | 191 | |
19da4326 | 192 | m_width = 15; |
83624f79 | 193 | gtk_widget_set_usize( m_widget, m_width, m_height ); |
8e189077 RR |
194 | } |
195 | ||
196 | bool wxSpinButton::IsOwnGtkWindow( GdkWindow *window ) | |
197 | { | |
83624f79 | 198 | return GTK_SPIN_BUTTON(m_widget)->panel == window; |
8e189077 RR |
199 | } |
200 | ||
201 | void wxSpinButton::ApplyWidgetStyle() | |
202 | { | |
83624f79 RR |
203 | SetWidgetStyle(); |
204 | gtk_widget_set_style( m_widget, m_widgetStyle ); | |
8e189077 RR |
205 | } |
206 | ||
31528cd3 | 207 | #endif |