1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/tbargtk.cpp
3 // Purpose: GTK toolbar
4 // Author: Robert Roebling
5 // Modified: 13.12.99 by VZ to derive from wxToolBarBase
7 // Copyright: (c) Robert Roebling
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // ============================================================================
13 // ============================================================================
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 // For compilers that support precompilation, includes "wx.h".
20 #include "wx/wxprec.h"
22 #include "wx/toolbar.h"
24 #if wxUSE_TOOLBAR_NATIVE
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
37 #include "wx/gtk/private.h"
39 // ----------------------------------------------------------------------------
41 // ----------------------------------------------------------------------------
44 extern bool g_blockEventsOnDrag
;
45 extern wxCursor g_globalCursor
;
47 // ----------------------------------------------------------------------------
49 // ----------------------------------------------------------------------------
51 // translate wxWidgets toolbar style flags to GTK orientation and style
52 static void GetGtkStyle(long style
,
53 GtkOrientation
*orient
, GtkToolbarStyle
*gtkStyle
)
55 *orient
= style
& wxTB_VERTICAL
? GTK_ORIENTATION_VERTICAL
56 : GTK_ORIENTATION_HORIZONTAL
;
59 if ( style
& wxTB_TEXT
)
61 *gtkStyle
= style
& wxTB_NOICONS
64 style
& wxTB_HORZ_LAYOUT
? GTK_TOOLBAR_BOTH_HORIZ
:
67 else // no text, hence we must have the icons or what would we show?
69 *gtkStyle
= GTK_TOOLBAR_ICONS
;
73 // ----------------------------------------------------------------------------
75 // ----------------------------------------------------------------------------
77 class wxToolBarTool
: public wxToolBarToolBase
80 wxToolBarTool(wxToolBar
*tbar
,
82 const wxString
& label
,
83 const wxBitmap
& bitmap1
,
84 const wxBitmap
& bitmap2
,
87 const wxString
& shortHelpString
,
88 const wxString
& longHelpString
)
89 : wxToolBarToolBase(tbar
, id
, label
, bitmap1
, bitmap2
, kind
,
90 clientData
, shortHelpString
, longHelpString
)
95 wxToolBarTool(wxToolBar
*tbar
, wxControl
*control
)
96 : wxToolBarToolBase(tbar
, control
)
101 // is this a radio button?
103 // unlike GetKind(), can be called for any kind of tools, not just buttons
104 bool IsRadio() const { return IsButton() && GetKind() == wxITEM_RADIO
; }
106 // this is only called for the normal buttons, i.e. not separators nor
108 GtkToolbarChildType
GetGtkChildType() const
113 return GTK_TOOLBAR_CHILD_TOGGLEBUTTON
;
116 return GTK_TOOLBAR_CHILD_RADIOBUTTON
;
119 wxFAIL_MSG( _T("unknown toolbar child type") );
123 return GTK_TOOLBAR_CHILD_BUTTON
;
127 void SetPixmap(const wxBitmap
& bitmap
)
131 GdkBitmap
*mask
= bitmap
.GetMask() ? bitmap
.GetMask()->GetBitmap()
133 if (bitmap
.HasPixbuf())
134 gtk_image_set_from_pixbuf( GTK_IMAGE(m_pixmap
), bitmap
.GetPixbuf() );
136 gtk_pixmap_set( GTK_PIXMAP(m_pixmap
), bitmap
.GetPixmap(), mask
);
147 // ----------------------------------------------------------------------------
149 // ----------------------------------------------------------------------------
151 IMPLEMENT_DYNAMIC_CLASS(wxToolBar
, wxControl
)
153 // ============================================================================
155 // ============================================================================
157 //-----------------------------------------------------------------------------
158 // "clicked" (internal from gtk_toolbar)
159 //-----------------------------------------------------------------------------
162 static void gtk_toolbar_callback( GtkWidget
*WXUNUSED(widget
),
163 wxToolBarTool
*tool
)
166 wxapp_install_idle_handler();
168 wxToolBar
*tbar
= (wxToolBar
*)tool
->GetToolBar();
170 if (tbar
->m_blockEvent
) return;
172 if (g_blockEventsOnDrag
) return;
173 if (!tool
->IsEnabled()) return;
175 if (tool
->CanBeToggled())
179 tool
->SetPixmap(tool
->GetBitmap());
181 if ( tool
->IsRadio() && !tool
->IsToggled() )
183 // radio button went up, don't report this as a wxWin event
188 if( !tbar
->OnLeftClick( tool
->GetId(), tool
->IsToggled() ) && tool
->CanBeToggled() )
193 tool
->SetPixmap(tool
->GetBitmap());
198 //-----------------------------------------------------------------------------
199 // "enter_notify_event" / "leave_notify_event"
200 //-----------------------------------------------------------------------------
203 static gint
gtk_toolbar_tool_callback( GtkWidget
*WXUNUSED(widget
),
204 GdkEventCrossing
*gdk_event
,
205 wxToolBarTool
*tool
)
207 if (g_isIdle
) wxapp_install_idle_handler();
209 if (g_blockEventsOnDrag
) return TRUE
;
211 wxToolBar
*tb
= (wxToolBar
*)tool
->GetToolBar();
214 if( gdk_event
->type
== GDK_ENTER_NOTIFY
)
215 tb
->OnMouseEnter( tool
->GetId() );
217 tb
->OnMouseEnter( -1 );
223 //-----------------------------------------------------------------------------
224 // InsertChild callback for wxToolBar
225 //-----------------------------------------------------------------------------
227 static void wxInsertChildInToolBar( wxToolBar
* WXUNUSED(parent
),
228 wxWindow
* WXUNUSED(child
) )
230 // we don't do anything here
233 // ----------------------------------------------------------------------------
235 // ----------------------------------------------------------------------------
237 void wxToolBarTool::Init()
240 m_pixmap
= (GtkWidget
*)NULL
;
243 wxToolBarToolBase
*wxToolBar::CreateTool(int id
,
244 const wxString
& text
,
245 const wxBitmap
& bitmap1
,
246 const wxBitmap
& bitmap2
,
248 wxObject
*clientData
,
249 const wxString
& shortHelpString
,
250 const wxString
& longHelpString
)
252 return new wxToolBarTool(this, id
, text
, bitmap1
, bitmap2
, kind
,
253 clientData
, shortHelpString
, longHelpString
);
256 wxToolBarToolBase
*wxToolBar::CreateTool(wxControl
*control
)
258 return new wxToolBarTool(this, control
);
261 //-----------------------------------------------------------------------------
262 // wxToolBar construction
263 //-----------------------------------------------------------------------------
265 void wxToolBar::Init()
267 m_toolbar
= (GtkToolbar
*)NULL
;
268 m_blockEvent
= false;
270 m_defaultHeight
= 32;
273 wxToolBar::~wxToolBar()
277 bool wxToolBar::Create( wxWindow
*parent
,
282 const wxString
& name
)
285 m_insertCallback
= (wxInsertChildFunction
)wxInsertChildInToolBar
;
287 if ( !PreCreation( parent
, pos
, size
) ||
288 !CreateBase( parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
))
290 wxFAIL_MSG( wxT("wxToolBar creation failed") );
295 m_toolbar
= GTK_TOOLBAR( gtk_toolbar_new() );
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);
302 SetToolSeparation(7);
304 if (style
& wxTB_DOCKABLE
)
306 m_widget
= gtk_handle_box_new();
307 gtk_container_add( GTK_CONTAINER(m_widget
), GTK_WIDGET(m_toolbar
) );
308 gtk_widget_show( GTK_WIDGET(m_toolbar
) );
310 if (style
& wxTB_FLAT
)
311 gtk_handle_box_set_shadow_type( GTK_HANDLE_BOX(m_widget
), GTK_SHADOW_NONE
);
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
));
321 gtk_toolbar_set_tooltips( GTK_TOOLBAR(m_toolbar
), TRUE
);
323 // FIXME: there is no such function for toolbars in 2.0
325 if (style
& wxTB_FLAT
)
326 gtk_toolbar_set_button_relief( GTK_TOOLBAR(m_toolbar
), GTK_RELIEF_NONE
);
329 m_parent
->DoAddChild( this );
336 void wxToolBar::GtkSetStyle()
338 GtkOrientation orient
;
339 GtkToolbarStyle style
;
340 GetGtkStyle(GetWindowStyle(), &orient
, &style
);
342 gtk_toolbar_set_orientation(m_toolbar
, orient
);
343 gtk_toolbar_set_style(m_toolbar
, style
);
346 void wxToolBar::SetWindowStyleFlag( long style
)
348 wxToolBarBase::SetWindowStyleFlag(style
);
354 bool wxToolBar::DoInsertTool(size_t pos
, wxToolBarToolBase
*toolBase
)
356 wxToolBarTool
*tool
= (wxToolBarTool
*)toolBase
;
360 if ( tool
->IsButton() )
362 if ( !HasFlag(wxTB_NOICONS
) )
364 wxBitmap bitmap
= tool
->GetNormalBitmap();
366 wxCHECK_MSG( bitmap
.Ok(), false,
367 wxT("invalid bitmap for wxToolBar icon") );
369 wxCHECK_MSG( bitmap
.GetBitmap() == NULL
, false,
370 wxT("wxToolBar doesn't support GdkBitmap") );
372 wxCHECK_MSG( bitmap
.GetPixmap() != NULL
, false,
373 wxT("wxToolBar::Add needs a wxBitmap") );
375 GtkWidget
*tool_pixmap
= (GtkWidget
*)NULL
;
378 if (bitmap
.HasPixbuf())
380 tool_pixmap
= gtk_image_new();
381 tool
->m_pixmap
= tool_pixmap
;
382 tool
->SetPixmap(bitmap
);
386 GdkPixmap
*pixmap
= bitmap
.GetPixmap();
388 GdkBitmap
*mask
= (GdkBitmap
*)NULL
;
389 if ( bitmap
.GetMask() )
390 mask
= bitmap
.GetMask()->GetBitmap();
392 tool_pixmap
= gtk_pixmap_new( pixmap
, mask
);
393 gtk_pixmap_set_build_insensitive( GTK_PIXMAP(tool_pixmap
), TRUE
);
396 gtk_misc_set_alignment( GTK_MISC(tool_pixmap
), 0.5, 0.5 );
398 tool
->m_pixmap
= tool_pixmap
;
402 switch ( tool
->GetStyle() )
404 case wxTOOL_STYLE_BUTTON
:
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
409 GtkWidget
*widget
= NULL
;
411 if ( tool
->IsRadio() )
413 wxToolBarToolsList::compatibility_iterator node
414 = wxToolBarToolsList::compatibility_iterator();
416 node
= m_tools
.Item(pos
- 1);
420 wxToolBarTool
*toolNext
= (wxToolBarTool
*)node
->GetData();
421 if ( !toolNext
->IsRadio() )
424 widget
= toolNext
->m_item
;
426 node
= node
->GetPrevious();
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
438 tool
->m_item
= gtk_toolbar_insert_element
441 tool
->GetGtkChildType(),
443 tool
->GetLabel().empty()
445 : (const char*) wxGTK_CONV( tool
->GetLabel() ),
446 tool
->GetShortHelp().empty()
448 : (const char*) wxGTK_CONV( tool
->GetShortHelp() ),
449 "", // tooltip_private_text (?)
451 (GtkSignalFunc
)gtk_toolbar_callback
,
458 wxFAIL_MSG( _T("gtk_toolbar_insert_element() failed") );
463 g_signal_connect (tool
->m_item
, "enter_notify_event",
464 G_CALLBACK (gtk_toolbar_tool_callback
),
466 g_signal_connect (tool
->m_item
, "leave_notify_event",
467 G_CALLBACK (gtk_toolbar_tool_callback
),
472 case wxTOOL_STYLE_SEPARATOR
:
473 gtk_toolbar_insert_space( m_toolbar
, posGtk
);
478 case wxTOOL_STYLE_CONTROL
:
479 gtk_toolbar_insert_widget(
481 tool
->GetControl()->m_widget
,
490 (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(m_widget
) )->size_request
)
492 m_width
= req
.width
+ m_xMargin
;
493 m_height
= req
.height
+ 2*m_yMargin
;
494 InvalidateBestSize();
499 bool wxToolBar::DoDeleteTool(size_t pos
, wxToolBarToolBase
*toolBase
)
501 wxToolBarTool
*tool
= (wxToolBarTool
*)toolBase
;
503 switch ( tool
->GetStyle() )
505 case wxTOOL_STYLE_CONTROL
:
506 tool
->GetControl()->Destroy();
509 case wxTOOL_STYLE_BUTTON
:
510 gtk_widget_destroy( tool
->m_item
);
513 case wxTOOL_STYLE_SEPARATOR
:
514 gtk_toolbar_remove_space( m_toolbar
, pos
);
518 InvalidateBestSize();
522 // ----------------------------------------------------------------------------
523 // wxToolBar tools state
524 // ----------------------------------------------------------------------------
526 void wxToolBar::DoEnableTool(wxToolBarToolBase
*toolBase
, bool enable
)
528 wxToolBarTool
*tool
= (wxToolBarTool
*)toolBase
;
532 gtk_widget_set_sensitive( tool
->m_item
, enable
);
536 void wxToolBar::DoToggleTool( wxToolBarToolBase
*toolBase
, bool toggle
)
538 wxToolBarTool
*tool
= (wxToolBarTool
*)toolBase
;
540 GtkWidget
*item
= tool
->m_item
;
541 if ( item
&& GTK_IS_TOGGLE_BUTTON(item
) )
543 tool
->SetPixmap(tool
->GetBitmap());
547 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON(item
), toggle
);
549 m_blockEvent
= false;
553 void wxToolBar::DoSetToggle(wxToolBarToolBase
* WXUNUSED(tool
),
554 bool WXUNUSED(toggle
))
556 // VZ: absolutely no idea about how to do it
557 wxFAIL_MSG( _T("not implemented") );
560 // ----------------------------------------------------------------------------
561 // wxToolBar geometry
562 // ----------------------------------------------------------------------------
564 wxToolBarToolBase
*wxToolBar::FindToolForPosition(wxCoord
WXUNUSED(x
),
565 wxCoord
WXUNUSED(y
)) const
567 // VZ: GTK+ doesn't seem to have such thing
568 wxFAIL_MSG( _T("wxToolBar::FindToolForPosition() not implemented") );
570 return (wxToolBarToolBase
*)NULL
;
573 void wxToolBar::SetMargins( int x
, int y
)
575 wxCHECK_RET( GetToolsCount() == 0,
576 wxT("wxToolBar::SetMargins must be called before adding tools.") );
582 void wxToolBar::SetToolSeparation( int separation
)
584 // FIXME: this function disappeared
586 gtk_toolbar_set_space_size( m_toolbar
, separation
);
589 m_toolSeparation
= separation
;
592 void wxToolBar::SetToolShortHelp( int id
, const wxString
& helpString
)
594 wxToolBarTool
*tool
= (wxToolBarTool
*)FindById(id
);
598 (void)tool
->SetShortHelp(helpString
);
599 gtk_tooltips_set_tip(m_toolbar
->tooltips
, tool
->m_item
,
600 wxGTK_CONV( helpString
), "");
604 // ----------------------------------------------------------------------------
605 // wxToolBar idle handling
606 // ----------------------------------------------------------------------------
608 void wxToolBar::OnInternalIdle()
610 wxCursor cursor
= m_cursor
;
611 if (g_globalCursor
.Ok()) cursor
= g_globalCursor
;
615 /* I now set the cursor the anew in every OnInternalIdle call
616 as setting the cursor in a parent window also effects the
617 windows above so that checking for the current cursor is
620 if (HasFlag(wxTB_DOCKABLE
) && (m_widget
->window
))
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
628 gdk_window_set_cursor( m_widget
->window
, cursor
.GetCursor() );
631 wxToolBarToolsList::compatibility_iterator node
= m_tools
.GetFirst();
634 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->GetData();
635 node
= node
->GetNext();
637 GtkWidget
*item
= tool
->m_item
;
640 GdkWindow
*window
= item
->window
;
644 gdk_window_set_cursor( window
, cursor
.GetCursor() );
650 if (wxUpdateUIEvent::CanUpdate(this))
651 UpdateWindowUI(wxUPDATE_UI_FROMIDLE
);
655 // ----------------------------------------------------------------------------
659 wxToolBar::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
661 return GetDefaultAttributesFromGTKWidget(gtk_toolbar_new
);
664 #endif // wxUSE_TOOLBAR_NATIVE