]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/ribbon/toolbar.h
Split wxTextCompleter into a base class and wxTextCompleterSimple.
[wxWidgets.git] / interface / wx / ribbon / toolbar.h
index 66ea8ec1bf47f5471d8b2c13d2cc49cfde86dc0a..1a35d7e3d60430f3808de90e84b10b49a7c0eaca 100644 (file)
@@ -39,8 +39,11 @@ public:
 
     /**
         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
@@ -121,9 +124,7 @@ public:
         @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,
@@ -137,7 +138,7 @@ public:
         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();
@@ -146,7 +147,7 @@ public:
         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.