]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/tbargtk.cpp
don't strip &s from tooltips (patch 1488318)
[wxWidgets.git] / src / gtk / tbargtk.cpp
CommitLineData
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
c801d85f 22#include "wx/toolbar.h"
dcf924a3 23
8a0681f9 24#if wxUSE_TOOLBAR_NATIVE
dcf924a3 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
44extern bool g_blockEventsOnDrag;
45extern 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
52static 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
77class wxToolBarTool : public wxToolBarToolBase
78{
79public:
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
143protected:
144 void Init();
145};
146
147// ----------------------------------------------------------------------------
148// wxWin macros
149// ----------------------------------------------------------------------------
150
2eb10e2a 151IMPLEMENT_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 161extern "C" {
8a0681f9
VZ
162static 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 202extern "C" {
248bcf0a 203static gint gtk_toolbar_tool_callback( GtkWidget *WXUNUSED(widget),
a8945eef
MB
204 GdkEventCrossing *gdk_event,
205 wxToolBarTool *tool )
314055fa 206{
acfd422a
RR
207 if (g_isIdle) wxapp_install_idle_handler();
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
227static 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
237void wxToolBarTool::Init()
238{
239 m_item =
240 m_pixmap = (GtkWidget *)NULL;
241}
c801d85f 242
8a0681f9 243wxToolBarToolBase *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 256wxToolBarToolBase *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
265void 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 273wxToolBar::~wxToolBar()
c801d85f 274{
fc008f25 275}
c801d85f 276
8a0681f9
VZ
277bool 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 }
6a1b3ead 320 gtk_toolbar_set_tooltips( GTK_TOOLBAR(m_toolbar), !(style & wxTB_NO_TOOLTIPS) );
8a0681f9 321
9e691f46 322 // FIXME: there is no such function for toolbars in 2.0
68567a96 323#if 0
858b5bdd
RR
324 if (style & wxTB_FLAT)
325 gtk_toolbar_set_button_relief( GTK_TOOLBAR(m_toolbar), GTK_RELIEF_NONE );
9e691f46 326#endif
be25e480 327
f03fc89f 328 m_parent->DoAddChild( this );
8a0681f9 329
abdeb9e7 330 PostCreation(size);
a3622daa 331
91af0895 332 return true;
fc008f25 333}
c801d85f 334
e76c0b5f
VZ
335void wxToolBar::GtkSetStyle()
336{
337 GtkOrientation orient;
338 GtkToolbarStyle style;
339 GetGtkStyle(GetWindowStyle(), &orient, &style);
340
341 gtk_toolbar_set_orientation(m_toolbar, orient);
342 gtk_toolbar_set_style(m_toolbar, style);
343}
344
345void wxToolBar::SetWindowStyleFlag( long style )
346{
347 wxToolBarBase::SetWindowStyleFlag(style);
6a1b3ead
VZ
348 if( style & wxTB_TOOLTIPS )
349 {
350 if( m_toolbar )
351 gtk_toolbar_set_tooltips( GTK_TOOLBAR(m_toolbar), TRUE );
352 }
353 else
354 {
355 if( m_toolbar )
356 gtk_toolbar_set_tooltips( GTK_TOOLBAR(m_toolbar), FALSE );
357 }
e76c0b5f
VZ
358 if ( m_toolbar )
359 GtkSetStyle();
360}
361
8a0681f9 362bool wxToolBar::DoInsertTool(size_t pos, wxToolBarToolBase *toolBase)
c801d85f 363{
8a0681f9 364 wxToolBarTool *tool = (wxToolBarTool *)toolBase;
c801d85f 365
2b5f62a0 366 size_t posGtk = pos;
248bcf0a 367
8a0681f9
VZ
368 if ( tool->IsButton() )
369 {
2b5f62a0
VZ
370 if ( !HasFlag(wxTB_NOICONS) )
371 {
372 wxBitmap bitmap = tool->GetNormalBitmap();
c801d85f 373
91af0895 374 wxCHECK_MSG( bitmap.Ok(), false,
2b5f62a0 375 wxT("invalid bitmap for wxToolBar icon") );
a3622daa 376
91af0895 377 wxCHECK_MSG( bitmap.GetBitmap() == NULL, false,
2b5f62a0 378 wxT("wxToolBar doesn't support GdkBitmap") );
03f38c58 379
91af0895 380 wxCHECK_MSG( bitmap.GetPixmap() != NULL, false,
2b5f62a0 381 wxT("wxToolBar::Add needs a wxBitmap") );
248bcf0a 382
2b5f62a0 383 GtkWidget *tool_pixmap = (GtkWidget *)NULL;
248bcf0a 384
ab86c659 385
f05e0979
RR
386 if (bitmap.HasPixbuf())
387 {
388 tool_pixmap = gtk_image_new();
389 tool->m_pixmap = tool_pixmap;
390 tool->SetPixmap(bitmap);
391 }
392 else
f05e0979
RR
393 {
394 GdkPixmap *pixmap = bitmap.GetPixmap();
a3622daa 395
f05e0979
RR
396 GdkBitmap *mask = (GdkBitmap *)NULL;
397 if ( bitmap.GetMask() )
398 mask = bitmap.GetMask()->GetBitmap();
91af0895 399
f05e0979
RR
400 tool_pixmap = gtk_pixmap_new( pixmap, mask );
401 gtk_pixmap_set_build_insensitive( GTK_PIXMAP(tool_pixmap), TRUE );
402 }
248bcf0a 403
2b5f62a0 404 gtk_misc_set_alignment( GTK_MISC(tool_pixmap), 0.5, 0.5 );
a3622daa 405
2b5f62a0
VZ
406 tool->m_pixmap = tool_pixmap;
407 }
8a0681f9 408 }
c801d85f 409
8a0681f9
VZ
410 switch ( tool->GetStyle() )
411 {
412 case wxTOOL_STYLE_BUTTON:
38762f09
VZ
413 // for a radio button we need the widget which starts the radio
414 // group it belongs to, i.e. the first radio button immediately
415 // preceding this one
8a0681f9 416 {
38762f09
VZ
417 GtkWidget *widget = NULL;
418
419 if ( tool->IsRadio() )
420 {
98fc1d65
MB
421 wxToolBarToolsList::compatibility_iterator node
422 = wxToolBarToolsList::compatibility_iterator();
17a1ebd1
VZ
423 if ( pos )
424 node = m_tools.Item(pos - 1);
222ed1d6 425
38762f09
VZ
426 while ( node )
427 {
17a1ebd1
VZ
428 wxToolBarTool *toolNext = (wxToolBarTool *)node->GetData();
429 if ( !toolNext->IsRadio() )
38762f09
VZ
430 break;
431
17a1ebd1 432 widget = toolNext->m_item;
38762f09
VZ
433
434 node = node->GetPrevious();
435 }
436
437 if ( !widget )
438 {
439 // this is the first button in the radio button group,
440 // it will be toggled automatically by GTK so bring the
441 // internal flag in sync
91af0895 442 tool->Toggle(true);
38762f09
VZ
443 }
444 }
445
446 tool->m_item = gtk_toolbar_insert_element
447 (
448 m_toolbar,
449 tool->GetGtkChildType(),
450 widget,
451 tool->GetLabel().empty()
452 ? NULL
fab591c5 453 : (const char*) wxGTK_CONV( tool->GetLabel() ),
38762f09
VZ
454 tool->GetShortHelp().empty()
455 ? NULL
fab591c5 456 : (const char*) wxGTK_CONV( tool->GetShortHelp() ),
38762f09
VZ
457 "", // tooltip_private_text (?)
458 tool->m_pixmap,
459 (GtkSignalFunc)gtk_toolbar_callback,
460 (gpointer)tool,
6a1359c0 461 posGtk
38762f09
VZ
462 );
463
464 if ( !tool->m_item )
465 {
466 wxFAIL_MSG( _T("gtk_toolbar_insert_element() failed") );
467
91af0895 468 return false;
38762f09 469 }
99e8cb50 470
9fa72bd2
MR
471 g_signal_connect (tool->m_item, "enter_notify_event",
472 G_CALLBACK (gtk_toolbar_tool_callback),
473 tool);
474 g_signal_connect (tool->m_item, "leave_notify_event",
475 G_CALLBACK (gtk_toolbar_tool_callback),
476 tool);
8a0681f9 477 }
8a0681f9
VZ
478 break;
479
480 case wxTOOL_STYLE_SEPARATOR:
6a1359c0 481 gtk_toolbar_insert_space( m_toolbar, posGtk );
8a0681f9
VZ
482
483 // skip the rest
91af0895 484 return true;
bf9e3e73 485
8a0681f9
VZ
486 case wxTOOL_STYLE_CONTROL:
487 gtk_toolbar_insert_widget(
488 m_toolbar,
489 tool->GetControl()->m_widget,
490 (const char *) NULL,
491 (const char *) NULL,
6a1359c0 492 posGtk
8a0681f9
VZ
493 );
494 break;
495 }
bf9e3e73 496
bf9e3e73 497 GtkRequisition req;
2afa14f2
OK
498 (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(m_widget) )->size_request )
499 (m_widget, &req );
00655497 500 m_width = req.width + m_xMargin;
6f67eafe 501 m_height = req.height + 2*m_yMargin;
9f884528 502 InvalidateBestSize();
bf9e3e73 503
91af0895 504 return true;
bf9e3e73
RR
505}
506
4a64a89c 507bool wxToolBar::DoDeleteTool(size_t pos, wxToolBarToolBase *toolBase)
c801d85f 508{
8a0681f9 509 wxToolBarTool *tool = (wxToolBarTool *)toolBase;
c801d85f 510
8a0681f9 511 switch ( tool->GetStyle() )
97d7bfb8 512 {
8a0681f9
VZ
513 case wxTOOL_STYLE_CONTROL:
514 tool->GetControl()->Destroy();
515 break;
97d7bfb8 516
8a0681f9
VZ
517 case wxTOOL_STYLE_BUTTON:
518 gtk_widget_destroy( tool->m_item );
519 break;
97d7bfb8 520
4a64a89c
RD
521 case wxTOOL_STYLE_SEPARATOR:
522 gtk_toolbar_remove_space( m_toolbar, pos );
523 break;
8a0681f9 524 }
c801d85f 525
9f884528 526 InvalidateBestSize();
91af0895 527 return true;
fc008f25 528}
46dc76ba 529
8a0681f9
VZ
530// ----------------------------------------------------------------------------
531// wxToolBar tools state
532// ----------------------------------------------------------------------------
533
534void wxToolBar::DoEnableTool(wxToolBarToolBase *toolBase, bool enable)
c801d85f 535{
8a0681f9
VZ
536 wxToolBarTool *tool = (wxToolBarTool *)toolBase;
537
8a0681f9 538 if (tool->m_item)
fab591c5 539 {
8a0681f9 540 gtk_widget_set_sensitive( tool->m_item, enable );
fab591c5 541 }
fc008f25 542}
c801d85f 543
248bcf0a 544void wxToolBar::DoToggleTool( wxToolBarToolBase *toolBase, bool toggle )
c801d85f 545{
8a0681f9
VZ
546 wxToolBarTool *tool = (wxToolBarTool *)toolBase;
547
548 GtkWidget *item = tool->m_item;
549 if ( item && GTK_IS_TOGGLE_BUTTON(item) )
1144d24d 550 {
ab86c659 551 tool->SetPixmap(tool->GetBitmap());
c801d85f 552
91af0895 553 m_blockEvent = true;
8a0681f9 554
e343da37 555 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON(item), toggle );
248bcf0a 556
91af0895 557 m_blockEvent = false;
1144d24d 558 }
fc008f25 559}
c801d85f 560
8a0681f9
VZ
561void wxToolBar::DoSetToggle(wxToolBarToolBase * WXUNUSED(tool),
562 bool WXUNUSED(toggle))
c801d85f 563{
8a0681f9
VZ
564 // VZ: absolutely no idea about how to do it
565 wxFAIL_MSG( _T("not implemented") );
fc008f25 566}
c801d85f 567
8a0681f9
VZ
568// ----------------------------------------------------------------------------
569// wxToolBar geometry
570// ----------------------------------------------------------------------------
571
572wxToolBarToolBase *wxToolBar::FindToolForPosition(wxCoord WXUNUSED(x),
573 wxCoord WXUNUSED(y)) const
c801d85f 574{
8a0681f9
VZ
575 // VZ: GTK+ doesn't seem to have such thing
576 wxFAIL_MSG( _T("wxToolBar::FindToolForPosition() not implemented") );
577
578 return (wxToolBarToolBase *)NULL;
fc008f25 579}
c801d85f 580
1144d24d 581void wxToolBar::SetMargins( int x, int y )
c801d85f 582{
8a0681f9
VZ
583 wxCHECK_RET( GetToolsCount() == 0,
584 wxT("wxToolBar::SetMargins must be called before adding tools.") );
248bcf0a 585
1144d24d
RR
586 m_xMargin = x;
587 m_yMargin = y;
fc008f25 588}
c801d85f 589
cf4219e7 590void wxToolBar::SetToolSeparation( int separation )
c801d85f 591{
9e691f46 592 // FIXME: this function disappeared
68567a96 593#if 0
1144d24d 594 gtk_toolbar_set_space_size( m_toolbar, separation );
9e691f46
VZ
595#endif
596
8a0681f9 597 m_toolSeparation = separation;
1144d24d
RR
598}
599
a1f79c1e
VZ
600void wxToolBar::SetToolShortHelp( int id, const wxString& helpString )
601{
602 wxToolBarTool *tool = (wxToolBarTool *)FindById(id);
603
604 if ( tool )
605 {
606 (void)tool->SetShortHelp(helpString);
607 gtk_tooltips_set_tip(m_toolbar->tooltips, tool->m_item,
fab591c5 608 wxGTK_CONV( helpString ), "");
a1f79c1e
VZ
609 }
610}
611
8a0681f9
VZ
612// ----------------------------------------------------------------------------
613// wxToolBar idle handling
614// ----------------------------------------------------------------------------
1144d24d 615
9b7e522a
RR
616void wxToolBar::OnInternalIdle()
617{
618 wxCursor cursor = m_cursor;
619 if (g_globalCursor.Ok()) cursor = g_globalCursor;
620
f7a11f8c 621 if (cursor.Ok())
9b7e522a 622 {
f7a11f8c 623 /* I now set the cursor the anew in every OnInternalIdle call
8a0681f9
VZ
624 as setting the cursor in a parent window also effects the
625 windows above so that checking for the current cursor is
626 not possible. */
85ec2f26
RR
627
628 if (HasFlag(wxTB_DOCKABLE) && (m_widget->window))
9b7e522a 629 {
8a0681f9
VZ
630 /* if the toolbar is dockable, then m_widget stands for the
631 GtkHandleBox widget, which uses its own window so that we
632 can set the cursor for it. if the toolbar is not dockable,
633 m_widget comes from m_toolbar which uses its parent's
634 window ("windowless windows") and thus we cannot set the
635 cursor. */
636 gdk_window_set_cursor( m_widget->window, cursor.GetCursor() );
637 }
638
222ed1d6 639 wxToolBarToolsList::compatibility_iterator node = m_tools.GetFirst();
8a0681f9
VZ
640 while ( node )
641 {
642 wxToolBarTool *tool = (wxToolBarTool *)node->GetData();
643 node = node->GetNext();
644
645 GtkWidget *item = tool->m_item;
646 if ( item )
647 {
648 GdkWindow *window = item->window;
649
650 if ( window )
651 {
652 gdk_window_set_cursor( window, cursor.GetCursor() );
653 }
654 }
9b7e522a
RR
655 }
656 }
657
e39af974
JS
658 if (wxUpdateUIEvent::CanUpdate(this))
659 UpdateWindowUI(wxUPDATE_UI_FROMIDLE);
9b7e522a
RR
660}
661
9d522606
RD
662
663// ----------------------------------------------------------------------------
664
665// static
666wxVisualAttributes
667wxToolBar::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
668{
9d522606 669 return GetDefaultAttributesFromGTKWidget(gtk_toolbar_new);
9d522606
RD
670}
671
a1f79c1e 672#endif // wxUSE_TOOLBAR_NATIVE