1998-10-20 01:39:29 +04:00
|
|
|
//
|
2005-02-25 00:55:12 +03:00
|
|
|
// "$Id$"
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|
|
|
|
// Menu item header file for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2009-01-01 19:11:32 +03:00
|
|
|
// Copyright 1998-2009 by Bill Spitzak and others.
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Library General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Library General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Library General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
// USA.
|
|
|
|
//
|
2005-04-16 04:13:17 +04:00
|
|
|
// Please report all bugs and problems on the following page:
|
|
|
|
//
|
|
|
|
// http://www.fltk.org/str.php
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
#ifndef Fl_Menu_Item_H
|
|
|
|
#define Fl_Menu_Item_H
|
|
|
|
|
2002-08-01 06:02:03 +04:00
|
|
|
# include "Fl_Widget.H"
|
|
|
|
# include "Fl_Image.H"
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2005-03-21 14:38:52 +03:00
|
|
|
# if defined(__APPLE__) && defined(check)
|
2002-08-01 06:02:03 +04:00
|
|
|
# undef check
|
|
|
|
# endif
|
2002-07-17 10:09:26 +04:00
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
enum { // values for flags:
|
2009-09-09 10:04:36 +04:00
|
|
|
FL_MENU_INACTIVE = 1, ///< Deactivate menu item (gray out)
|
|
|
|
FL_MENU_TOGGLE= 2, ///< Item is a checkbox toggle (shows checkbox for on/off state)
|
|
|
|
FL_MENU_VALUE = 4, ///< The on/off state for checkbox/radio buttons (if set, state is 'on')
|
|
|
|
FL_MENU_RADIO = 8, ///< Item is a radio button (one checkbox of many can be on)
|
|
|
|
FL_MENU_INVISIBLE = 0x10, ///< Item will not show up (shortcut will work)
|
|
|
|
FL_SUBMENU_POINTER = 0x20, ///< Indicates user_data() is a pointer to another menu array
|
|
|
|
FL_SUBMENU = 0x40, ///< This item is a submenu to other items
|
|
|
|
FL_MENU_DIVIDER = 0x80, ///< Creates divider line below this item. Also ends a group of radio buttons.
|
|
|
|
FL_MENU_HORIZONTAL = 0x100 ///< ??? -- reserved
|
1998-10-06 22:21:25 +04:00
|
|
|
};
|
|
|
|
|
2009-09-18 02:12:24 +04:00
|
|
|
extern FL_EXPORT Fl_Shortcut fl_old_shortcut(const char*);
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
class Fl_Menu_;
|
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
|
|
|
The Fl_Menu_Item structure defines a single menu item that
|
|
|
|
is used by the Fl_Menu_ class.
|
2008-09-15 23:21:20 +04:00
|
|
|
\code
|
2008-09-15 04:27:28 +04:00
|
|
|
struct Fl_Menu_Item {
|
|
|
|
const char* text; // label()
|
|
|
|
ulong shortcut_;
|
|
|
|
Fl_Callback* callback_;
|
|
|
|
void* user_data_;
|
|
|
|
int flags;
|
|
|
|
uchar labeltype_;
|
|
|
|
uchar labelfont_;
|
|
|
|
uchar labelsize_;
|
|
|
|
uchar labelcolor_;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum { // values for flags:
|
2009-09-09 10:04:36 +04:00
|
|
|
FL_MENU_INACTIVE = 1, // Deactivate menu item (gray out)
|
|
|
|
FL_MENU_TOGGLE = 2, // Item is a checkbox toggle (shows checkbox for on/off state)
|
|
|
|
FL_MENU_VALUE = 4, // The on/off state for checkbox/radio buttons (if set, state is 'on')
|
|
|
|
FL_MENU_RADIO = 8, // Item is a radio button (one checkbox of many can be on)
|
|
|
|
FL_MENU_INVISIBLE = 0x10, // Item will not show up (shortcut will work)
|
|
|
|
FL_SUBMENU_POINTER = 0x20, // Indicates user_data() is a pointer to another menu array
|
|
|
|
FL_SUBMENU = 0x40, // This item is a submenu to other items
|
|
|
|
FL_MENU_DIVIDER = 0x80, // Creates divider line below this item. Also ends a group of radio buttons.
|
|
|
|
FL_MENU_HORIZONTAL = 0x100 // ??? -- reserved
|
2008-09-15 04:27:28 +04:00
|
|
|
};
|
2008-09-15 23:21:20 +04:00
|
|
|
\endcode
|
2008-09-15 04:27:28 +04:00
|
|
|
Typically menu items are statically defined; for example:
|
2008-09-15 23:21:20 +04:00
|
|
|
\code
|
2008-09-15 04:27:28 +04:00
|
|
|
Fl_Menu_Item popup[] = {
|
2008-09-17 19:44:43 +04:00
|
|
|
{"&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"},
|
2008-09-15 04:27:28 +04:00
|
|
|
{0},
|
2008-09-17 19:44:43 +04:00
|
|
|
{"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},
|
2008-09-15 04:27:28 +04:00
|
|
|
{0}};
|
2008-09-15 23:21:20 +04:00
|
|
|
\endcode
|
2008-09-15 04:27:28 +04:00
|
|
|
produces:
|
2008-12-13 21:31:54 +03:00
|
|
|
|
|
|
|
\image html menu.gif
|
2008-10-15 15:27:29 +04:00
|
|
|
\image latex menu.eps "menu" width=10cm
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
A submenu title is identified by the bit FL_SUBMENU in the
|
|
|
|
flags field, and ends with a label() that is NULL.
|
|
|
|
You can nest menus to any depth. A pointer to the first item in the
|
|
|
|
submenu can be treated as an Fl_Menu array itself. It is also
|
2008-12-13 21:31:54 +03:00
|
|
|
possible to make separate submenu arrays with FL_SUBMENU_POINTER flags.
|
|
|
|
|
|
|
|
You should use the method functions to access structure members and
|
2008-09-15 04:27:28 +04:00
|
|
|
not access them directly to avoid compatibility problems with future
|
|
|
|
releases of FLTK.
|
|
|
|
*/
|
2002-08-14 20:49:38 +04:00
|
|
|
struct FL_EXPORT Fl_Menu_Item {
|
2008-09-18 23:09:34 +04:00
|
|
|
const char *text; ///< menu item text, returned by label()
|
2008-12-13 21:31:54 +03:00
|
|
|
int shortcut_; ///< menu item shortcut
|
|
|
|
Fl_Callback *callback_; ///< menu item callback
|
|
|
|
void *user_data_; ///< menu item user_data for 3rd party apps
|
|
|
|
int flags; ///< menu item flags like FL_MENU_TOGGLE, FL_MENU_RADIO
|
|
|
|
uchar labeltype_; ///< how the menu item text looks like
|
|
|
|
Fl_Font labelfont_; ///< which font for this menu item text
|
|
|
|
Fl_Fontsize labelsize_; ///< size of menu item text
|
2009-09-27 15:06:56 +04:00
|
|
|
Fl_Color labelcolor_; ///< menu item text color
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
// advance N items, skipping submenus:
|
2002-08-14 20:49:38 +04:00
|
|
|
const Fl_Menu_Item *next(int=1) const;
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
2008-12-13 21:31:54 +03:00
|
|
|
Advances a pointer by n items through a menu array, skipping
|
|
|
|
the contents of submenus and invisible items. There are two calls so
|
2008-09-15 04:27:28 +04:00
|
|
|
that you can advance through const and non-const data.
|
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
Fl_Menu_Item *next(int i=1) {
|
|
|
|
return (Fl_Menu_Item*)(((const Fl_Menu_Item*)this)->next(i));}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/** Returns the first menu item, same as next(0). */
|
2004-06-07 23:23:12 +04:00
|
|
|
const Fl_Menu_Item *first() const { return next(0); }
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/** Returns the first menu item, same as next(0). */
|
2004-06-07 23:23:12 +04:00
|
|
|
Fl_Menu_Item *first() { return next(0); }
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
// methods on menu items:
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
2008-12-13 21:31:54 +03:00
|
|
|
Returns 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 "shortcut" to pick
|
|
|
|
that item. To get a real '&' put two in a row.
|
2008-09-15 04:27:28 +04:00
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
const char* label() const {return text;}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/** See const char* Fl_Menu_Item::label() const */
|
1998-10-06 22:21:25 +04:00
|
|
|
void label(const char* a) {text=a;}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/** See const char* Fl_Menu_Item::label() const */
|
1998-10-06 22:21:25 +04:00
|
|
|
void label(Fl_Labeltype a,const char* b) {labeltype_ = a; text = b;}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
|
|
|
A labeltype identifies a routine that draws the label of the
|
|
|
|
widget. This can be used for special effects such as emboss, or to use
|
|
|
|
the label() pointer as another form of data such as a bitmap.
|
|
|
|
The value FL_NORMAL_LABEL prints the label as text.
|
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
Fl_Labeltype labeltype() const {return (Fl_Labeltype)labeltype_;}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
|
|
|
A labeltype identifies a routine that draws the label of the
|
|
|
|
widget. This can be used for special effects such as emboss, or to use
|
|
|
|
the label() pointer as another form of data such as a bitmap.
|
|
|
|
The value FL_NORMAL_LABEL prints the label as text.
|
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
void labeltype(Fl_Labeltype a) {labeltype_ = a;}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
|
|
|
This color is passed to the labeltype routine, and is typically the
|
|
|
|
color of the label text. This defaults to FL_BLACK. If this
|
|
|
|
color is not black fltk will <I>not</I> use overlay bitplanes to draw
|
|
|
|
the menu - this is so that images put in the menu draw correctly.
|
|
|
|
*/
|
2009-09-27 15:06:56 +04:00
|
|
|
Fl_Color labelcolor() const {return labelcolor_;}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/** See Fl_Color Fl_Menu_Item::labelcolor() const */
|
2009-09-27 15:06:56 +04:00
|
|
|
void labelcolor(Fl_Color a) {labelcolor_ = a;}
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
2008-12-13 21:31:54 +03:00
|
|
|
Fonts are identified by small 8-bit indexes into a table. See the
|
2008-09-15 04:27:28 +04:00
|
|
|
enumeration list for predefined fonts. The default value is a
|
2008-12-13 21:31:54 +03:00
|
|
|
Helvetica font. The function Fl::set_font() can define new fonts.
|
2008-09-15 04:27:28 +04:00
|
|
|
*/
|
2008-04-23 23:09:28 +04:00
|
|
|
Fl_Font labelfont() const {return labelfont_;}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
2008-12-13 21:31:54 +03:00
|
|
|
Fonts are identified by small 8-bit indexes into a table. See the
|
2008-09-15 04:27:28 +04:00
|
|
|
enumeration list for predefined fonts. The default value is a
|
2008-12-13 21:31:54 +03:00
|
|
|
Helvetica font. The function Fl::set_font() can define new fonts.
|
2008-09-15 04:27:28 +04:00
|
|
|
*/
|
2008-04-23 23:09:28 +04:00
|
|
|
void labelfont(Fl_Font a) {labelfont_ = a;}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/** Gets the label font pixel size/height.*/
|
2008-08-16 01:11:21 +04:00
|
|
|
Fl_Fontsize labelsize() const {return labelsize_;}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/** Sets the label font pixel size/height.*/
|
2008-08-16 01:11:21 +04:00
|
|
|
void labelsize(Fl_Fontsize a) {labelsize_ = a;}
|
2008-09-15 04:27:28 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
Each item has space for a callback function and an argument for that
|
2008-12-13 21:31:54 +03:00
|
|
|
function. Due to back compatibility, the Fl_Menu_Item itself
|
2008-09-15 04:27:28 +04:00
|
|
|
is not passed to the callback, instead you have to get it by calling
|
2008-12-13 21:31:54 +03:00
|
|
|
((Fl_Menu_*)w)->mvalue() where w is the widget argument.
|
2008-09-15 04:27:28 +04:00
|
|
|
*/
|
1999-03-18 23:04:13 +03:00
|
|
|
Fl_Callback_p callback() const {return callback_;}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/** See Fl_Callback_p Fl_MenuItem::callback() const */
|
1998-10-06 22:21:25 +04:00
|
|
|
void callback(Fl_Callback* c, void* p) {callback_=c; user_data_=p;}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/** See Fl_Callback_p Fl_MenuItem::callback() const */
|
1998-10-06 22:21:25 +04:00
|
|
|
void callback(Fl_Callback* c) {callback_=c;}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/** See Fl_Callback_p Fl_MenuItem::callback() const */
|
1998-10-06 22:21:25 +04:00
|
|
|
void callback(Fl_Callback0*c) {callback_=(Fl_Callback*)c;}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/** See Fl_Callback_p Fl_MenuItem::callback() const */
|
1998-10-06 22:21:25 +04:00
|
|
|
void callback(Fl_Callback1*c, long p=0) {callback_=(Fl_Callback*)c; user_data_=(void*)p;}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
|
|
|
Get or set the user_data argument that is sent to the
|
|
|
|
callback function.
|
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
void* user_data() const {return user_data_;}
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
|
|
|
Get or set the user_data argument that is sent to the
|
|
|
|
callback function.
|
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
void user_data(void* v) {user_data_ = v;}
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
|
|
|
For convenience you can also define the callback as taking a long
|
|
|
|
argument. This is implemented by casting this to a Fl_Callback
|
|
|
|
and casting the long to a void* and may not be
|
|
|
|
portable to some machines.
|
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
long argument() const {return (long)user_data_;}
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
|
|
|
For convenience you can also define the callback as taking a long
|
|
|
|
argument. This is implemented by casting this to a Fl_Callback
|
|
|
|
and casting the long to a void* and may not be
|
|
|
|
portable to some machines.
|
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
void argument(long v) {user_data_ = (void*)v;}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/** Gets what key combination shortcut will trigger the menu item. */
|
1998-10-06 22:21:25 +04:00
|
|
|
int shortcut() const {return shortcut_;}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
|
|
|
Sets exactly what key combination will trigger the menu item. The
|
|
|
|
value is a logical 'or' of a key and a set of shift flags, for instance
|
|
|
|
FL_ALT+'a' or FL_ALT+FL_F+10 or just 'a'. A value of
|
|
|
|
zero disables the shortcut.
|
2008-12-13 21:31:54 +03:00
|
|
|
|
|
|
|
The key can be any value returned by Fl::event_key(), but will usually
|
|
|
|
be an ASCII letter. Use a lower-case letter unless you require the shift
|
|
|
|
key to be held down.
|
|
|
|
|
|
|
|
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 "don't care" setting).
|
2008-09-15 04:27:28 +04:00
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
void shortcut(int s) {shortcut_ = s;}
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
|
|
|
Returns true if either FL_SUBMENU or FL_SUBMENU_POINTER
|
|
|
|
is on in the flags. FL_SUBMENU indicates an embedded submenu
|
|
|
|
that goes from the next item through the next one with a NULL
|
|
|
|
label(). FL_SUBMENU_POINTER indicates that user_data()
|
|
|
|
is a pointer to another menu array.
|
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
int submenu() const {return flags&(FL_SUBMENU|FL_SUBMENU_POINTER);}
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
|
|
|
Returns true if a checkbox will be drawn next to this item. This is
|
2008-12-13 21:31:54 +03:00
|
|
|
true if FL_MENU_TOGGLE or FL_MENU_RADIO is set in the flags.
|
2008-09-15 04:27:28 +04:00
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
int checkbox() const {return flags&FL_MENU_TOGGLE;}
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
|
|
|
Returns true if this item is a radio item. When a radio button is
|
2008-09-17 19:44:43 +04:00
|
|
|
selected all "adjacent" radio buttons are turned off. A set of radio
|
2008-09-15 04:27:28 +04:00
|
|
|
items is delimited by an item that has radio() false, or by an
|
|
|
|
item with FL_MENU_DIVIDER turned on.
|
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
int radio() const {return flags&FL_MENU_RADIO;}
|
2008-12-13 21:31:54 +03:00
|
|
|
/** Returns the current value of the check or radio item. */
|
1998-10-06 22:21:25 +04:00
|
|
|
int value() const {return flags&FL_MENU_VALUE;}
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
2008-09-17 19:44:43 +04:00
|
|
|
Turns the check or radio item "on" for the menu item. Note that this
|
2008-12-13 21:31:54 +03:00
|
|
|
does not turn off any adjacent radio items like set_only() does.
|
2008-09-15 04:27:28 +04:00
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
void set() {flags |= FL_MENU_VALUE;}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
|
|
|
/** Turns the check or radio item "off" for the menu item. */
|
1998-10-06 22:21:25 +04:00
|
|
|
void clear() {flags &= ~FL_MENU_VALUE;}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2002-08-14 20:49:38 +04:00
|
|
|
void setonly();
|
2008-12-13 21:31:54 +03:00
|
|
|
|
|
|
|
/** Gets the visibility of an item. */
|
1998-10-06 22:21:25 +04:00
|
|
|
int visible() const {return !(flags&FL_MENU_INVISIBLE);}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
|
|
|
/** Makes an item visible in the menu. */
|
1998-10-06 22:21:25 +04:00
|
|
|
void show() {flags &= ~FL_MENU_INVISIBLE;}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
|
|
|
/** Hides an item in the menu. */
|
1998-10-06 22:21:25 +04:00
|
|
|
void hide() {flags |= FL_MENU_INVISIBLE;}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
|
|
|
/** Gets whether or not the item can be picked. */
|
1998-10-06 22:21:25 +04:00
|
|
|
int active() const {return !(flags&FL_MENU_INACTIVE);}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
|
|
|
/** Allows a menu item to be picked. */
|
1998-10-06 22:21:25 +04:00
|
|
|
void activate() {flags &= ~FL_MENU_INACTIVE;}
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
|
|
|
Prevents a menu item from being picked. Note that this will also cause
|
|
|
|
the menu item to appear grayed-out.
|
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
void deactivate() {flags |= FL_MENU_INACTIVE;}
|
2008-09-15 04:27:28 +04:00
|
|
|
/** Returns non 0 if FL_INACTIVE and FL_INVISIBLE are cleared, 0 otherwise. */
|
|
|
|
int activevisible() const {return !(flags & (FL_MENU_INACTIVE|FL_MENU_INVISIBLE));}
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2002-08-01 06:02:03 +04:00
|
|
|
// compatibility for FLUID so it can set the image of a menu item...
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/** compatibility api for FLUID, same as a->label(this) */
|
2002-08-01 06:02:03 +04:00
|
|
|
void image(Fl_Image* a) {a->label(this);}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/** compatibility api for FLUID, same as a.label(this) */
|
2002-08-01 06:02:03 +04:00
|
|
|
void image(Fl_Image& a) {a.label(this);}
|
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
// used by menubar:
|
2002-08-14 20:49:38 +04:00
|
|
|
int measure(int* h, const Fl_Menu_*) const;
|
|
|
|
void draw(int x, int y, int w, int h, const Fl_Menu_*, int t=0) const;
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
// popup menus without using an Fl_Menu_ widget:
|
2002-08-14 20:49:38 +04:00
|
|
|
const Fl_Menu_Item* popup(
|
1998-10-06 22:21:25 +04:00
|
|
|
int X, int Y,
|
|
|
|
const char *title = 0,
|
|
|
|
const Fl_Menu_Item* picked=0,
|
|
|
|
const Fl_Menu_* = 0) const;
|
2002-08-14 20:49:38 +04:00
|
|
|
const Fl_Menu_Item* pulldown(
|
1998-10-06 22:21:25 +04:00
|
|
|
int X, int Y, int W, int H,
|
|
|
|
const Fl_Menu_Item* picked = 0,
|
|
|
|
const Fl_Menu_* = 0,
|
|
|
|
const Fl_Menu_Item* title = 0,
|
|
|
|
int menubar=0) const;
|
2002-08-14 20:49:38 +04:00
|
|
|
const Fl_Menu_Item* test_shortcut() const;
|
2010-11-11 12:12:05 +03:00
|
|
|
const Fl_Menu_Item* find_shortcut(int *ip=0, const bool require_alt = false) const;
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
2008-12-13 21:31:54 +03:00
|
|
|
Calls the Fl_Menu_Item item's callback, and provides the
|
|
|
|
Fl_Widget argument (and optionally overrides the user_data()
|
|
|
|
argument). You must first check that callback() is non-zero
|
2008-09-15 04:27:28 +04:00
|
|
|
before calling this.
|
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
void do_callback(Fl_Widget* o) const {callback_(o, user_data_);}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
2008-12-13 21:31:54 +03:00
|
|
|
Calls the Fl_Menu_Item item's callback, and provides the
|
|
|
|
Fl_Widget argument (and optionally overrides the user_data()
|
|
|
|
argument). You must first check that callback() is non-zero
|
2008-09-15 04:27:28 +04:00
|
|
|
before calling this.
|
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
void do_callback(Fl_Widget* o,void* arg) const {callback_(o, arg);}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
2008-12-13 21:31:54 +03:00
|
|
|
Calls the Fl_Menu_Item item's callback, and provides the
|
|
|
|
Fl_Widget argument (and optionally overrides the user_data()
|
2008-09-15 04:27:28 +04:00
|
|
|
argument). You must first check that callback() is non-zero
|
|
|
|
before calling this.
|
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
void do_callback(Fl_Widget* o,long arg) const {callback_(o, (void*)arg);}
|
|
|
|
|
2008-09-15 21:46:42 +04:00
|
|
|
// back-compatibility, do not use:
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/** back compatibility only \deprecated. */
|
1998-10-06 22:21:25 +04:00
|
|
|
int checked() const {return flags&FL_MENU_VALUE;}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/** back compatibility only \deprecated. */
|
1998-10-06 22:21:25 +04:00
|
|
|
void check() {flags |= FL_MENU_VALUE;}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/** back compatibility only \deprecated. */
|
1998-10-06 22:21:25 +04:00
|
|
|
void uncheck() {flags &= ~FL_MENU_VALUE;}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2010-04-16 21:55:45 +04:00
|
|
|
int insert(int,const char*,int,Fl_Callback*,void* =0, int =0);
|
2002-08-14 20:49:38 +04:00
|
|
|
int add(const char*, int shortcut, Fl_Callback*, void* =0, int = 0);
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/** See int add(const char*, int shortcut, Fl_Callback*, void*, int) */
|
1998-10-06 22:21:25 +04:00
|
|
|
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);}
|
2008-12-13 21:31:54 +03:00
|
|
|
|
2002-08-14 20:49:38 +04:00
|
|
|
int size() const ;
|
1998-10-06 22:21:25 +04:00
|
|
|
};
|
|
|
|
|
2008-09-15 21:46:42 +04:00
|
|
|
typedef Fl_Menu_Item Fl_Menu; // back compatibility
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2008-09-15 21:46:42 +04:00
|
|
|
enum { // back-compatibility enum:
|
1998-10-06 22:21:25 +04:00
|
|
|
FL_PUP_NONE = 0,
|
|
|
|
FL_PUP_GREY = FL_MENU_INACTIVE,
|
|
|
|
FL_PUP_GRAY = FL_MENU_INACTIVE,
|
|
|
|
FL_MENU_BOX = FL_MENU_TOGGLE,
|
|
|
|
FL_PUP_BOX = FL_MENU_TOGGLE,
|
|
|
|
FL_MENU_CHECK = FL_MENU_VALUE,
|
|
|
|
FL_PUP_CHECK = FL_MENU_VALUE,
|
|
|
|
FL_PUP_RADIO = FL_MENU_RADIO,
|
|
|
|
FL_PUP_INVISIBLE = FL_MENU_INVISIBLE,
|
|
|
|
FL_PUP_SUBMENU = FL_SUBMENU_POINTER
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1998-10-20 01:39:29 +04:00
|
|
|
|
|
|
|
//
|
2005-02-25 00:55:12 +03:00
|
|
|
// End of "$Id$".
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|