1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: GTK toolbar
4 // Author: Robert Roebling
6 // Copyright: (c) Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "tbargtk.h"
14 #include "wx/toolbar.h"
16 //-----------------------------------------------------------------------------
18 //-----------------------------------------------------------------------------
20 extern bool g_blockEventsOnDrag
;
22 //-----------------------------------------------------------------------------
24 //-----------------------------------------------------------------------------
26 IMPLEMENT_DYNAMIC_CLASS(wxToolBarTool
,wxObject
)
28 wxToolBarTool::wxToolBarTool( wxToolBar
*owner
, int theIndex
,
29 const wxBitmap
& bitmap1
, const wxBitmap
& bitmap2
,
32 const wxString
& shortHelpString
,
33 const wxString
& longHelpString
,
42 m_toggleState
= FALSE
;
43 m_shortHelpString
= shortHelpString
;
44 m_longHelpString
= longHelpString
;
45 m_isMenuCommand
= TRUE
;
46 m_clientData
= clientData
;
47 m_deleteSecondBitmap
= FALSE
;
51 wxToolBarTool::~wxToolBarTool()
55 //-----------------------------------------------------------------------------
56 // "clicked" (internal from gtk_toolbar)
57 //-----------------------------------------------------------------------------
59 static void gtk_toolbar_callback( GtkWidget
*WXUNUSED(widget
), wxToolBarTool
*tool
)
61 if (g_blockEventsOnDrag
) return;
62 if (!tool
->m_enabled
) return;
64 if (tool
->m_isToggle
) tool
->m_toggleState
= !tool
->m_toggleState
;
66 tool
->m_owner
->OnLeftClick( tool
->m_index
, tool
->m_toggleState
);
69 //-----------------------------------------------------------------------------
70 // "enter_notify_event"
71 //-----------------------------------------------------------------------------
73 static gint
gtk_toolbar_enter_callback( GtkWidget
*WXUNUSED(widget
),
74 GdkEventCrossing
*WXUNUSED(gdk_event
), wxToolBarTool
*tool
)
76 if (g_blockEventsOnDrag
) return TRUE
;
78 tool
->m_owner
->OnMouseEnter( tool
->m_index
);
83 //-----------------------------------------------------------------------------
85 //-----------------------------------------------------------------------------
87 IMPLEMENT_DYNAMIC_CLASS(wxToolBar
,wxControl
)
89 wxToolBar::wxToolBar()
93 wxToolBar::wxToolBar( wxWindow
*parent
, wxWindowID id
,
94 const wxPoint
& pos
, const wxSize
& size
,
95 long style
, const wxString
& name
)
97 Create( parent
, id
, pos
, size
, style
, name
);
100 wxToolBar::~wxToolBar()
104 bool wxToolBar::Create( wxWindow
*parent
, wxWindowID id
,
105 const wxPoint
& pos
, const wxSize
& size
,
106 long style
, const wxString
& name
)
110 PreCreation( parent
, id
, pos
, size
, style
, name
);
112 m_tools
.DeleteContents( TRUE
);
114 m_toolbar
= GTK_TOOLBAR( gtk_toolbar_new( GTK_ORIENTATION_HORIZONTAL
,
115 GTK_TOOLBAR_ICONS
) );
117 m_widget
= GTK_WIDGET(m_toolbar
);
119 gtk_toolbar_set_tooltips( GTK_TOOLBAR(m_toolbar
), TRUE
);
121 gtk_toolbar_append_space( m_toolbar
);
123 m_parent
->AddChild( this );
125 (m_parent
->m_insertCallback
)( m_parent
, this );
134 bool wxToolBar::OnLeftClick( int toolIndex
, bool toggleDown
)
136 wxCommandEvent
event( wxEVT_COMMAND_TOOL_CLICKED
, toolIndex
);
137 event
.SetEventObject(this);
138 event
.SetInt( toolIndex
);
139 event
.SetExtraLong((long) toggleDown
);
141 GetEventHandler()->ProcessEvent(event
);
146 void wxToolBar::OnRightClick( int toolIndex
, float WXUNUSED(x
), float WXUNUSED(y
) )
148 wxCommandEvent
event( wxEVT_COMMAND_TOOL_RCLICKED
, toolIndex
);
149 event
.SetEventObject( this );
150 event
.SetInt( toolIndex
);
152 GetEventHandler()->ProcessEvent(event
);
155 void wxToolBar::OnMouseEnter( int toolIndex
)
157 wxCommandEvent
event( wxEVT_COMMAND_TOOL_ENTER
, GetId() );
158 event
.SetEventObject(this);
159 event
.SetInt( toolIndex
);
161 GetEventHandler()->ProcessEvent(event
);
164 wxToolBarTool
*wxToolBar::AddTool( int toolIndex
, const wxBitmap
& bitmap
,
165 const wxBitmap
& pushedBitmap
, bool toggle
,
166 float WXUNUSED(xPos
), float WXUNUSED(yPos
), wxObject
*clientData
,
167 const wxString
& helpString1
, const wxString
& helpString2
)
169 wxCHECK_MSG( bitmap
.Ok(), (wxToolBarTool
*)NULL
,
170 "invalid bitmap for wxToolBar icon" );
172 wxToolBarTool
*tool
= new wxToolBarTool( this, toolIndex
, bitmap
, pushedBitmap
,
174 helpString1
, helpString2
);
176 wxCHECK_MSG( bitmap
.GetBitmap() == NULL
, (wxToolBarTool
*)NULL
,
177 "wxToolBar doesn't support GdkBitmap" );
179 wxCHECK_MSG( bitmap
.GetPixmap() != NULL
, (wxToolBarTool
*)NULL
,
180 "wxToolBar::Add needs a wxBitmap" );
182 GtkWidget
*tool_pixmap
= (GtkWidget
*)NULL
;
184 if (TRUE
) // FIXME huh?
186 GdkPixmap
*pixmap
= bitmap
.GetPixmap();
188 GdkBitmap
*mask
= (GdkBitmap
*)NULL
;
189 if ( bitmap
.GetMask() )
190 mask
= bitmap
.GetMask()->GetBitmap();
192 tool_pixmap
= gtk_pixmap_new( pixmap
, mask
);
195 gtk_misc_set_alignment( GTK_MISC(tool_pixmap
), 0.5, 0.5 );
197 GtkToolbarChildType ctype
= toggle
? GTK_TOOLBAR_CHILD_TOGGLEBUTTON
198 : GTK_TOOLBAR_CHILD_BUTTON
;
200 GtkWidget
*item
= gtk_toolbar_append_element
202 GTK_TOOLBAR(m_toolbar
),
209 (GtkSignalFunc
)gtk_toolbar_callback
,
215 gtk_signal_connect( GTK_OBJECT(tool
->m_item
),
216 "enter_notify_event",
217 GTK_SIGNAL_FUNC(gtk_toolbar_enter_callback
),
220 m_tools
.Append( tool
);
225 void wxToolBar::AddSeparator()
227 gtk_toolbar_append_space( m_toolbar
);
230 void wxToolBar::ClearTools()
232 wxFAIL_MSG( "wxToolBar::ClearTools not implemented" );
235 void wxToolBar::Realize()
242 wxNode
*node
= m_tools
.First();
245 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->Data();
246 if (tool
->m_bitmap1
.Ok())
248 int tool_height
= tool
->m_bitmap1
.GetHeight();
249 if (tool_height
> m_height
) m_height
= tool_height
;
258 void wxToolBar::EnableTool(int toolIndex
, bool enable
)
260 wxNode
*node
= m_tools
.First();
263 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->Data();
264 if (tool
->m_index
== toolIndex
)
266 tool
->m_enabled
= enable
;
272 wxFAIL_MSG( "wrong toolbar index" );
275 void wxToolBar::ToggleTool( int toolIndex
, bool toggle
)
277 wxNode
*node
= m_tools
.First();
280 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->Data();
281 if (tool
->m_index
== toolIndex
)
283 tool
->m_toggleState
= toggle
;
284 if ((tool
->m_item
) && (GTK_IS_TOGGLE_BUTTON(tool
->m_item
)))
285 gtk_toggle_button_set_state( GTK_TOGGLE_BUTTON(tool
->m_item
), toggle
);
291 wxFAIL_MSG( "wrong toolbar index" );
294 wxObject
*wxToolBar::GetToolClientData( int index
) const
296 wxNode
*node
= m_tools
.First();
299 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->Data();
300 if (tool
->m_index
== index
) return tool
->m_clientData
;;
304 wxFAIL_MSG( "wrong toolbar index" );
306 return (wxObject
*)NULL
;
309 bool wxToolBar::GetToolState(int toolIndex
) const
311 wxNode
*node
= m_tools
.First();
314 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->Data();
315 if (tool
->m_index
== toolIndex
) return tool
->m_toggleState
;
319 wxFAIL_MSG( "wrong toolbar index" );
324 bool wxToolBar::GetToolEnabled(int toolIndex
) const
326 wxNode
*node
= m_tools
.First();
329 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->Data();
330 if (tool
->m_index
== toolIndex
) return tool
->m_enabled
;
334 wxFAIL_MSG( "wrong toolbar index" );
339 void wxToolBar::SetMargins( int WXUNUSED(x
), int WXUNUSED(y
) )
341 // wxFAIL_MSG( "wxToolBar::SetMargins not implemented" );
344 void wxToolBar::SetToolPacking( int WXUNUSED(packing
) )
346 wxFAIL_MSG( "wxToolBar::SetToolPacking not implemented" );
349 void wxToolBar::SetToolSeparation( int separation
)
351 gtk_toolbar_set_space_size( m_toolbar
, separation
);