X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cf4219e77adb387bd514b83e0c841f563b4016c6..0c32066b58849e52e4d76e30982414d9f4daae6a:/include/wx/gtk1/tbargtk.h diff --git a/include/wx/gtk1/tbargtk.h b/include/wx/gtk1/tbargtk.h index b398eb4520..93f6e7bafc 100644 --- a/include/wx/gtk1/tbargtk.h +++ b/include/wx/gtk1/tbargtk.h @@ -52,8 +52,9 @@ class wxToolBarTool: public wxObject wxToolBarTool(void) {}; wxToolBarTool( wxToolBar *owner, int theIndex = 0, const wxBitmap& bitmap1 = wxNullBitmap, const wxBitmap& bitmap2 = wxNullBitmap, - bool toggle = FALSE, wxObject *clientData = NULL, - const wxString& shortHelpString = "", const wxString& longHelpString = ""); + bool toggle = FALSE, wxObject *clientData = (wxObject *) NULL, + const wxString& shortHelpString = "", const wxString& longHelpString = "", + GtkWidget *item = (GtkWidget *) NULL ); ~wxToolBarTool(void); public: @@ -71,6 +72,7 @@ class wxToolBarTool: public wxObject wxString m_shortHelpString; wxString m_longHelpString; wxToolBar *m_owner; + GtkWidget *m_item; }; //----------------------------------------------------------------------------- @@ -108,7 +110,7 @@ class wxToolBar: public wxControl // If toggle is TRUE, the button toggles between the two states. virtual wxToolBarTool *AddTool( int toolIndex, const wxBitmap& bitmap, const wxBitmap& pushedBitmap = wxNullBitmap, bool toggle = FALSE, - float xPos = -1, float yPos = -1, wxObject *clientData = NULL, + float xPos = -1, float yPos = -1, wxObject *clientData = (wxObject *)NULL, const wxString& helpString1 = "", const wxString& helpString2 = ""); virtual void AddSeparator(void); virtual void ClearTools(void); @@ -131,8 +133,6 @@ class wxToolBar: public wxControl GtkToolbar *m_toolbar; wxList m_tools; - - DECLARE_EVENT_TABLE() }; #endif