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