+
+#if 0
+%{
+#include <wx/generic/buttonbar.h>
+%}
+
+MustHaveApp(wxToolBar);
+class wxButtonToolBar : public wxToolBarBase
+{
+public:
+ %pythonAppend wxButtonToolBar "self._setOORInfo(self)"
+ %pythonAppend wxButtonToolBar() ""
+
+ wxButtonToolBar(wxWindow *parent,
+ wxWindowID id=-1,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ long style = 0,
+ const wxString& name = wxPyToolBarNameStr);
+ %RenameCtor(PreButtonToolBar, wxButtonToolBar());
+
+
+ bool Create(wxWindow *parent,
+ wxWindowID id=-1,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ long style = 0,
+ const wxString& name = wxPyToolBarNameStr);
+};
+
+#endif
+//---------------------------------------------------------------------------