Implemented flat toolbars
[wxWidgets.git] / src / gtk / slider.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: slider.cpp
3 // Purpose:
4 // Author: Robert Roebling
5 // Id: $Id$
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10 #ifdef __GNUG__
11 #pragma implementation "slider.h"
12 #endif
13
14 #include "wx/slider.h"
15 #include "wx/utils.h"
16 #include <math.h>
17
18 #include "gdk/gdk.h"
19 #include "gtk/gtk.h"
20
21 //-----------------------------------------------------------------------------
22 // idle system
23 //-----------------------------------------------------------------------------
24
25 extern void wxapp_install_idle_handler();
26 extern bool g_isIdle;
27
28 //-----------------------------------------------------------------------------
29 // data
30 //-----------------------------------------------------------------------------
31
32 extern bool g_blockEventsOnDrag;
33
34 //-----------------------------------------------------------------------------
35 // "value_changed"
36 //-----------------------------------------------------------------------------
37
38 static void gtk_slider_callback( GtkWidget *WXUNUSED(widget), wxSlider *win )
39 {
40 if (g_isIdle) wxapp_install_idle_handler();
41
42 if (!win->HasVMT()) return;
43 if (g_blockEventsOnDrag) return;
44
45 float diff = win->m_adjust->value - win->m_oldPos;
46 if (fabs(diff) < 0.2) return;
47 win->m_oldPos = win->m_adjust->value;
48
49 wxEventType command = wxEVT_NULL;
50
51 float line_step = win->m_adjust->step_increment;
52 float page_step = win->m_adjust->page_increment;
53
54 if (fabs(win->m_adjust->value-win->m_adjust->lower) < 0.2) command = wxEVT_SCROLL_BOTTOM;
55 else if (fabs(win->m_adjust->value-win->m_adjust->upper) < 0.2) command = wxEVT_SCROLL_TOP;
56 else if (fabs(diff-line_step) < 0.2) command = wxEVT_SCROLL_LINEDOWN;
57 else if (fabs(diff+line_step) < 0.2) command = wxEVT_SCROLL_LINEUP;
58 else if (fabs(diff-page_step) < 0.2) command = wxEVT_SCROLL_PAGEDOWN;
59 else if (fabs(diff+page_step) < 0.2) command = wxEVT_SCROLL_PAGEUP;
60 else command = wxEVT_SCROLL_THUMBTRACK;
61
62 int value = (int)ceil(win->m_adjust->value);
63
64 int orient = wxHORIZONTAL;
65 if (win->GetWindowStyleFlag() & wxSB_VERTICAL == wxSB_VERTICAL) orient = wxVERTICAL;
66
67 wxScrollEvent event( command, win->GetId(), value, orient );
68 event.SetEventObject( win );
69 win->GetEventHandler()->ProcessEvent( event );
70
71 wxCommandEvent cevent( wxEVT_COMMAND_SLIDER_UPDATED, win->GetId() );
72 cevent.SetEventObject( win );
73 win->GetEventHandler()->ProcessEvent( cevent );
74 }
75
76 //-----------------------------------------------------------------------------
77 // wxSlider
78 //-----------------------------------------------------------------------------
79
80 IMPLEMENT_DYNAMIC_CLASS(wxSlider,wxControl)
81
82 wxSlider::wxSlider(void)
83 {
84 }
85
86 wxSlider::~wxSlider(void)
87 {
88 }
89
90 bool wxSlider::Create(wxWindow *parent, wxWindowID id,
91 int value, int minValue, int maxValue,
92 const wxPoint& pos, const wxSize& size,
93 long style, const wxValidator& validator, const wxString& name )
94 {
95 m_acceptsFocus = TRUE;
96 m_needParent = TRUE;
97
98 PreCreation( parent, id, pos, size, style, name );
99
100 SetValidator( validator );
101
102 m_oldPos = 0.0;
103
104 if (style & wxSL_VERTICAL)
105 m_widget = gtk_vscale_new( (GtkAdjustment *) NULL );
106 else
107 m_widget = gtk_hscale_new( (GtkAdjustment *) NULL );
108
109 if (style & wxSL_LABELS)
110 {
111 gtk_scale_set_draw_value( GTK_SCALE( m_widget ), TRUE );
112
113 /* labels need more space and too small window will
114 cause junk to appear on the dialog */
115 if (style & wxSL_VERTICAL)
116 {
117 wxSize sz( size );
118 if (sz.x < 35)
119 {
120 sz.x = 35;
121 SetSize( sz );
122 }
123 }
124 else
125 {
126 wxSize sz( size );
127 if (sz.y < 35)
128 {
129 sz.y = 35;
130 SetSize( sz );
131 }
132 }
133 }
134 else
135 gtk_scale_set_draw_value( GTK_SCALE( m_widget ), FALSE );
136
137 m_adjust = gtk_range_get_adjustment( GTK_RANGE(m_widget) );
138
139 gtk_signal_connect( GTK_OBJECT(m_adjust),
140 "value_changed",
141 (GtkSignalFunc) gtk_slider_callback,
142 (gpointer) this );
143
144 SetRange( minValue, maxValue );
145 SetValue( value );
146
147 m_parent->AddChild( this );
148
149 (m_parent->m_insertCallback)( m_parent, this );
150
151 PostCreation();
152
153 SetBackgroundColour( parent->GetBackgroundColour() );
154
155 Show( TRUE );
156
157 return TRUE;
158 }
159
160 int wxSlider::GetValue(void) const
161 {
162 return (int)(m_adjust->value+0.5);
163 }
164
165 void wxSlider::SetValue( int value )
166 {
167 float fpos = (float)value;
168 m_oldPos = fpos;
169 if (fabs(fpos-m_adjust->value) < 0.2) return;
170
171 m_adjust->value = fpos;
172
173 gtk_signal_emit_by_name( GTK_OBJECT(m_adjust), "value_changed" );
174 }
175
176 void wxSlider::SetRange( int minValue, int maxValue )
177 {
178 float fmin = (float)minValue;
179 float fmax = (float)maxValue;
180
181 if ((fabs(fmin-m_adjust->lower) < 0.2) &&
182 (fabs(fmax-m_adjust->upper) < 0.2))
183 {
184 return;
185 }
186
187 m_adjust->lower = fmin;
188 m_adjust->upper = fmax;
189
190 gtk_signal_emit_by_name( GTK_OBJECT(m_adjust), "changed" );
191 }
192
193 int wxSlider::GetMin(void) const
194 {
195 return (int)ceil(m_adjust->lower);
196 }
197
198 int wxSlider::GetMax(void) const
199 {
200 return (int)ceil(m_adjust->upper);
201 }
202
203 void wxSlider::SetPageSize( int pageSize )
204 {
205 float fpage = (float)pageSize;
206
207 if (fabs(fpage-m_adjust->page_increment) < 0.2) return;
208
209 m_adjust->page_increment = fpage;
210
211 gtk_signal_emit_by_name( GTK_OBJECT(m_adjust), "changed" );
212 }
213
214 int wxSlider::GetPageSize(void) const
215 {
216 return (int)ceil(m_adjust->page_increment);
217 }
218
219 void wxSlider::SetThumbLength( int len )
220 {
221 float flen = (float)len;
222
223 if (fabs(flen-m_adjust->page_size) < 0.2) return;
224
225 m_adjust->page_size = flen;
226
227 gtk_signal_emit_by_name( GTK_OBJECT(m_adjust), "changed" );
228 }
229
230 int wxSlider::GetThumbLength(void) const
231 {
232 return (int)ceil(m_adjust->page_size);
233 }
234
235 void wxSlider::SetLineSize( int WXUNUSED(lineSize) )
236 {
237 }
238
239 int wxSlider::GetLineSize(void) const
240 {
241 return 0;
242 }
243
244 void wxSlider::SetTick( int WXUNUSED(tickPos) )
245 {
246 }
247
248 void wxSlider::SetTickFreq( int WXUNUSED(n), int WXUNUSED(pos) )
249 {
250 }
251
252 int wxSlider::GetTickFreq(void) const
253 {
254 return 0;
255 }
256
257 void wxSlider::ClearTicks(void)
258 {
259 }
260
261 void wxSlider::SetSelection( int WXUNUSED(minPos), int WXUNUSED(maxPos) )
262 {
263 }
264
265 int wxSlider::GetSelEnd(void) const
266 {
267 return 0;
268 }
269
270 int wxSlider::GetSelStart(void) const
271 {
272 return 0;
273 }
274
275 void wxSlider::ClearSel(void)
276 {
277 }
278
279 bool wxSlider::IsOwnGtkWindow( GdkWindow *window )
280 {
281 GtkRange *range = GTK_RANGE(m_widget);
282 return ( (window == GTK_WIDGET(range)->window) ||
283 (window == range->trough) ||
284 (window == range->slider) ||
285 (window == range->step_forw) ||
286 (window == range->step_back) );
287 }
288
289 void wxSlider::ApplyWidgetStyle()
290 {
291 SetWidgetStyle();
292 gtk_widget_set_style( m_widget, m_widgetStyle );
293 }