/**
Construct a ribbon tool bar with the given parameters.
+
@param parent
Parent window for the tool bar (typically a wxRibbonPanel).
+ @param id
+ An identifier for the toolbar. @c wxID_ANY is taken to mean a default.
@param pos
Initial position of the tool bar.
@param size
@return An opaque pointer which can be used only with other tool bar
methods.
- @see AddDropdownTool()
- @see AddHybridTool()
- @saa AddSeparator()
+ @see AddDropdownTool(), AddHybridTool(), AddSeparator()
*/
virtual wxRibbonToolBarToolBase* AddTool(
int tool_id,
Add a separator to the tool bar.
Separators are used to separate tools into groups. As such, a separator
- is not explicity drawn, but is visually seen as the gap between tool
+ is not explicitly drawn, but is visually seen as the gap between tool
groups.
*/
virtual wxRibbonToolBarToolBase* AddSeparator();
Set the number of rows to distribute tool groups over.
Tool groups can be distributed over a variable number of rows. The way
- in which groups are assigned to rows is not specificed, and the order
+ in which groups are assigned to rows is not specified, and the order
of groups may change, but they will be distributed in such a way as to
minimise the overall size of the tool bar.