#include </home/zeitlin/src/wx/github/interface/wx/toolbar.h>
A toolbar is a bar of buttons and/or other controls usually placed below the menu bar in a wxFrame.
You may create a toolbar that is managed by a frame calling wxFrame::CreateToolBar(). Under Pocket PC, you should always use this function for creating the toolbar to be managed by the frame, so that wxWidgets can use a combined menubar and toolbar. Where you manage your own toolbars, create wxToolBar as usual.
There are several different types of tools you can add to a toolbar. These types are controlled by the wxItemKind enumeration.
Note that many methods in wxToolBar such as wxToolBar::AddTool return a wxToolBarToolBase*
object. This should be regarded as an opaque handle representing the newly added toolbar item, providing access to its id and position within the toolbar. Changes to the item's state should be made through calls to wxToolBar methods, for example wxToolBar::EnableTool. Calls to wxToolBarToolBase
methods (undocumented by purpose) will not change the visible state of the item within the tool bar.
wxMSW note: Note that under wxMSW toolbar paints tools to reflect system-wide colours. If you use more than 16 colours in your tool bitmaps, you may wish to suppress this behaviour, otherwise system colours in your bitmaps will inadvertently be mapped to system colours. To do this, set the msw.remap system option before creating the toolbar:
wxSystemOptions::SetOption("msw.remap", 0);
If you wish to use 32-bit images (which include an alpha channel for transparency) use:
wxSystemOptions::SetOption("msw.remap", 2);
Then colour remapping is switched off, and a transparent background used. But only use this option under Windows XP with true colour:
if (wxTheApp->GetComCtl32Version() >= 600 && ::wxDisplayDepth() >= 32)
This class supports the following styles:
wxTB_TEXT
. wxTB_HORZ_LAYOUT
and wxTB_TEXT
. See also Window Styles. Note that the wxMSW native toolbar ignores wxTB_NOICONS
style. Also, toggling the wxTB_TEXT
works only if the style was initially on.
The following event handler macros redirect the events to member function handlers 'func' with prototypes like:
Event macros for events emitted by this class:
wxEVT_COMMAND_TOOL_CLICKED
event (a synonym for wxEVT_COMMAND_MENU_SELECTED
). Pass the id of the tool. wxEVT_COMMAND_TOOL_CLICKED
event for a range of identifiers. Pass the ids of the tools. wxEVT_COMMAND_TOOL_RCLICKED
event. Pass the id of the tool. (Not available on wxOSX.) wxEVT_COMMAND_TOOL_RCLICKED
event for a range of ids. Pass the ids of the tools. (Not available on wxOSX.) wxEVT_COMMAND_TOOL_ENTER
event. Pass the id of the toolbar itself. The value of wxCommandEvent::GetSelection() is the tool id, or -1 if the mouse cursor has moved off a tool. (Not available on wxOSX.) wxEVT_COMMAND_TOOL_DROPDOWN_CLICKED
event. If unhandled, displays the default dropdown menu set using wxToolBar::SetDropdownMenu(). The toolbar class emits menu commands in the same way that a frame menubar does, so you can use one EVT_MENU() macro for both a menu item and a toolbar button. The event handler functions take a wxCommandEvent argument. For most event macros, the identifier of the tool is passed, but for EVT_TOOL_ENTER() the toolbar window identifier is passed and the tool identifier is retrieved from the wxCommandEvent. This is because the identifier may be wxID_ANY
when the mouse moves off a tool, and wxID_ANY
is not allowed as an identifier in the event system.
Public Member Functions | |
wxToolBar () | |
Default constructor. | |
wxToolBar (wxWindow *parent, wxWindowID id, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=wxTB_HORIZONTAL, const wxString &name=wxToolBarNameStr) | |
Constructs a toolbar. | |
virtual | ~wxToolBar () |
Toolbar destructor. | |
wxToolBarToolBase * | AddCheckTool (int toolId, const wxString &label, const wxBitmap &bitmap1, const wxBitmap &bmpDisabled=wxNullBitmap, const wxString &shortHelp=wxEmptyString, const wxString &longHelp=wxEmptyString, wxObject *clientData=NULL) |
Adds a new check (or toggle) tool to the toolbar. | |
virtual wxToolBarToolBase * | AddControl (wxControl *control, const wxString &label=wxEmptyString) |
Adds any control to the toolbar, typically e.g. | |
wxToolBarToolBase * | AddRadioTool (int toolId, const wxString &label, const wxBitmap &bitmap1, const wxBitmap &bmpDisabled=wxNullBitmap, const wxString &shortHelp=wxEmptyString, const wxString &longHelp=wxEmptyString, wxObject *clientData=NULL) |
Adds a new radio tool to the toolbar. | |
virtual wxToolBarToolBase * | AddSeparator () |
Adds a separator for spacing groups of tools. | |
wxToolBarToolBase * | AddStretchableSpace () |
Adds a stretchable space to the toolbar. | |
virtual void | ClearTools () |
Deletes all the tools in the toolbar. | |
virtual bool | DeleteTool (int toolId) |
Removes the specified tool from the toolbar and deletes it. | |
virtual bool | DeleteToolByPos (size_t pos) |
This function behaves like DeleteTool() but it deletes the tool at the specified position and not the one with the given id. | |
virtual void | EnableTool (int toolId, bool enable) |
Enables or disables the tool. | |
wxToolBarToolBase * | FindById (int id) const |
Returns a pointer to the tool identified by id or NULL if no corresponding tool is found. | |
virtual wxControl * | FindControl (int id) |
Returns a pointer to the control identified by id or NULL if no corresponding control is found. | |
virtual wxToolBarToolBase * | FindToolForPosition (wxCoord x, wxCoord y) const |
Finds a tool for the given mouse position. | |
wxSize | GetMargins () const |
Returns the left/right and top/bottom margins, which are also used for inter-toolspacing. | |
virtual wxSize | GetToolBitmapSize () const |
Returns the size of bitmap that the toolbar expects to have. | |
const wxToolBarToolBase * | GetToolByPos (int pos) const |
Returns a pointer to the tool at ordinal position pos. | |
virtual wxObject * | GetToolClientData (int toolId) const |
Get any client data associated with the tool. | |
virtual bool | GetToolEnabled (int toolId) const |
Called to determine whether a tool is enabled (responds to user input). | |
virtual wxString | GetToolLongHelp (int toolId) const |
Returns the long help for the given tool. | |
virtual int | GetToolPacking () const |
Returns the value used for packing tools. | |
virtual int | GetToolPos (int toolId) const |
Returns the tool position in the toolbar, or wxNOT_FOUND if the tool is not found. | |
virtual int | GetToolSeparation () const |
Returns the default separator size. | |
virtual wxString | GetToolShortHelp (int toolId) const |
Returns the short help for the given tool. | |
virtual wxSize | GetToolSize () const |
Returns the size of a whole button, which is usually larger than a tool bitmap because of added 3D effects. | |
virtual bool | GetToolState (int toolId) const |
Gets the on/off state of a toggle tool. | |
size_t | GetToolsCount () const |
Returns the number of tools in the toolbar. | |
virtual wxToolBarToolBase * | InsertControl (size_t pos, wxControl *control, const wxString &label=wxEmptyString) |
Inserts the control into the toolbar at the given position. | |
virtual wxToolBarToolBase * | InsertSeparator (size_t pos) |
Inserts the separator into the toolbar at the given position. | |
wxToolBarToolBase * | InsertStretchableSpace (size_t pos) |
Inserts a stretchable space at the given position. | |
virtual bool | OnLeftClick (int toolId, bool toggleDown) |
Called when the user clicks on a tool with the left mouse button. | |
virtual void | OnMouseEnter (int toolId) |
This is called when the mouse cursor moves into a tool or out of the toolbar. | |
virtual void | OnRightClick (int toolId, long x, long y) |
virtual bool | Realize () |
This function should be called after you have added tools. | |
virtual wxToolBarToolBase * | RemoveTool (int id) |
Removes the given tool from the toolbar but doesn't delete it. | |
void | SetBitmapResource (int resourceId) |
Sets the bitmap resource identifier for specifying tool bitmaps as indices into a custom bitmap. | |
bool | SetDropdownMenu (int id, wxMenu *menu) |
Sets the dropdown menu for the tool given by its id. | |
virtual void | SetToolBitmapSize (const wxSize &size) |
Sets the default size of each tool bitmap. | |
virtual void | SetToolClientData (int id, wxObject *clientData) |
Sets the client data associated with the tool. | |
virtual void | SetToolDisabledBitmap (int id, const wxBitmap &bitmap) |
Sets the bitmap to be used by the tool with the given ID when the tool is in a disabled state. | |
virtual void | SetToolLongHelp (int toolId, const wxString &helpString) |
Sets the long help for the given tool. | |
virtual void | SetToolNormalBitmap (int id, const wxBitmap &bitmap) |
Sets the bitmap to be used by the tool with the given ID. | |
virtual void | SetToolPacking (int packing) |
Sets the value used for spacing tools. | |
virtual void | SetToolSeparation (int separation) |
Sets the default separator size. | |
virtual void | SetToolShortHelp (int toolId, const wxString &helpString) |
Sets the short help for the given tool. | |
virtual void | ToggleTool (int toolId, bool toggle) |
Toggles a tool on or off. | |
virtual wxToolBarToolBase * | CreateTool (int toolId, const wxString &label, const wxBitmap &bmpNormal, const wxBitmap &bmpDisabled=wxNullBitmap, wxItemKind kind=wxITEM_NORMAL, wxObject *clientData=NULL, const wxString &shortHelp=wxEmptyString, const wxString &longHelp=wxEmptyString) |
Factory function to create a new toolbar tool. | |
virtual wxToolBarToolBase * | CreateTool (wxControl *control, const wxString &label) |
Factory function to create a new control toolbar tool. | |
virtual wxToolBarToolBase * | AddTool (wxToolBarToolBase *tool) |
Adds a tool to the toolbar. | |
wxToolBarToolBase * | AddTool (int toolId, const wxString &label, const wxBitmap &bitmap, const wxString &shortHelp=wxEmptyString, wxItemKind kind=wxITEM_NORMAL) |
Adds a tool to the toolbar. | |
wxToolBarToolBase * | AddTool (int toolId, const wxString &label, const wxBitmap &bitmap, const wxBitmap &bmpDisabled, wxItemKind kind=wxITEM_NORMAL, const wxString &shortHelpString=wxEmptyString, const wxString &longHelpString=wxEmptyString, wxObject *clientData=NULL) |
Adds a tool to the toolbar. | |
wxToolBarToolBase * | InsertTool (size_t pos, int toolId, const wxString &label, const wxBitmap &bitmap, const wxBitmap &bmpDisabled=wxNullBitmap, wxItemKind kind=wxITEM_NORMAL, const wxString &shortHelp=wxEmptyString, const wxString &longHelp=wxEmptyString, wxObject *clientData=NULL) |
Inserts the tool with the specified attributes into the toolbar at the given position. | |
wxToolBarToolBase * | InsertTool (size_t pos, wxToolBarToolBase *tool) |
Inserts the tool with the specified attributes into the toolbar at the given position. | |
virtual void | SetMargins (int x, int y) |
Set the values to be used as margins for the toolbar. | |
void | SetMargins (const wxSize &size) |
Set the margins for the toolbar. |
wxToolBar::wxToolBar | ( | ) |
Default constructor.
wxToolBar::wxToolBar | ( | wxWindow * | parent, |
wxWindowID | id, | ||
const wxPoint & | pos = wxDefaultPosition , |
||
const wxSize & | size = wxDefaultSize , |
||
long | style = wxTB_HORIZONTAL , |
||
const wxString & | name = wxToolBarNameStr |
||
) |
Constructs a toolbar.
parent | Pointer to a parent window. |
id | Window identifier. If -1, will automatically create an identifier. |
pos | Window position. wxDefaultPosition indicates that wxWidgets should generate a default position for the window. If using the wxWindow class directly, supply an actual position. |
size | Window size. wxDefaultSize indicates that wxWidgets should generate a default size for the window. |
style | Window style. See wxToolBar initial description for details. |
name | Window name. |
virtual wxToolBar::~wxToolBar | ( | ) | [virtual] |
Toolbar destructor.
wxToolBarToolBase* wxToolBar::AddCheckTool | ( | int | toolId, |
const wxString & | label, | ||
const wxBitmap & | bitmap1, | ||
const wxBitmap & | bmpDisabled = wxNullBitmap , |
||
const wxString & | shortHelp = wxEmptyString , |
||
const wxString & | longHelp = wxEmptyString , |
||
wxObject * | clientData = NULL |
||
) |
virtual wxToolBarToolBase* wxToolBar::AddControl | ( | wxControl * | control, |
const wxString & | label = wxEmptyString |
||
) | [virtual] |
Adds any control to the toolbar, typically e.g.
a wxComboBox.
control | The control to be added. |
label | Text to be displayed near the control. |
wxMAC_USE_NATIVE_TOOLBAR
set to 1 wxToolBarToolBase* wxToolBar::AddRadioTool | ( | int | toolId, |
const wxString & | label, | ||
const wxBitmap & | bitmap1, | ||
const wxBitmap & | bmpDisabled = wxNullBitmap , |
||
const wxString & | shortHelp = wxEmptyString , |
||
const wxString & | longHelp = wxEmptyString , |
||
wxObject * | clientData = NULL |
||
) |
Adds a new radio tool to the toolbar.
Consecutive radio tools form a radio group such that exactly one button in the group is pressed at any moment, in other words whenever a button in the group is pressed the previously pressed button is automatically released. You should avoid having the radio groups of only one element as it would be impossible for the user to use such button.
By default, the first button in the radio group is initially pressed, the others are not.
virtual wxToolBarToolBase* wxToolBar::AddSeparator | ( | ) | [virtual] |
Adds a separator for spacing groups of tools.
Notice that the separator uses the look appropriate for the current platform so it can be a vertical line (MSW, some versions of GTK) or just an empty space or something else.
wxToolBarToolBase* wxToolBar::AddStretchableSpace | ( | ) |
Adds a stretchable space to the toolbar.
Any space not taken up by the fixed items (all items except for stretchable spaces) is distributed in equal measure between the stretchable spaces in the toolbar. The most common use for this method is to add a single stretchable space before the items which should be right-aligned in the toolbar, but more exotic possibilities are possible, e.g. a stretchable space may be added in the beginning and the end of the toolbar to centre all toolbar items.
wxToolBarToolBase* wxToolBar::AddTool | ( | int | toolId, |
const wxString & | label, | ||
const wxBitmap & | bitmap, | ||
const wxBitmap & | bmpDisabled, | ||
wxItemKind | kind = wxITEM_NORMAL , |
||
const wxString & | shortHelpString = wxEmptyString , |
||
const wxString & | longHelpString = wxEmptyString , |
||
wxObject * | clientData = NULL |
||
) |
Adds a tool to the toolbar.
toolId | An integer by which the tool may be identified in subsequent operations. |
label | The string to be displayed with the tool. |
bitmap | The primary tool bitmap. |
bmpDisabled | The bitmap used when the tool is disabled. If it is equal to wxNullBitmap (default), the disabled bitmap is automatically generated by greying the normal one. |
kind | May be wxITEM_NORMAL for a normal button (default), wxITEM_CHECK for a checkable tool (such tool stays pressed after it had been toggled) or wxITEM_RADIO for a checkable tool which makes part of a radio group of tools each of which is automatically unchecked whenever another button in the group is checked. wxITEM_DROPDOWN specifies that a drop-down menu button will appear next to the tool button (only GTK+ and MSW). Call SetDropdownMenu() afterwards. |
shortHelpString | This string is used for the tools tooltip. |
longHelpString | This string is shown in the statusbar (if any) of the parent frame when the mouse pointer is inside the tool. |
clientData | An optional pointer to client data which can be retrieved later using GetToolClientData(). |
virtual wxToolBarToolBase* wxToolBar::AddTool | ( | wxToolBarToolBase * | tool | ) | [virtual] |
Adds a tool to the toolbar.
tool | The tool to be added. |
wxToolBarToolBase* wxToolBar::AddTool | ( | int | toolId, |
const wxString & | label, | ||
const wxBitmap & | bitmap, | ||
const wxString & | shortHelp = wxEmptyString , |
||
wxItemKind | kind = wxITEM_NORMAL |
||
) |
Adds a tool to the toolbar.
This most commonly used version has fewer parameters than the full version below which specifies the more rarely used button features.
toolId | An integer by which the tool may be identified in subsequent operations. |
label | The string to be displayed with the tool. |
bitmap | The primary tool bitmap. |
shortHelp | This string is used for the tools tooltip. |
kind | May be wxITEM_NORMAL for a normal button (default), wxITEM_CHECK for a checkable tool (such tool stays pressed after it had been toggled) or wxITEM_RADIO for a checkable tool which makes part of a radio group of tools each of which is automatically unchecked whenever another button in the group is checked. wxITEM_DROPDOWN specifies that a drop-down menu button will appear next to the tool button (only GTK+ and MSW). Call SetDropdownMenu() afterwards. |
virtual void wxToolBar::ClearTools | ( | ) | [virtual] |
Deletes all the tools in the toolbar.
virtual wxToolBarToolBase* wxToolBar::CreateTool | ( | int | toolId, |
const wxString & | label, | ||
const wxBitmap & | bmpNormal, | ||
const wxBitmap & | bmpDisabled = wxNullBitmap , |
||
wxItemKind | kind = wxITEM_NORMAL , |
||
wxObject * | clientData = NULL , |
||
const wxString & | shortHelp = wxEmptyString , |
||
const wxString & | longHelp = wxEmptyString |
||
) | [virtual] |
Factory function to create a new toolbar tool.
virtual wxToolBarToolBase* wxToolBar::CreateTool | ( | wxControl * | control, |
const wxString & | label | ||
) | [virtual] |
Factory function to create a new control toolbar tool.
virtual bool wxToolBar::DeleteTool | ( | int | toolId | ) | [virtual] |
Removes the specified tool from the toolbar and deletes it.
If you don't want to delete the tool, but just to remove it from the toolbar (to possibly add it back later), you may use RemoveTool() instead.
virtual bool wxToolBar::DeleteToolByPos | ( | size_t | pos | ) | [virtual] |
This function behaves like DeleteTool() but it deletes the tool at the specified position and not the one with the given id.
virtual void wxToolBar::EnableTool | ( | int | toolId, |
bool | enable | ||
) | [virtual] |
Enables or disables the tool.
toolId | ID of the tool to enable or disable, as passed to AddTool(). |
enable | If true, enables the tool, otherwise disables it. |
wxToolBarToolBase* wxToolBar::FindById | ( | int | id | ) | const |
Returns a pointer to the tool identified by id or NULL if no corresponding tool is found.
virtual wxControl* wxToolBar::FindControl | ( | int | id | ) | [virtual] |
Returns a pointer to the control identified by id or NULL if no corresponding control is found.
virtual wxToolBarToolBase* wxToolBar::FindToolForPosition | ( | wxCoord | x, |
wxCoord | y | ||
) | const [virtual] |
Finds a tool for the given mouse position.
x | X position. |
y | Y position. |
wxSize wxToolBar::GetMargins | ( | ) | const |
Returns the left/right and top/bottom margins, which are also used for inter-toolspacing.
virtual wxSize wxToolBar::GetToolBitmapSize | ( | ) | const [virtual] |
Returns the size of bitmap that the toolbar expects to have.
The default bitmap size is platform-dependent: for example, it is 16*15 for MSW and 24*24 for GTK. This size does not necessarily indicate the best size to use for the toolbars on the given platform, for this you should use wxArtProvider::GetNativeSizeHint(wxART_TOOLBAR)
but in any case, as the bitmap size is deduced automatically from the size of the bitmaps associated with the tools added to the toolbar, it is usually unnecessary to call SetToolBitmapSize() explicitly.
const wxToolBarToolBase* wxToolBar::GetToolByPos | ( | int | pos | ) | const |
Returns a pointer to the tool at ordinal position pos.
Don't confuse this with FindToolForPosition().
virtual wxObject* wxToolBar::GetToolClientData | ( | int | toolId | ) | const [virtual] |
Get any client data associated with the tool.
toolId | ID of the tool in question, as passed to AddTool(). |
virtual bool wxToolBar::GetToolEnabled | ( | int | toolId | ) | const [virtual] |
Called to determine whether a tool is enabled (responds to user input).
toolId | ID of the tool in question, as passed to AddTool(). |
virtual wxString wxToolBar::GetToolLongHelp | ( | int | toolId | ) | const [virtual] |
Returns the long help for the given tool.
toolId | ID of the tool in question, as passed to AddTool(). |
virtual int wxToolBar::GetToolPacking | ( | ) | const [virtual] |
Returns the value used for packing tools.
virtual int wxToolBar::GetToolPos | ( | int | toolId | ) | const [virtual] |
Returns the tool position in the toolbar, or wxNOT_FOUND
if the tool is not found.
toolId | ID of the tool in question, as passed to AddTool(). |
size_t wxToolBar::GetToolsCount | ( | ) | const |
Returns the number of tools in the toolbar.
virtual int wxToolBar::GetToolSeparation | ( | ) | const [virtual] |
Returns the default separator size.
virtual wxString wxToolBar::GetToolShortHelp | ( | int | toolId | ) | const [virtual] |
Returns the short help for the given tool.
toolId | ID of the tool in question, as passed to AddTool(). |
virtual wxSize wxToolBar::GetToolSize | ( | ) | const [virtual] |
Returns the size of a whole button, which is usually larger than a tool bitmap because of added 3D effects.
virtual bool wxToolBar::GetToolState | ( | int | toolId | ) | const [virtual] |
Gets the on/off state of a toggle tool.
toolId | ID of the tool in question, as passed to AddTool(). |
virtual wxToolBarToolBase* wxToolBar::InsertControl | ( | size_t | pos, |
wxControl * | control, | ||
const wxString & | label = wxEmptyString |
||
) | [virtual] |
Inserts the control into the toolbar at the given position.
You must call Realize() for the change to take place.
virtual wxToolBarToolBase* wxToolBar::InsertSeparator | ( | size_t | pos | ) | [virtual] |
Inserts the separator into the toolbar at the given position.
You must call Realize() for the change to take place.
wxToolBarToolBase* wxToolBar::InsertStretchableSpace | ( | size_t | pos | ) |
Inserts a stretchable space at the given position.
See AddStretchableSpace() for details about stretchable spaces.
wxToolBarToolBase* wxToolBar::InsertTool | ( | size_t | pos, |
int | toolId, | ||
const wxString & | label, | ||
const wxBitmap & | bitmap, | ||
const wxBitmap & | bmpDisabled = wxNullBitmap , |
||
wxItemKind | kind = wxITEM_NORMAL , |
||
const wxString & | shortHelp = wxEmptyString , |
||
const wxString & | longHelp = wxEmptyString , |
||
wxObject * | clientData = NULL |
||
) |
Inserts the tool with the specified attributes into the toolbar at the given position.
You must call Realize() for the change to take place.
wxToolBarToolBase* wxToolBar::InsertTool | ( | size_t | pos, |
wxToolBarToolBase * | tool | ||
) |
Inserts the tool with the specified attributes into the toolbar at the given position.
You must call Realize() for the change to take place.
virtual bool wxToolBar::OnLeftClick | ( | int | toolId, |
bool | toggleDown | ||
) | [virtual] |
Called when the user clicks on a tool with the left mouse button.
This is the old way of detecting tool clicks; although it will still work, you should use the EVT_MENU() or EVT_TOOL() macro instead.
toolId | The identifier passed to AddTool(). |
toggleDown | true if the tool is a toggle and the toggle is down, otherwise is false. |
virtual void wxToolBar::OnMouseEnter | ( | int | toolId | ) | [virtual] |
This is called when the mouse cursor moves into a tool or out of the toolbar.
This is the old way of detecting mouse enter events; although it will still work, you should use the EVT_TOOL_ENTER() macro instead.
toolId | Greater than -1 if the mouse cursor has moved into the tool, or -1 if the mouse cursor has moved. The programmer can override this to provide extra information about the tool, such as a short description on the status line. |
virtual void wxToolBar::OnRightClick | ( | int | toolId, |
long | x, | ||
long | y | ||
) | [virtual] |
Called when the user clicks on a tool with the right mouse button. The programmer should override this function to detect right tool clicks.
toolId | The identifier passed to AddTool(). |
x | The x position of the mouse cursor. |
y | The y position of the mouse cursor. |
virtual bool wxToolBar::Realize | ( | ) | [virtual] |
This function should be called after you have added tools.
virtual wxToolBarToolBase* wxToolBar::RemoveTool | ( | int | id | ) | [virtual] |
Removes the given tool from the toolbar but doesn't delete it.
This allows to insert/add this tool back to this (or another) toolbar later.
void wxToolBar::SetBitmapResource | ( | int | resourceId | ) |
Sets the bitmap resource identifier for specifying tool bitmaps as indices into a custom bitmap.
This is a Windows CE-specific method not available in the other ports.
bool wxToolBar::SetDropdownMenu | ( | int | id, |
wxMenu * | menu | ||
) |
Sets the dropdown menu for the tool given by its id.
The tool itself will delete the menu when it's no longer needed. Only supported under GTK+ und MSW.
If you define a EVT_TOOL_DROPDOWN() handler in your program, you must call wxEvent::Skip() from it or the menu won't be displayed.
void wxToolBar::SetMargins | ( | const wxSize & | size | ) |
Set the margins for the toolbar.
size | Margin size. |
virtual void wxToolBar::SetMargins | ( | int | x, |
int | y | ||
) | [virtual] |
Set the values to be used as margins for the toolbar.
x | Left margin, right margin and inter-tool separation value. |
y | Top margin, bottom margin and inter-tool separation value. |
virtual void wxToolBar::SetToolBitmapSize | ( | const wxSize & | size | ) | [virtual] |
Sets the default size of each tool bitmap.
The default bitmap size is 16 by 15 pixels.
size | The size of the bitmaps in the toolbar. |
virtual void wxToolBar::SetToolClientData | ( | int | id, |
wxObject * | clientData | ||
) | [virtual] |
Sets the client data associated with the tool.
id | ID of the tool in question, as passed to AddTool(). |
virtual void wxToolBar::SetToolDisabledBitmap | ( | int | id, |
const wxBitmap & | bitmap | ||
) | [virtual] |
Sets the bitmap to be used by the tool with the given ID when the tool is in a disabled state.
This can only be used on Button tools, not controls.
id | ID of the tool in question, as passed to AddTool(). |
virtual void wxToolBar::SetToolLongHelp | ( | int | toolId, |
const wxString & | helpString | ||
) | [virtual] |
Sets the long help for the given tool.
toolId | ID of the tool in question, as passed to AddTool(). |
helpString | A string for the long help. |
virtual void wxToolBar::SetToolNormalBitmap | ( | int | id, |
const wxBitmap & | bitmap | ||
) | [virtual] |
Sets the bitmap to be used by the tool with the given ID.
This can only be used on Button tools, not controls.
id | ID of the tool in question, as passed to AddTool(). |
virtual void wxToolBar::SetToolPacking | ( | int | packing | ) | [virtual] |
Sets the value used for spacing tools.
The default value is 1.
packing | The value for packing. |
virtual void wxToolBar::SetToolSeparation | ( | int | separation | ) | [virtual] |
Sets the default separator size.
The default value is 5.
separation | The separator size. |
virtual void wxToolBar::SetToolShortHelp | ( | int | toolId, |
const wxString & | helpString | ||
) | [virtual] |
Sets the short help for the given tool.
toolId | ID of the tool in question, as passed to AddTool(). |
helpString | The string for the short help. |
virtual void wxToolBar::ToggleTool | ( | int | toolId, |
bool | toggle | ||
) | [virtual] |
Toggles a tool on or off.
This does not cause any event to get emitted.
toolId | ID of the tool in question, as passed to AddTool(). |
toggle | If true, toggles the tool on, otherwise toggles it off. |