#endif
#include "wx/defs.h"
+
+#if wxUSE_TOOLBAR
+
#include "wx/control.h"
#include "wx/bitmap.h"
#include "wx/tbarbase.h"
class wxToolBar: public wxControl
{
+ DECLARE_EVENT_TABLE()
DECLARE_DYNAMIC_CLASS(wxToolBar)
public:
virtual void SetToolLongHelp(int toolIndex, const wxString& helpString);
virtual void SetToolShortHelp(int toolIndex, const wxString& helpString);
+
+ void OnIdle( wxIdleEvent &ievent );
// implementation
bool m_hasToolAlready;
};
+#endif
+
#endif
// __TBARGTKH__