]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
76b49cf4 | 2 | // Name: src/gtk/tbargtk.cpp |
c801d85f KB |
3 | // Purpose: GTK toolbar |
4 | // Author: Robert Roebling | |
8a0681f9 | 5 | // Modified: 13.12.99 by VZ to derive from wxToolBarBase |
32e9da8b | 6 | // RCS-ID: $Id$ |
c801d85f | 7 | // Copyright: (c) Robert Roebling |
65571936 | 8 | // Licence: wxWindows licence |
c801d85f KB |
9 | ///////////////////////////////////////////////////////////////////////////// |
10 | ||
8a0681f9 VZ |
11 | // ============================================================================ |
12 | // declarations | |
13 | // ============================================================================ | |
14 | ||
15 | // ---------------------------------------------------------------------------- | |
16 | // headers | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
14f355c2 VS |
19 | // For compilers that support precompilation, includes "wx.h". |
20 | #include "wx/wxprec.h" | |
21 | ||
8a0681f9 | 22 | #if wxUSE_TOOLBAR_NATIVE |
dcf924a3 | 23 | |
4e3e485b WS |
24 | #include "wx/toolbar.h" |
25 | ||
76b49cf4 WS |
26 | #ifndef WX_PRECOMP |
27 | #include "wx/frame.h" | |
28 | #endif | |
c801d85f | 29 | |
1efb5db8 MR |
30 | // FIXME: Use GtkImage instead of GtkPixmap. Use the new toolbar API for when gtk runtime is new enough? |
31 | // Beware that the new and old toolbar API may not be mixed in usage. | |
32 | #include <gtk/gtkversion.h> | |
33 | #ifdef GTK_DISABLE_DEPRECATED | |
34 | #undef GTK_DISABLE_DEPRECATED | |
35 | #endif | |
36 | ||
9e691f46 | 37 | #include "wx/gtk/private.h" |
83624f79 | 38 | |
8a0681f9 VZ |
39 | // ---------------------------------------------------------------------------- |
40 | // globals | |
41 | // ---------------------------------------------------------------------------- | |
acfd422a | 42 | |
314055fa | 43 | // data |
9b7e522a RR |
44 | extern bool g_blockEventsOnDrag; |
45 | extern wxCursor g_globalCursor; | |
314055fa | 46 | |
e76c0b5f VZ |
47 | // ---------------------------------------------------------------------------- |
48 | // private functions | |
49 | // ---------------------------------------------------------------------------- | |
50 | ||
77ffb593 | 51 | // translate wxWidgets toolbar style flags to GTK orientation and style |
e76c0b5f VZ |
52 | static void GetGtkStyle(long style, |
53 | GtkOrientation *orient, GtkToolbarStyle *gtkStyle) | |
54 | { | |
55 | *orient = style & wxTB_VERTICAL ? GTK_ORIENTATION_VERTICAL | |
56 | : GTK_ORIENTATION_HORIZONTAL; | |
57 | ||
58 | ||
59 | if ( style & wxTB_TEXT ) | |
60 | { | |
99e8cb50 VZ |
61 | *gtkStyle = style & wxTB_NOICONS |
62 | ? GTK_TOOLBAR_TEXT | |
63 | : ( | |
99e8cb50 | 64 | style & wxTB_HORZ_LAYOUT ? GTK_TOOLBAR_BOTH_HORIZ : |
99e8cb50 | 65 | GTK_TOOLBAR_BOTH); |
e76c0b5f VZ |
66 | } |
67 | else // no text, hence we must have the icons or what would we show? | |
68 | { | |
69 | *gtkStyle = GTK_TOOLBAR_ICONS; | |
70 | } | |
71 | } | |
72 | ||
8a0681f9 VZ |
73 | // ---------------------------------------------------------------------------- |
74 | // wxToolBarTool | |
75 | // ---------------------------------------------------------------------------- | |
76 | ||
77 | class wxToolBarTool : public wxToolBarToolBase | |
78 | { | |
79 | public: | |
80 | wxToolBarTool(wxToolBar *tbar, | |
81 | int id, | |
e76c0b5f | 82 | const wxString& label, |
8a0681f9 VZ |
83 | const wxBitmap& bitmap1, |
84 | const wxBitmap& bitmap2, | |
e76c0b5f | 85 | wxItemKind kind, |
8a0681f9 VZ |
86 | wxObject *clientData, |
87 | const wxString& shortHelpString, | |
88 | const wxString& longHelpString) | |
e76c0b5f | 89 | : wxToolBarToolBase(tbar, id, label, bitmap1, bitmap2, kind, |
8a0681f9 VZ |
90 | clientData, shortHelpString, longHelpString) |
91 | { | |
92 | Init(); | |
93 | } | |
94 | ||
95 | wxToolBarTool(wxToolBar *tbar, wxControl *control) | |
96 | : wxToolBarToolBase(tbar, control) | |
97 | { | |
98 | Init(); | |
99 | } | |
100 | ||
38762f09 VZ |
101 | // is this a radio button? |
102 | // | |
103 | // unlike GetKind(), can be called for any kind of tools, not just buttons | |
104 | bool IsRadio() const { return IsButton() && GetKind() == wxITEM_RADIO; } | |
105 | ||
e76c0b5f VZ |
106 | // this is only called for the normal buttons, i.e. not separators nor |
107 | // controls | |
108 | GtkToolbarChildType GetGtkChildType() const | |
109 | { | |
110 | switch ( GetKind() ) | |
111 | { | |
112 | case wxITEM_CHECK: | |
113 | return GTK_TOOLBAR_CHILD_TOGGLEBUTTON; | |
114 | ||
115 | case wxITEM_RADIO: | |
116 | return GTK_TOOLBAR_CHILD_RADIOBUTTON; | |
117 | ||
118 | default: | |
119 | wxFAIL_MSG( _T("unknown toolbar child type") ); | |
120 | // fall through | |
121 | ||
122 | case wxITEM_NORMAL: | |
123 | return GTK_TOOLBAR_CHILD_BUTTON; | |
124 | } | |
125 | } | |
126 | ||
ab86c659 VS |
127 | void SetPixmap(const wxBitmap& bitmap) |
128 | { | |
129 | if (bitmap.Ok()) | |
130 | { | |
131 | GdkBitmap *mask = bitmap.GetMask() ? bitmap.GetMask()->GetBitmap() | |
132 | : (GdkBitmap *)NULL; | |
ab86c659 | 133 | if (bitmap.HasPixbuf()) |
f05e0979 | 134 | gtk_image_set_from_pixbuf( GTK_IMAGE(m_pixmap), bitmap.GetPixbuf() ); |
ab86c659 | 135 | else |
f05e0979 | 136 | gtk_pixmap_set( GTK_PIXMAP(m_pixmap), bitmap.GetPixmap(), mask ); |
ab86c659 VS |
137 | } |
138 | } | |
139 | ||
8a0681f9 VZ |
140 | GtkWidget *m_item; |
141 | GtkWidget *m_pixmap; | |
142 | ||
143 | protected: | |
144 | void Init(); | |
145 | }; | |
146 | ||
147 | // ---------------------------------------------------------------------------- | |
148 | // wxWin macros | |
149 | // ---------------------------------------------------------------------------- | |
150 | ||
2eb10e2a | 151 | IMPLEMENT_DYNAMIC_CLASS(wxToolBar, wxControl) |
8a0681f9 VZ |
152 | |
153 | // ============================================================================ | |
154 | // implementation | |
155 | // ============================================================================ | |
156 | ||
c801d85f | 157 | //----------------------------------------------------------------------------- |
2f2aa628 | 158 | // "clicked" (internal from gtk_toolbar) |
c801d85f KB |
159 | //----------------------------------------------------------------------------- |
160 | ||
865bb325 | 161 | extern "C" { |
8a0681f9 VZ |
162 | static void gtk_toolbar_callback( GtkWidget *WXUNUSED(widget), |
163 | wxToolBarTool *tool ) | |
c801d85f | 164 | { |
248bcf0a | 165 | if (g_isIdle) |
59fe1666 RR |
166 | wxapp_install_idle_handler(); |
167 | ||
8a0681f9 | 168 | wxToolBar *tbar = (wxToolBar *)tool->GetToolBar(); |
248bcf0a | 169 | |
9864c56d | 170 | if (tbar->m_blockEvent) return; |
acfd422a | 171 | |
1144d24d | 172 | if (g_blockEventsOnDrag) return; |
8a0681f9 | 173 | if (!tool->IsEnabled()) return; |
a3622daa | 174 | |
8a0681f9 | 175 | if (tool->CanBeToggled()) |
248bcf0a | 176 | { |
8a0681f9 VZ |
177 | tool->Toggle(); |
178 | ||
ab86c659 | 179 | tool->SetPixmap(tool->GetBitmap()); |
38762f09 VZ |
180 | |
181 | if ( tool->IsRadio() && !tool->IsToggled() ) | |
182 | { | |
183 | // radio button went up, don't report this as a wxWin event | |
184 | return; | |
185 | } | |
85eb36c2 | 186 | } |
a3622daa | 187 | |
6bb7cee4 VZ |
188 | if( !tbar->OnLeftClick( tool->GetId(), tool->IsToggled() ) && tool->CanBeToggled() ) |
189 | { | |
190 | // revert back | |
191 | tool->Toggle(); | |
192 | ||
ab86c659 | 193 | tool->SetPixmap(tool->GetBitmap()); |
6bb7cee4 | 194 | } |
fc008f25 | 195 | } |
865bb325 | 196 | } |
c801d85f | 197 | |
2f2aa628 | 198 | //----------------------------------------------------------------------------- |
a8945eef | 199 | // "enter_notify_event" / "leave_notify_event" |
2f2aa628 RR |
200 | //----------------------------------------------------------------------------- |
201 | ||
865bb325 | 202 | extern "C" { |
248bcf0a | 203 | static gint gtk_toolbar_tool_callback( GtkWidget *WXUNUSED(widget), |
a8945eef MB |
204 | GdkEventCrossing *gdk_event, |
205 | wxToolBarTool *tool ) | |
314055fa | 206 | { |
14819684 | 207 | // don't need to install idle handler, its done from "event" signal |
acfd422a | 208 | |
1144d24d | 209 | if (g_blockEventsOnDrag) return TRUE; |
248bcf0a | 210 | |
8a0681f9 | 211 | wxToolBar *tb = (wxToolBar *)tool->GetToolBar(); |
248bcf0a | 212 | |
47c93b63 | 213 | // emit the event |
a8945eef MB |
214 | if( gdk_event->type == GDK_ENTER_NOTIFY ) |
215 | tb->OnMouseEnter( tool->GetId() ); | |
216 | else | |
217 | tb->OnMouseEnter( -1 ); | |
248bcf0a | 218 | |
1144d24d | 219 | return FALSE; |
314055fa | 220 | } |
865bb325 | 221 | } |
314055fa | 222 | |
bf9e3e73 RR |
223 | //----------------------------------------------------------------------------- |
224 | // InsertChild callback for wxToolBar | |
225 | //----------------------------------------------------------------------------- | |
226 | ||
8a0681f9 VZ |
227 | static void wxInsertChildInToolBar( wxToolBar* WXUNUSED(parent), |
228 | wxWindow* WXUNUSED(child) ) | |
bf9e3e73 | 229 | { |
47c93b63 | 230 | // we don't do anything here |
bf9e3e73 RR |
231 | } |
232 | ||
8a0681f9 VZ |
233 | // ---------------------------------------------------------------------------- |
234 | // wxToolBarTool | |
235 | // ---------------------------------------------------------------------------- | |
c801d85f | 236 | |
8a0681f9 VZ |
237 | void wxToolBarTool::Init() |
238 | { | |
239 | m_item = | |
240 | m_pixmap = (GtkWidget *)NULL; | |
241 | } | |
c801d85f | 242 | |
8a0681f9 | 243 | wxToolBarToolBase *wxToolBar::CreateTool(int id, |
e76c0b5f | 244 | const wxString& text, |
8a0681f9 VZ |
245 | const wxBitmap& bitmap1, |
246 | const wxBitmap& bitmap2, | |
e76c0b5f | 247 | wxItemKind kind, |
8a0681f9 VZ |
248 | wxObject *clientData, |
249 | const wxString& shortHelpString, | |
250 | const wxString& longHelpString) | |
251 | { | |
e76c0b5f | 252 | return new wxToolBarTool(this, id, text, bitmap1, bitmap2, kind, |
8a0681f9 VZ |
253 | clientData, shortHelpString, longHelpString); |
254 | } | |
b1da76e1 | 255 | |
8a0681f9 | 256 | wxToolBarToolBase *wxToolBar::CreateTool(wxControl *control) |
c801d85f | 257 | { |
8a0681f9 | 258 | return new wxToolBarTool(this, control); |
fc008f25 | 259 | } |
c801d85f | 260 | |
8a0681f9 VZ |
261 | //----------------------------------------------------------------------------- |
262 | // wxToolBar construction | |
263 | //----------------------------------------------------------------------------- | |
264 | ||
265 | void wxToolBar::Init() | |
c801d85f | 266 | { |
8a0681f9 | 267 | m_toolbar = (GtkToolbar *)NULL; |
91af0895 | 268 | m_blockEvent = false; |
d2c0a964 RD |
269 | m_defaultWidth = 32; |
270 | m_defaultHeight = 32; | |
fc008f25 | 271 | } |
c801d85f | 272 | |
a3622daa | 273 | wxToolBar::~wxToolBar() |
c801d85f | 274 | { |
fc008f25 | 275 | } |
c801d85f | 276 | |
8a0681f9 VZ |
277 | bool wxToolBar::Create( wxWindow *parent, |
278 | wxWindowID id, | |
279 | const wxPoint& pos, | |
280 | const wxSize& size, | |
281 | long style, | |
282 | const wxString& name ) | |
c801d85f | 283 | { |
91af0895 | 284 | m_needParent = true; |
bf9e3e73 | 285 | m_insertCallback = (wxInsertChildFunction)wxInsertChildInToolBar; |
a3622daa | 286 | |
8a0681f9 VZ |
287 | if ( !PreCreation( parent, pos, size ) || |
288 | !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name )) | |
4dcaf11a | 289 | { |
223d09f6 | 290 | wxFAIL_MSG( wxT("wxToolBar creation failed") ); |
c801d85f | 291 | |
91af0895 | 292 | return false; |
8a0681f9 | 293 | } |
a3622daa | 294 | |
9e691f46 | 295 | m_toolbar = GTK_TOOLBAR( gtk_toolbar_new() ); |
e76c0b5f | 296 | GtkSetStyle(); |
99e8cb50 | 297 | |
2b5f62a0 VZ |
298 | // Doesn't work this way. |
299 | // GtkToolbarSpaceStyle space_style = GTK_TOOLBAR_SPACE_EMPTY; | |
300 | // gtk_widget_style_set (GTK_WIDGET (m_toolbar), "space_style", &space_style, NULL); | |
a3622daa | 301 | |
8a0681f9 | 302 | SetToolSeparation(7); |
3502e687 RR |
303 | |
304 | if (style & wxTB_DOCKABLE) | |
305 | { | |
306 | m_widget = gtk_handle_box_new(); | |
f03fc89f VZ |
307 | gtk_container_add( GTK_CONTAINER(m_widget), GTK_WIDGET(m_toolbar) ); |
308 | gtk_widget_show( GTK_WIDGET(m_toolbar) ); | |
8a0681f9 | 309 | |
f03fc89f | 310 | if (style & wxTB_FLAT) |
858b5bdd | 311 | gtk_handle_box_set_shadow_type( GTK_HANDLE_BOX(m_widget), GTK_SHADOW_NONE ); |
3502e687 RR |
312 | } |
313 | else | |
248bcf0a RD |
314 | { |
315 | m_widget = gtk_event_box_new(); | |
316 | gtk_container_add( GTK_CONTAINER(m_widget), GTK_WIDGET(m_toolbar) ); | |
317 | ConnectWidget( m_widget ); | |
318 | gtk_widget_show(GTK_WIDGET(m_toolbar)); | |
3502e687 | 319 | } |
8a0681f9 | 320 | |
9e691f46 | 321 | // FIXME: there is no such function for toolbars in 2.0 |
68567a96 | 322 | #if 0 |
858b5bdd RR |
323 | if (style & wxTB_FLAT) |
324 | gtk_toolbar_set_button_relief( GTK_TOOLBAR(m_toolbar), GTK_RELIEF_NONE ); | |
9e691f46 | 325 | #endif |
be25e480 | 326 | |
f03fc89f | 327 | m_parent->DoAddChild( this ); |
8a0681f9 | 328 | |
abdeb9e7 | 329 | PostCreation(size); |
a3622daa | 330 | |
91af0895 | 331 | return true; |
fc008f25 | 332 | } |
c801d85f | 333 | |
e76c0b5f VZ |
334 | void wxToolBar::GtkSetStyle() |
335 | { | |
336 | GtkOrientation orient; | |
337 | GtkToolbarStyle style; | |
338 | GetGtkStyle(GetWindowStyle(), &orient, &style); | |
339 | ||
340 | gtk_toolbar_set_orientation(m_toolbar, orient); | |
341 | gtk_toolbar_set_style(m_toolbar, style); | |
8ad31f9d | 342 | gtk_toolbar_set_tooltips( GTK_TOOLBAR(m_toolbar), !(style & wxTB_NO_TOOLTIPS) ); |
e76c0b5f VZ |
343 | } |
344 | ||
345 | void wxToolBar::SetWindowStyleFlag( long style ) | |
346 | { | |
347 | wxToolBarBase::SetWindowStyleFlag(style); | |
8ad31f9d | 348 | |
e76c0b5f VZ |
349 | if ( m_toolbar ) |
350 | GtkSetStyle(); | |
351 | } | |
352 | ||
8a0681f9 | 353 | bool wxToolBar::DoInsertTool(size_t pos, wxToolBarToolBase *toolBase) |
c801d85f | 354 | { |
8a0681f9 | 355 | wxToolBarTool *tool = (wxToolBarTool *)toolBase; |
c801d85f | 356 | |
2b5f62a0 | 357 | size_t posGtk = pos; |
248bcf0a | 358 | |
8a0681f9 VZ |
359 | if ( tool->IsButton() ) |
360 | { | |
2b5f62a0 VZ |
361 | if ( !HasFlag(wxTB_NOICONS) ) |
362 | { | |
363 | wxBitmap bitmap = tool->GetNormalBitmap(); | |
c801d85f | 364 | |
91af0895 | 365 | wxCHECK_MSG( bitmap.Ok(), false, |
2b5f62a0 | 366 | wxT("invalid bitmap for wxToolBar icon") ); |
a3622daa | 367 | |
b85229d1 | 368 | wxCHECK_MSG( bitmap.GetDepth() != 1, false, |
2b5f62a0 | 369 | wxT("wxToolBar doesn't support GdkBitmap") ); |
03f38c58 | 370 | |
91af0895 | 371 | wxCHECK_MSG( bitmap.GetPixmap() != NULL, false, |
2b5f62a0 | 372 | wxT("wxToolBar::Add needs a wxBitmap") ); |
248bcf0a | 373 | |
2b5f62a0 | 374 | GtkWidget *tool_pixmap = (GtkWidget *)NULL; |
248bcf0a | 375 | |
ab86c659 | 376 | |
f05e0979 RR |
377 | if (bitmap.HasPixbuf()) |
378 | { | |
379 | tool_pixmap = gtk_image_new(); | |
380 | tool->m_pixmap = tool_pixmap; | |
381 | tool->SetPixmap(bitmap); | |
382 | } | |
383 | else | |
f05e0979 RR |
384 | { |
385 | GdkPixmap *pixmap = bitmap.GetPixmap(); | |
a3622daa | 386 | |
f05e0979 RR |
387 | GdkBitmap *mask = (GdkBitmap *)NULL; |
388 | if ( bitmap.GetMask() ) | |
389 | mask = bitmap.GetMask()->GetBitmap(); | |
91af0895 | 390 | |
f05e0979 RR |
391 | tool_pixmap = gtk_pixmap_new( pixmap, mask ); |
392 | gtk_pixmap_set_build_insensitive( GTK_PIXMAP(tool_pixmap), TRUE ); | |
393 | } | |
248bcf0a | 394 | |
2b5f62a0 | 395 | gtk_misc_set_alignment( GTK_MISC(tool_pixmap), 0.5, 0.5 ); |
a3622daa | 396 | |
2b5f62a0 VZ |
397 | tool->m_pixmap = tool_pixmap; |
398 | } | |
8a0681f9 | 399 | } |
c801d85f | 400 | |
8a0681f9 VZ |
401 | switch ( tool->GetStyle() ) |
402 | { | |
403 | case wxTOOL_STYLE_BUTTON: | |
38762f09 VZ |
404 | // for a radio button we need the widget which starts the radio |
405 | // group it belongs to, i.e. the first radio button immediately | |
406 | // preceding this one | |
8a0681f9 | 407 | { |
38762f09 VZ |
408 | GtkWidget *widget = NULL; |
409 | ||
410 | if ( tool->IsRadio() ) | |
411 | { | |
98fc1d65 MB |
412 | wxToolBarToolsList::compatibility_iterator node |
413 | = wxToolBarToolsList::compatibility_iterator(); | |
17a1ebd1 VZ |
414 | if ( pos ) |
415 | node = m_tools.Item(pos - 1); | |
222ed1d6 | 416 | |
38762f09 VZ |
417 | while ( node ) |
418 | { | |
17a1ebd1 VZ |
419 | wxToolBarTool *toolNext = (wxToolBarTool *)node->GetData(); |
420 | if ( !toolNext->IsRadio() ) | |
38762f09 VZ |
421 | break; |
422 | ||
17a1ebd1 | 423 | widget = toolNext->m_item; |
38762f09 VZ |
424 | |
425 | node = node->GetPrevious(); | |
426 | } | |
427 | ||
428 | if ( !widget ) | |
429 | { | |
430 | // this is the first button in the radio button group, | |
431 | // it will be toggled automatically by GTK so bring the | |
432 | // internal flag in sync | |
91af0895 | 433 | tool->Toggle(true); |
38762f09 VZ |
434 | } |
435 | } | |
436 | ||
437 | tool->m_item = gtk_toolbar_insert_element | |
438 | ( | |
439 | m_toolbar, | |
440 | tool->GetGtkChildType(), | |
441 | widget, | |
442 | tool->GetLabel().empty() | |
443 | ? NULL | |
fab591c5 | 444 | : (const char*) wxGTK_CONV( tool->GetLabel() ), |
38762f09 VZ |
445 | tool->GetShortHelp().empty() |
446 | ? NULL | |
fab591c5 | 447 | : (const char*) wxGTK_CONV( tool->GetShortHelp() ), |
38762f09 VZ |
448 | "", // tooltip_private_text (?) |
449 | tool->m_pixmap, | |
450 | (GtkSignalFunc)gtk_toolbar_callback, | |
451 | (gpointer)tool, | |
6a1359c0 | 452 | posGtk |
38762f09 VZ |
453 | ); |
454 | ||
455 | if ( !tool->m_item ) | |
456 | { | |
457 | wxFAIL_MSG( _T("gtk_toolbar_insert_element() failed") ); | |
458 | ||
91af0895 | 459 | return false; |
38762f09 | 460 | } |
99e8cb50 | 461 | |
9fa72bd2 MR |
462 | g_signal_connect (tool->m_item, "enter_notify_event", |
463 | G_CALLBACK (gtk_toolbar_tool_callback), | |
464 | tool); | |
465 | g_signal_connect (tool->m_item, "leave_notify_event", | |
466 | G_CALLBACK (gtk_toolbar_tool_callback), | |
467 | tool); | |
8a0681f9 | 468 | } |
8a0681f9 VZ |
469 | break; |
470 | ||
471 | case wxTOOL_STYLE_SEPARATOR: | |
6a1359c0 | 472 | gtk_toolbar_insert_space( m_toolbar, posGtk ); |
8a0681f9 VZ |
473 | |
474 | // skip the rest | |
91af0895 | 475 | return true; |
bf9e3e73 | 476 | |
8a0681f9 VZ |
477 | case wxTOOL_STYLE_CONTROL: |
478 | gtk_toolbar_insert_widget( | |
479 | m_toolbar, | |
480 | tool->GetControl()->m_widget, | |
481 | (const char *) NULL, | |
482 | (const char *) NULL, | |
6a1359c0 | 483 | posGtk |
8a0681f9 VZ |
484 | ); |
485 | break; | |
486 | } | |
bf9e3e73 | 487 | |
bf9e3e73 | 488 | GtkRequisition req; |
2afa14f2 OK |
489 | (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(m_widget) )->size_request ) |
490 | (m_widget, &req ); | |
00655497 | 491 | m_width = req.width + m_xMargin; |
6f67eafe | 492 | m_height = req.height + 2*m_yMargin; |
9f884528 | 493 | InvalidateBestSize(); |
bf9e3e73 | 494 | |
91af0895 | 495 | return true; |
bf9e3e73 RR |
496 | } |
497 | ||
4a64a89c | 498 | bool wxToolBar::DoDeleteTool(size_t pos, wxToolBarToolBase *toolBase) |
c801d85f | 499 | { |
8a0681f9 | 500 | wxToolBarTool *tool = (wxToolBarTool *)toolBase; |
c801d85f | 501 | |
8a0681f9 | 502 | switch ( tool->GetStyle() ) |
97d7bfb8 | 503 | { |
8a0681f9 VZ |
504 | case wxTOOL_STYLE_CONTROL: |
505 | tool->GetControl()->Destroy(); | |
506 | break; | |
97d7bfb8 | 507 | |
8a0681f9 VZ |
508 | case wxTOOL_STYLE_BUTTON: |
509 | gtk_widget_destroy( tool->m_item ); | |
510 | break; | |
97d7bfb8 | 511 | |
4a64a89c RD |
512 | case wxTOOL_STYLE_SEPARATOR: |
513 | gtk_toolbar_remove_space( m_toolbar, pos ); | |
514 | break; | |
8a0681f9 | 515 | } |
c801d85f | 516 | |
9f884528 | 517 | InvalidateBestSize(); |
91af0895 | 518 | return true; |
fc008f25 | 519 | } |
46dc76ba | 520 | |
8a0681f9 VZ |
521 | // ---------------------------------------------------------------------------- |
522 | // wxToolBar tools state | |
523 | // ---------------------------------------------------------------------------- | |
524 | ||
525 | void wxToolBar::DoEnableTool(wxToolBarToolBase *toolBase, bool enable) | |
c801d85f | 526 | { |
8a0681f9 VZ |
527 | wxToolBarTool *tool = (wxToolBarTool *)toolBase; |
528 | ||
8a0681f9 | 529 | if (tool->m_item) |
fab591c5 | 530 | { |
8a0681f9 | 531 | gtk_widget_set_sensitive( tool->m_item, enable ); |
fab591c5 | 532 | } |
fc008f25 | 533 | } |
c801d85f | 534 | |
248bcf0a | 535 | void wxToolBar::DoToggleTool( wxToolBarToolBase *toolBase, bool toggle ) |
c801d85f | 536 | { |
8a0681f9 VZ |
537 | wxToolBarTool *tool = (wxToolBarTool *)toolBase; |
538 | ||
539 | GtkWidget *item = tool->m_item; | |
540 | if ( item && GTK_IS_TOGGLE_BUTTON(item) ) | |
1144d24d | 541 | { |
ab86c659 | 542 | tool->SetPixmap(tool->GetBitmap()); |
c801d85f | 543 | |
91af0895 | 544 | m_blockEvent = true; |
8a0681f9 | 545 | |
e343da37 | 546 | gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON(item), toggle ); |
248bcf0a | 547 | |
91af0895 | 548 | m_blockEvent = false; |
1144d24d | 549 | } |
fc008f25 | 550 | } |
c801d85f | 551 | |
8a0681f9 VZ |
552 | void wxToolBar::DoSetToggle(wxToolBarToolBase * WXUNUSED(tool), |
553 | bool WXUNUSED(toggle)) | |
c801d85f | 554 | { |
8a0681f9 VZ |
555 | // VZ: absolutely no idea about how to do it |
556 | wxFAIL_MSG( _T("not implemented") ); | |
fc008f25 | 557 | } |
c801d85f | 558 | |
8a0681f9 VZ |
559 | // ---------------------------------------------------------------------------- |
560 | // wxToolBar geometry | |
561 | // ---------------------------------------------------------------------------- | |
562 | ||
563 | wxToolBarToolBase *wxToolBar::FindToolForPosition(wxCoord WXUNUSED(x), | |
564 | wxCoord WXUNUSED(y)) const | |
c801d85f | 565 | { |
8a0681f9 VZ |
566 | // VZ: GTK+ doesn't seem to have such thing |
567 | wxFAIL_MSG( _T("wxToolBar::FindToolForPosition() not implemented") ); | |
568 | ||
569 | return (wxToolBarToolBase *)NULL; | |
fc008f25 | 570 | } |
c801d85f | 571 | |
1144d24d | 572 | void wxToolBar::SetMargins( int x, int y ) |
c801d85f | 573 | { |
8a0681f9 VZ |
574 | wxCHECK_RET( GetToolsCount() == 0, |
575 | wxT("wxToolBar::SetMargins must be called before adding tools.") ); | |
248bcf0a | 576 | |
1144d24d RR |
577 | m_xMargin = x; |
578 | m_yMargin = y; | |
fc008f25 | 579 | } |
c801d85f | 580 | |
cf4219e7 | 581 | void wxToolBar::SetToolSeparation( int separation ) |
c801d85f | 582 | { |
9e691f46 | 583 | // FIXME: this function disappeared |
68567a96 | 584 | #if 0 |
1144d24d | 585 | gtk_toolbar_set_space_size( m_toolbar, separation ); |
9e691f46 VZ |
586 | #endif |
587 | ||
8a0681f9 | 588 | m_toolSeparation = separation; |
1144d24d RR |
589 | } |
590 | ||
a1f79c1e VZ |
591 | void wxToolBar::SetToolShortHelp( int id, const wxString& helpString ) |
592 | { | |
593 | wxToolBarTool *tool = (wxToolBarTool *)FindById(id); | |
594 | ||
595 | if ( tool ) | |
596 | { | |
597 | (void)tool->SetShortHelp(helpString); | |
598 | gtk_tooltips_set_tip(m_toolbar->tooltips, tool->m_item, | |
fab591c5 | 599 | wxGTK_CONV( helpString ), ""); |
a1f79c1e VZ |
600 | } |
601 | } | |
602 | ||
8a0681f9 VZ |
603 | // ---------------------------------------------------------------------------- |
604 | // wxToolBar idle handling | |
605 | // ---------------------------------------------------------------------------- | |
1144d24d | 606 | |
9b7e522a RR |
607 | void wxToolBar::OnInternalIdle() |
608 | { | |
1417c811 RR |
609 | // Check if we have to show window now |
610 | if (GtkShowFromOnIdle()) return; | |
611 | ||
9b7e522a RR |
612 | wxCursor cursor = m_cursor; |
613 | if (g_globalCursor.Ok()) cursor = g_globalCursor; | |
614 | ||
f7a11f8c | 615 | if (cursor.Ok()) |
9b7e522a | 616 | { |
f7a11f8c | 617 | /* I now set the cursor the anew in every OnInternalIdle call |
8a0681f9 VZ |
618 | as setting the cursor in a parent window also effects the |
619 | windows above so that checking for the current cursor is | |
620 | not possible. */ | |
85ec2f26 RR |
621 | |
622 | if (HasFlag(wxTB_DOCKABLE) && (m_widget->window)) | |
9b7e522a | 623 | { |
8a0681f9 VZ |
624 | /* if the toolbar is dockable, then m_widget stands for the |
625 | GtkHandleBox widget, which uses its own window so that we | |
626 | can set the cursor for it. if the toolbar is not dockable, | |
627 | m_widget comes from m_toolbar which uses its parent's | |
628 | window ("windowless windows") and thus we cannot set the | |
629 | cursor. */ | |
630 | gdk_window_set_cursor( m_widget->window, cursor.GetCursor() ); | |
631 | } | |
632 | ||
222ed1d6 | 633 | wxToolBarToolsList::compatibility_iterator node = m_tools.GetFirst(); |
8a0681f9 VZ |
634 | while ( node ) |
635 | { | |
636 | wxToolBarTool *tool = (wxToolBarTool *)node->GetData(); | |
637 | node = node->GetNext(); | |
638 | ||
639 | GtkWidget *item = tool->m_item; | |
640 | if ( item ) | |
641 | { | |
642 | GdkWindow *window = item->window; | |
643 | ||
644 | if ( window ) | |
645 | { | |
646 | gdk_window_set_cursor( window, cursor.GetCursor() ); | |
647 | } | |
648 | } | |
9b7e522a RR |
649 | } |
650 | } | |
651 | ||
e39af974 JS |
652 | if (wxUpdateUIEvent::CanUpdate(this)) |
653 | UpdateWindowUI(wxUPDATE_UI_FROMIDLE); | |
9b7e522a RR |
654 | } |
655 | ||
9d522606 RD |
656 | |
657 | // ---------------------------------------------------------------------------- | |
658 | ||
659 | // static | |
660 | wxVisualAttributes | |
661 | wxToolBar::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant)) | |
662 | { | |
9d522606 | 663 | return GetDefaultAttributesFromGTKWidget(gtk_toolbar_new); |
9d522606 RD |
664 | } |
665 | ||
a1f79c1e | 666 | #endif // wxUSE_TOOLBAR_NATIVE |