-The name wxToolBar is defined to be a synonym for one of the following classes:
-
-wxToolBar95 The native Windows 95 toolbar. Used on Windows 95, NT 4 and above.
-
-wxToolBarMSW A Windows implementation. Used on 16-bit Windows.
-
-wxToolBarGTK The GTK toolbar.
-
-wxToolBarSimple A simple implementation, with scrolling. Used on platforms with no native toolbar control, or where scrolling is required.
-
-wxToolBar()
------------------------
-
-Default constructor.
-
-wxToolBar(wxWindow* parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxTB_HORIZONTAL | wxNO_BORDER, const wxString& name = wxPanelNameStr)
-
-Constructs a toolbar.
-
-Parameters
--------------------
-
-parent = Pointer to a parent window.
-
-id = Window identifier. If -1, will automatically create an identifier.
-
-pos = Window position. wxDefaultPosition is (-1, -1) which indicates that wxWindows should generate a default position for the window. If using the wxWindow class directly, supply an actual position.
-
-size = Window size. wxDefaultSize is (-1, -1) which indicates that wxWindows should generate a default size for the window.
-
-style = Window style. See wxToolBar for details.