]>
Commit | Line | Data |
---|---|---|
8e189077 | 1 | ///////////////////////////////////////////////////////////////////////////// |
de6185e2 | 2 | // Name: src/gtk/spinbutt.cpp |
8e189077 RR |
3 | // Purpose: wxSpinButton |
4 | // Author: Robert | |
5 | // Modified by: | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) Robert Roebling | |
65571936 | 8 | // Licence: wxWindows licence |
8e189077 RR |
9 | ///////////////////////////////////////////////////////////////////////////// |
10 | ||
14f355c2 VS |
11 | // For compilers that support precompilation, includes "wx.h". |
12 | #include "wx/wxprec.h" | |
13 | ||
de6185e2 WS |
14 | #if wxUSE_SPINBTN |
15 | ||
8e189077 | 16 | #include "wx/spinbutt.h" |
dcf924a3 | 17 | |
de6185e2 WS |
18 | #ifndef WX_PRECOMP |
19 | #include "wx/utils.h" | |
20 | #endif | |
dcf924a3 | 21 | |
a1abca32 | 22 | #include <gtk/gtk.h> |
83624f79 | 23 | |
8e189077 RR |
24 | //----------------------------------------------------------------------------- |
25 | // data | |
26 | //----------------------------------------------------------------------------- | |
27 | ||
28 | extern bool g_blockEventsOnDrag; | |
29 | ||
30 | //----------------------------------------------------------------------------- | |
31 | // "value_changed" | |
32 | //----------------------------------------------------------------------------- | |
33 | ||
865bb325 | 34 | extern "C" { |
a01ed326 PC |
35 | static void |
36 | gtk_value_changed(GtkSpinButton* spinbutton, wxSpinButton* win) | |
6380910c | 37 | { |
a01ed326 PC |
38 | const double value = gtk_spin_button_get_value(spinbutton); |
39 | const int pos = int(value); | |
40 | const int oldPos = win->m_pos; | |
f923b293 | 41 | if (!win->m_hasVMT || g_blockEventsOnDrag || pos == oldPos) |
a01ed326 PC |
42 | { |
43 | win->m_pos = pos; | |
44 | return; | |
45 | } | |
6380910c | 46 | |
a01ed326 PC |
47 | wxSpinEvent event(pos > oldPos ? wxEVT_SCROLL_LINEUP : wxEVT_SCROLL_LINEDOWN, win->GetId()); |
48 | event.SetPosition(pos); | |
49 | event.SetEventObject(win); | |
0f42a871 | 50 | |
937013e0 | 51 | if ((win->HandleWindowEvent( event )) && |
0f42a871 RR |
52 | !event.IsAllowed() ) |
53 | { | |
54 | /* program has vetoed */ | |
00dc9772 PC |
55 | // this will cause another "value_changed" signal, |
56 | // but because pos == oldPos nothing will happen | |
a01ed326 | 57 | gtk_spin_button_set_value(spinbutton, oldPos); |
0f42a871 RR |
58 | return; |
59 | } | |
88d19775 | 60 | |
a01ed326 | 61 | win->m_pos = pos; |
88d19775 | 62 | |
e65cc56a | 63 | /* always send a thumbtrack event */ |
a01ed326 PC |
64 | wxSpinEvent event2(wxEVT_SCROLL_THUMBTRACK, win->GetId()); |
65 | event2.SetPosition(pos); | |
66 | event2.SetEventObject(win); | |
937013e0 | 67 | win->HandleWindowEvent(event2); |
8e189077 | 68 | } |
865bb325 | 69 | } |
8e189077 RR |
70 | |
71 | //----------------------------------------------------------------------------- | |
72 | // wxSpinButton | |
73 | //----------------------------------------------------------------------------- | |
74 | ||
75 | IMPLEMENT_DYNAMIC_CLASS(wxSpinButton,wxControl) | |
2fa7c206 | 76 | IMPLEMENT_DYNAMIC_CLASS(wxSpinEvent, wxNotifyEvent) |
8e189077 RR |
77 | |
78 | BEGIN_EVENT_TABLE(wxSpinButton, wxControl) | |
79 | EVT_SIZE(wxSpinButton::OnSize) | |
80 | END_EVENT_TABLE() | |
81 | ||
a01ed326 PC |
82 | wxSpinButton::wxSpinButton() |
83 | { | |
84 | m_pos = 0; | |
85 | } | |
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 | { |
9d9b7755 VZ |
94 | wxSize new_size = size, |
95 | sizeBest = DoGetBestSize(); | |
96 | new_size.x = sizeBest.x; // override width always | |
6380910c | 97 | if (new_size.y == -1) |
9d9b7755 | 98 | new_size.y = sizeBest.y; |
6380910c | 99 | |
2259e007 | 100 | if (!PreCreation( parent, pos, new_size ) || |
4dcaf11a RR |
101 | !CreateBase( parent, id, pos, new_size, style, wxDefaultValidator, name )) |
102 | { | |
a01ed326 | 103 | wxFAIL_MSG( wxT("wxSpinButton creation failed") ); |
de6185e2 | 104 | return false; |
4dcaf11a | 105 | } |
8e189077 | 106 | |
a01ed326 | 107 | m_pos = 0; |
6380910c | 108 | |
a01ed326 | 109 | m_widget = gtk_spin_button_new_with_range(0, 100, 1); |
9ff9d30c | 110 | g_object_ref(m_widget); |
6380910c | 111 | |
b02da6b1 VZ |
112 | gtk_spin_button_set_wrap( GTK_SPIN_BUTTON(m_widget), |
113 | (int)(m_windowStyle & wxSP_WRAP) ); | |
6380910c | 114 | |
a01ed326 PC |
115 | g_signal_connect_after( |
116 | m_widget, "value_changed", G_CALLBACK(gtk_value_changed), this); | |
6380910c | 117 | |
f03fc89f | 118 | m_parent->DoAddChild( this ); |
6380910c | 119 | |
abdeb9e7 | 120 | PostCreation(new_size); |
6380910c | 121 | |
de6185e2 | 122 | return true; |
8e189077 RR |
123 | } |
124 | ||
8e189077 RR |
125 | int wxSpinButton::GetMin() const |
126 | { | |
223d09f6 | 127 | wxCHECK_MSG( (m_widget != NULL), 0, wxT("invalid spin button") ); |
6380910c | 128 | |
a01ed326 PC |
129 | double min; |
130 | gtk_spin_button_get_range((GtkSpinButton*)m_widget, &min, NULL); | |
131 | return int(min); | |
8e189077 RR |
132 | } |
133 | ||
134 | int wxSpinButton::GetMax() const | |
135 | { | |
223d09f6 | 136 | wxCHECK_MSG( (m_widget != NULL), 0, wxT("invalid spin button") ); |
6380910c | 137 | |
a01ed326 PC |
138 | double max; |
139 | gtk_spin_button_get_range((GtkSpinButton*)m_widget, NULL, &max); | |
140 | return int(max); | |
8e189077 RR |
141 | } |
142 | ||
143 | int wxSpinButton::GetValue() const | |
144 | { | |
223d09f6 | 145 | wxCHECK_MSG( (m_widget != NULL), 0, wxT("invalid spin button") ); |
6380910c | 146 | |
a01ed326 | 147 | return m_pos; |
8e189077 RR |
148 | } |
149 | ||
150 | void wxSpinButton::SetValue( int value ) | |
151 | { | |
223d09f6 | 152 | wxCHECK_RET( (m_widget != NULL), wxT("invalid spin button") ); |
6380910c | 153 | |
a596eeb9 | 154 | GtkDisableEvents(); |
a01ed326 | 155 | gtk_spin_button_set_value((GtkSpinButton*)m_widget, value); |
f923b293 | 156 | m_pos = int(gtk_spin_button_get_value((GtkSpinButton*)m_widget)); |
a596eeb9 | 157 | GtkEnableEvents(); |
8e189077 RR |
158 | } |
159 | ||
160 | void wxSpinButton::SetRange(int minVal, int maxVal) | |
161 | { | |
223d09f6 | 162 | wxCHECK_RET( (m_widget != NULL), wxT("invalid spin button") ); |
6380910c | 163 | |
a596eeb9 | 164 | GtkDisableEvents(); |
a01ed326 | 165 | gtk_spin_button_set_range((GtkSpinButton*)m_widget, minVal, maxVal); |
00dc9772 | 166 | m_pos = int(gtk_spin_button_get_value((GtkSpinButton*)m_widget)); |
a596eeb9 | 167 | GtkEnableEvents(); |
8e189077 RR |
168 | } |
169 | ||
170 | void wxSpinButton::OnSize( wxSizeEvent &WXUNUSED(event) ) | |
171 | { | |
223d09f6 | 172 | wxCHECK_RET( (m_widget != NULL), wxT("invalid spin button") ); |
6380910c | 173 | |
9d9b7755 | 174 | m_width = DoGetBestSize().x; |
370dc79c | 175 | gtk_widget_set_size_request( m_widget, m_width, m_height ); |
8e189077 RR |
176 | } |
177 | ||
ad60f9e7 JS |
178 | bool wxSpinButton::Enable( bool enable ) |
179 | { | |
180 | bool isEnabled = IsEnabled(); | |
181 | ||
182 | if ( !wxControl::Enable( enable ) ) | |
183 | return false; | |
184 | ||
185 | // Work around lack of visual update when enabling | |
186 | if (!isEnabled && enable) | |
187 | GTKFixSensitivity(false /* fix even if not under mouse */); | |
188 | ||
189 | return true; | |
190 | } | |
191 | ||
a596eeb9 RR |
192 | void wxSpinButton::GtkDisableEvents() const |
193 | { | |
194 | g_signal_handlers_block_by_func(m_widget, | |
195 | (gpointer)gtk_value_changed, (void*) this); | |
196 | } | |
197 | ||
198 | void wxSpinButton::GtkEnableEvents() const | |
199 | { | |
200 | g_signal_handlers_unblock_by_func(m_widget, | |
201 | (gpointer)gtk_value_changed, (void*) this); | |
202 | } | |
203 | ||
ef5c70f9 | 204 | GdkWindow *wxSpinButton::GTKGetWindow(wxArrayGdkWindows& WXUNUSED(windows)) const |
8e189077 | 205 | { |
ef5c70f9 | 206 | return GTK_SPIN_BUTTON(m_widget)->panel; |
8e189077 RR |
207 | } |
208 | ||
9d9b7755 VZ |
209 | wxSize wxSpinButton::DoGetBestSize() const |
210 | { | |
9f884528 RD |
211 | wxSize best(15, 26); // FIXME |
212 | CacheBestSize(best); | |
213 | return best; | |
9d9b7755 VZ |
214 | } |
215 | ||
9d522606 RD |
216 | // static |
217 | wxVisualAttributes | |
218 | wxSpinButton::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant)) | |
219 | { | |
220 | // TODO: overload to accept functions like gtk_spin_button_new? | |
221 | // Until then use a similar type | |
222 | return GetDefaultAttributesFromGTKWidget(gtk_button_new); | |
223 | } | |
224 | ||
31528cd3 | 225 | #endif |