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