summaryrefslogtreecommitdiff
path: root/FL/Fl_Menu_.H
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2016-07-09 17:14:22 +0000
committerAlbrecht Schlosser <albrechts.fltk@online.de>2016-07-09 17:14:22 +0000
commitd1b9d1032f8ec819ade30643f21f44fe81bd47e5 (patch)
tree982e38fdb1ef7628c26afa2df9c24c79cefb91c3 /FL/Fl_Menu_.H
parent05d60bd29d05289609c9a0f14c47e36c31ac61ae (diff)
Documentation fixes and clarifications.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11802 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Menu_.H')
-rw-r--r--FL/Fl_Menu_.H38
1 files changed, 19 insertions, 19 deletions
diff --git a/FL/Fl_Menu_.H b/FL/Fl_Menu_.H
index c609e7a8d..239258669 100644
--- a/FL/Fl_Menu_.H
+++ b/FL/Fl_Menu_.H
@@ -3,7 +3,7 @@
//
// Menu base class header file for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2010 by Bill Spitzak and others.
+// Copyright 1998-2016 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
@@ -29,24 +29,24 @@
/**
Base class of all widgets that have a menu in FLTK.
- Currently FLTK provides you with
- Fl_Menu_Button, Fl_Menu_Bar, and Fl_Choice.
-
- <P>The class contains a pointer to an array of structures of type Fl_Menu_Item. The
- array may either be supplied directly by the user program, or it may
+
+ Currently FLTK provides you with Fl_Menu_Button, Fl_Menu_Bar, and Fl_Choice.
+
+ The class contains a pointer to an array of structures of type Fl_Menu_Item.
+ The array may either be supplied directly by the user program, or it may
be "private": a dynamically allocated array managed by the Fl_Menu_.
When the user clicks a menu item, value() is set to that item
and then:
- - If the Fl_Menu_Item has a callback set, that callback
- is invoked with any userdata configured for it.
- (The Fl_Menu_ widget's callback is NOT invoked.
+ - If the Fl_Menu_Item has a callback set, that callback
+ is invoked with any userdata configured for it.
+ (The Fl_Menu_ widget's callback is NOT invoked.)
- - For any Fl_Menu_Items that \b don't have a callback set,
- the Fl_Menu_ widget's callback is invoked with any userdata
- configured for it. The callback can determine which item
- was picked using value(), mvalue(), item_pathname(), etc.
+ - For any Fl_Menu_Items that \b don't have a callback set,
+ the Fl_Menu_ widget's callback is invoked with any userdata
+ configured for it. The callback can determine which item
+ was picked using value(), mvalue(), item_pathname(), etc.
*/
class FL_EXPORT Fl_Menu_ : public Fl_Widget {
@@ -106,12 +106,12 @@ public:
}
\endcode
- */
+ */
const Fl_Menu_Item *menu() const {return menu_;}
void menu(const Fl_Menu_Item *m);
void copy(const Fl_Menu_Item *m, void* user_data = 0);
int insert(int index, const char*, int shortcut, Fl_Callback*, void* = 0, int = 0);
- int add(const char*, int shortcut, Fl_Callback*, void* = 0, int = 0);
+ int add(const char*, int shortcut, Fl_Callback*, void* = 0, int = 0); // see src/Fl_Menu_add.cxx
/** See int Fl_Menu_::add(const char* label, int shortcut, Fl_Callback*, void *user_data=0, int flags=0) */
int add(const char* a, const char* b, Fl_Callback* c, void* d = 0, int e = 0) {
return add(a,fl_old_shortcut(b),c,d,e);
@@ -127,7 +127,7 @@ public:
int clear_submenu(int index);
void replace(int,const char *);
void remove(int);
- /** Changes the shortcut of item i to n. */
+ /** Changes the shortcut of item \p i to \p s. */
void shortcut(int i, int s) {menu_[i].shortcut(s);}
/** Sets the flags of item i. For a list of the flags, see Fl_Menu_Item. */
void mode(int i,int fl) {menu_[i].flags = fl;}
@@ -166,9 +166,9 @@ public:
/**
This box type is used to surround the currently-selected items in the
- menus. If this is FL_NO_BOX then it acts like
- FL_THIN_UP_BOX and selection_color() acts like
- FL_WHITE, for back compatibility.
+ menus. If this is FL_NO_BOX then it acts like
+ FL_THIN_UP_BOX and selection_color() acts like
+ FL_WHITE, for back compatibility.
*/
Fl_Boxtype down_box() const {return (Fl_Boxtype)down_box_;}
/** See Fl_Boxtype Fl_Menu_::down_box() const */