]>
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 ); | |
70 | event.SetOrientation( wxVERTICAL ); | |
71 | event.SetEventObject( win ); | |
6380910c | 72 | |
828f655f | 73 | win->GetEventHandler()->ProcessEvent( event ); |
8e189077 RR |
74 | } |
75 | ||
76 | //----------------------------------------------------------------------------- | |
77 | // wxSpinButton | |
78 | //----------------------------------------------------------------------------- | |
79 | ||
80 | IMPLEMENT_DYNAMIC_CLASS(wxSpinButton,wxControl) | |
31528cd3 | 81 | IMPLEMENT_DYNAMIC_CLASS(wxSpinEvent, wxScrollEvent); |
8e189077 RR |
82 | |
83 | BEGIN_EVENT_TABLE(wxSpinButton, wxControl) | |
84 | EVT_SIZE(wxSpinButton::OnSize) | |
85 | END_EVENT_TABLE() | |
86 | ||
31528cd3 VZ |
87 | bool wxSpinButton::Create(wxWindow *parent, |
88 | wxWindowID id, | |
89 | const wxPoint& pos, | |
90 | const wxSize& size, | |
91 | long style, | |
92 | const wxString& name) | |
8e189077 | 93 | { |
83624f79 | 94 | m_needParent = TRUE; |
6380910c | 95 | |
83624f79 | 96 | wxSize new_size = size; |
19da4326 | 97 | new_size.x = 15; |
6380910c VZ |
98 | if (new_size.y == -1) |
99 | new_size.y = 30; | |
100 | ||
83624f79 | 101 | PreCreation( parent, id, pos, new_size, style, name ); |
6380910c | 102 | |
8e189077 RR |
103 | // SetValidator( validator ); |
104 | ||
83624f79 | 105 | m_oldPos = 0.0; |
8e189077 | 106 | |
83624f79 | 107 | m_adjust = (GtkAdjustment*) gtk_adjustment_new( 0.0, 0.0, 100.0, 1.0, 5.0, 0.0); |
6380910c | 108 | |
83624f79 | 109 | m_widget = gtk_spin_button_new( m_adjust, 0, 0 ); |
6380910c | 110 | |
83624f79 | 111 | gtk_spin_button_set_wrap( GTK_SPIN_BUTTON(m_widget), (m_windowStyle & wxSP_WRAP) ); |
6380910c VZ |
112 | |
113 | gtk_signal_connect( GTK_OBJECT (m_adjust), | |
83624f79 | 114 | "value_changed", |
6380910c VZ |
115 | (GtkSignalFunc) gtk_spinbutt_callback, |
116 | (gpointer) this ); | |
117 | ||
f03fc89f | 118 | m_parent->DoAddChild( this ); |
6380910c | 119 | |
83624f79 | 120 | PostCreation(); |
6380910c | 121 | |
83624f79 | 122 | SetBackgroundColour( parent->GetBackgroundColour() ); |
8e189077 | 123 | |
83624f79 | 124 | Show( TRUE ); |
6380910c | 125 | |
83624f79 | 126 | return TRUE; |
8e189077 RR |
127 | } |
128 | ||
129 | wxSpinButton::~wxSpinButton() | |
130 | { | |
131 | } | |
132 | ||
133 | int wxSpinButton::GetMin() const | |
134 | { | |
9f15c5fe | 135 | wxCHECK_MSG( (m_widget != NULL), 0, _T("invalid spin button") ); |
6380910c | 136 | |
66d78146 | 137 | return (int)ceil(m_adjust->lower); |
8e189077 RR |
138 | } |
139 | ||
140 | int wxSpinButton::GetMax() const | |
141 | { | |
9f15c5fe | 142 | wxCHECK_MSG( (m_widget != NULL), 0, _T("invalid spin button") ); |
6380910c | 143 | |
66d78146 | 144 | return (int)ceil(m_adjust->upper); |
8e189077 RR |
145 | } |
146 | ||
147 | int wxSpinButton::GetValue() const | |
148 | { | |
9f15c5fe | 149 | wxCHECK_MSG( (m_widget != NULL), 0, _T("invalid spin button") ); |
6380910c | 150 | |
66d78146 | 151 | return (int)ceil(m_adjust->value); |
8e189077 RR |
152 | } |
153 | ||
154 | void wxSpinButton::SetValue( int value ) | |
155 | { | |
9f15c5fe | 156 | wxCHECK_RET( (m_widget != NULL), _T("invalid spin button") ); |
6380910c | 157 | |
83624f79 RR |
158 | float fpos = (float)value; |
159 | m_oldPos = fpos; | |
6380910c VZ |
160 | if (fabs(fpos-m_adjust->value) < sensitivity) return; |
161 | ||
83624f79 | 162 | m_adjust->value = fpos; |
6380910c | 163 | |
83624f79 | 164 | gtk_signal_emit_by_name( GTK_OBJECT(m_adjust), "value_changed" ); |
8e189077 RR |
165 | } |
166 | ||
167 | void wxSpinButton::SetRange(int minVal, int maxVal) | |
168 | { | |
9f15c5fe | 169 | wxCHECK_RET( (m_widget != NULL), _T("invalid spin button") ); |
6380910c | 170 | |
83624f79 RR |
171 | float fmin = (float)minVal; |
172 | float fmax = (float)maxVal; | |
6380910c VZ |
173 | |
174 | if ((fabs(fmin-m_adjust->lower) < sensitivity) && | |
175 | (fabs(fmax-m_adjust->upper) < sensitivity)) | |
83624f79 RR |
176 | { |
177 | return; | |
178 | } | |
6380910c | 179 | |
83624f79 RR |
180 | m_adjust->lower = fmin; |
181 | m_adjust->upper = fmax; | |
8e189077 | 182 | |
83624f79 | 183 | gtk_signal_emit_by_name( GTK_OBJECT(m_adjust), "changed" ); |
8e189077 RR |
184 | } |
185 | ||
186 | void wxSpinButton::OnSize( wxSizeEvent &WXUNUSED(event) ) | |
187 | { | |
9f15c5fe | 188 | wxCHECK_RET( (m_widget != NULL), _T("invalid spin button") ); |
6380910c | 189 | |
19da4326 | 190 | m_width = 15; |
83624f79 | 191 | gtk_widget_set_usize( m_widget, m_width, m_height ); |
8e189077 RR |
192 | } |
193 | ||
194 | bool wxSpinButton::IsOwnGtkWindow( GdkWindow *window ) | |
195 | { | |
83624f79 | 196 | return GTK_SPIN_BUTTON(m_widget)->panel == window; |
8e189077 RR |
197 | } |
198 | ||
199 | void wxSpinButton::ApplyWidgetStyle() | |
200 | { | |
83624f79 RR |
201 | SetWidgetStyle(); |
202 | gtk_widget_set_style( m_widget, m_widgetStyle ); | |
8e189077 RR |
203 | } |
204 | ||
31528cd3 | 205 | #endif |