summaryrefslogtreecommitdiff
path: root/FL/Fl_Menu_Item.H
diff options
context:
space:
mode:
authorFabien Costantini <fabien@onepost.net>2008-09-17 15:44:43 +0000
committerFabien Costantini <fabien@onepost.net>2008-09-17 15:44:43 +0000
commit3787be9b6e1a382a4482595ed9e1b17ad21e03fa (patch)
tree226dd3d58511bfff50c964031510d08d76e2c1ce /FL/Fl_Menu_Item.H
parentb4a50239496145b3f07a6763b7092d477280b5cf (diff)
Doxygen documentation: replace all occurences in comments of &quot; by a quote char. Temporarily set warn_if_undocumented to NO until we correct more severe messages.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6283 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Menu_Item.H')
-rw-r--r--FL/Fl_Menu_Item.H40
1 files changed, 20 insertions, 20 deletions
diff --git a/FL/Fl_Menu_Item.H b/FL/Fl_Menu_Item.H
index 42cb96ee8..8b8fdcabd 100644
--- a/FL/Fl_Menu_Item.H
+++ b/FL/Fl_Menu_Item.H
@@ -82,22 +82,22 @@ class Fl_Menu_;
Typically menu items are statically defined; for example:
\code
Fl_Menu_Item popup[] = {
- {&quot;&alpha&quot;, FL_ALT+'a', the_cb, (void*)1},
- {&quot;&beta&quot;, FL_ALT+'b', the_cb, (void*)2},
- {&quot;gamma&quot;, FL_ALT+'c', the_cb, (void*)3, FL_MENU_DIVIDER},
- {&quot;&strange&quot;, 0, strange_cb},
- {&quot;&charm&quot;, 0, charm_cb},
- {&quot;&truth&quot;, 0, truth_cb},
- {&quot;b&eauty&quot;, 0, beauty_cb},
- {&quot;sub&menu&quot;, 0, 0, 0, FL_SUBMENU},
- {&quot;one&quot;},
- {&quot;two&quot;},
- {&quot;three&quot;},
+ {"&alpha", FL_ALT+'a', the_cb, (void*)1},
+ {"&beta", FL_ALT+'b', the_cb, (void*)2},
+ {"gamma", FL_ALT+'c', the_cb, (void*)3, FL_MENU_DIVIDER},
+ {"&strange", 0, strange_cb},
+ {"&charm", 0, charm_cb},
+ {"&truth", 0, truth_cb},
+ {"b&eauty", 0, beauty_cb},
+ {"sub&menu", 0, 0, 0, FL_SUBMENU},
+ {"one"},
+ {"two"},
+ {"three"},
{0},
- {&quot;inactive&quot;, FL_ALT+'i', 0, 0, FL_MENU_INACTIVE|FL_MENU_DIVIDER},
- {&quot;invisible&quot;,FL_ALT+'i', 0, 0, FL_MENU_INVISIBLE},
- {&quot;check&quot;, FL_ALT+'i', 0, 0, FL_MENU_TOGGLE|FL_MENU_VALUE},
- {&quot;box&quot;, FL_ALT+'i', 0, 0, FL_MENU_TOGGLE},
+ {"inactive", FL_ALT+'i', 0, 0, FL_MENU_INACTIVE|FL_MENU_DIVIDER},
+ {"invisible",FL_ALT+'i', 0, 0, FL_MENU_INVISIBLE},
+ {"check", FL_ALT+'i', 0, 0, FL_MENU_TOGGLE|FL_MENU_VALUE},
+ {"box", FL_ALT+'i', 0, 0, FL_MENU_TOGGLE},
{0}};
\endcode
produces:
@@ -143,7 +143,7 @@ struct FL_EXPORT Fl_Menu_Item {
This is the title of the item. A NULL here indicates the end
of the menu (or of a submenu). A '&' in the item will print an
underscore under the next letter, and if the menu is popped up that
- letter will be a &quot;shortcut&quot; to pick that item. To get a
+ letter will be a "shortcut" to pick that item. To get a
real '&' put two
in a row.
*/
@@ -247,7 +247,7 @@ struct FL_EXPORT Fl_Menu_Item {
<P>The shift flags can be any set of values accepted by
Fl::event_state(). If the bit is on that shift key must
be pushed. Meta, Alt, Ctrl, and Shift must be off if they are not in
- the shift flags (zero for the other bits indicates a &quot;don't care&quot;
+ the shift flags (zero for the other bits indicates a "don't care"
setting).
*/
void shortcut(int s) {shortcut_ = s;}
@@ -267,7 +267,7 @@ struct FL_EXPORT Fl_Menu_Item {
int checkbox() const {return flags&FL_MENU_TOGGLE;}
/**
Returns true if this item is a radio item. When a radio button is
- selected all &quot;adjacent&quot; radio buttons are turned off. A set of radio
+ selected all "adjacent" radio buttons are turned off. A set of radio
items is delimited by an item that has radio() false, or by an
item with FL_MENU_DIVIDER turned on.
*/
@@ -275,12 +275,12 @@ struct FL_EXPORT Fl_Menu_Item {
/** Returns the current value of the check or radio item. */
int value() const {return flags&FL_MENU_VALUE;}
/**
- Turns the check or radio item &quot;on&quot; for the menu item. Note that this
+ Turns the check or radio item "on" for the menu item. Note that this
does not turn off any adjacent radio items like set_only()
does.
*/
void set() {flags |= FL_MENU_VALUE;}
- /** Turns the check or radio item &quot;off&quot; for the menu item. */
+ /** Turns the check or radio item "off" for the menu item. */
void clear() {flags &= ~FL_MENU_VALUE;}
void setonly();
/** Gets the visibility of an item. */