- wxToolBar
Default constructor.
- AddCheckTool
Adds a new check (or toggle) tool to the toolbar.
- AddControl
Adds any control to the toolbar, typically e.g. a wxComboBox.
- AddRadioTool
Adds a new radio tool to the toolbar.
- AddSeparator
Adds a separator for spacing groups of tools.
- AddStretchableSpace
Adds a stretchable space to the toolbar.
- AddTool
Adds a tool to the toolbar.
- ClearTools
Deletes all the tools in the toolbar.
- DeleteTool
Removes the specified tool from the toolbar and deletes it.
- DeleteToolByPos
This function behaves like DeleteTool() but it deletes the tool at the specified position and not the one with the given id.
- EnableTool
Enables or disables the tool.
- FindById
Returns a pointer to the tool identified by id or NULL if no corresponding tool is found.
- FindControl
Returns a pointer to the control identified by id or NULL if no corresponding control is found.
- FindToolForPosition
Finds a tool for the given mouse position.
- GetMargins
Returns the left/right and top/bottom margins, which are also used for inter-toolspacing.
- GetToolBitmapSize
Returns the size of bitmap that the toolbar expects to have.
- GetToolByPos
Returns a pointer to the tool at ordinal position pos.
- GetToolClientData
Get any client data associated with the tool.
- GetToolEnabled
Called to determine whether a tool is enabled (responds to user input).
- GetToolLongHelp
Returns the long help for the given tool.
- GetToolPacking
Returns the value used for packing tools.
- GetToolPos
Returns the tool position in the toolbar, or wxNOT_FOUND if the tool is not found.
- GetToolSeparation
Returns the default separator size.
- GetToolShortHelp
Returns the short help for the given tool.
- GetToolSize
Returns the size of a whole button, which is usually larger than a tool bitmap because of added 3D effects.
- GetToolState
Gets the on/off state of a toggle tool.
- GetToolsCount
Returns the number of tools in the toolbar.
- InsertControl
Inserts the control into the toolbar at the given position.
- InsertSeparator
Inserts the separator into the toolbar at the given position.
- InsertStretchableSpace
Inserts a stretchable space at the given position.
- InsertTool
Inserts the tool with the specified attributes into the toolbar at the given position.
- OnLeftClick
Called when the user clicks on a tool with the left mouse button.
- OnMouseEnter
This is called when the mouse cursor moves into a tool or out of the toolbar.
- OnRightClick
- Realize
This function should be called after you have added tools.
- RemoveTool
Removes the given tool from the toolbar but doesn't delete it.
- SetDropdownMenu
Sets the dropdown menu for the tool given by its id.
- SetMargins
Set the margins for the toolbar.
- SetToolBitmapSize
Sets the default size of each tool bitmap.
- SetToolClientData
Sets the client data associated with the tool.
- SetToolDisabledBitmap
Sets the bitmap to be used by the tool with the given ID when the tool is in a disabled state.
- SetToolLongHelp
Sets the long help for the given tool.
- SetToolNormalBitmap
Sets the bitmap to be used by the tool with the given ID.
- SetToolPacking
Sets the value used for spacing tools.
- SetToolSeparation
Sets the default separator size.
- SetToolShortHelp
Sets the short help for the given tool.
- ToggleTool
Toggles a tool on or off.