Added ToogleTool from Markus

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@522 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1998-08-13 09:11:23 +00:00
parent 564b260950
commit fc008f2592
4 changed files with 132 additions and 74 deletions

View File

@@ -53,7 +53,8 @@ class wxToolBarTool: public wxObject
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 = "");
const wxString& shortHelpString = "", const wxString& longHelpString = "",
GtkWidget *item = NULL );
~wxToolBarTool(void);
public:
@@ -71,6 +72,7 @@ class wxToolBarTool: public wxObject
wxString m_shortHelpString;
wxString m_longHelpString;
wxToolBar *m_owner;
GtkWidget *m_item;
};
//-----------------------------------------------------------------------------