+static gint gtk_toolbar_enter_callback( GtkWidget *WXUNUSED(widget),
+ GdkEventCrossing *WXUNUSED(gdk_event), wxToolBarTool *tool )
+{
+ if (g_blockEventsOnDrag) return TRUE;
+
+ tool->m_owner->OnMouseEnter( tool->m_index );
+
+ return TRUE;
+}
+
+//-----------------------------------------------------------------------------
+// wxToolBar
+//-----------------------------------------------------------------------------