1998-10-20 01:39:29 +04:00
|
|
|
//
|
|
|
|
// Menu base class header file for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2019-06-27 17:04:30 +03:00
|
|
|
// Copyright 1998-2019 by Bill Spitzak and others.
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|
2011-07-19 08:49:30 +04:00
|
|
|
// 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
|
|
|
|
// file is missing or damaged, see the license at:
|
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// https://www.fltk.org/COPYING.php
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// Please see the following page on how to report bugs and issues:
|
2005-04-16 04:13:17 +04:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// https://www.fltk.org/bugs.php
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2008-10-15 17:46:06 +04:00
|
|
|
/* \file
|
2008-09-16 11:26:22 +04:00
|
|
|
Fl_Menu_ widget . */
|
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
#ifndef Fl_Menu__H
|
|
|
|
#define Fl_Menu__H
|
|
|
|
|
|
|
|
#ifndef Fl_Widget_H
|
|
|
|
#include "Fl_Widget.H"
|
|
|
|
#endif
|
|
|
|
#include "Fl_Menu_Item.H"
|
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
|
|
|
Base class of all widgets that have a menu in FLTK.
|
2016-07-09 20:14:22 +03:00
|
|
|
|
|
|
|
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
|
2008-09-15 04:27:28 +04:00
|
|
|
be "private": a dynamically allocated array managed by the Fl_Menu_.
|
2015-01-10 20:46:10 +03:00
|
|
|
|
2015-01-11 01:05:15 +03:00
|
|
|
When the user clicks a menu item, value() is set to that item
|
|
|
|
and then:
|
2015-01-10 20:46:10 +03:00
|
|
|
|
2016-07-09 20:14:22 +03:00
|
|
|
- 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.)
|
2015-01-10 20:46:10 +03:00
|
|
|
|
2016-07-09 20:14:22 +03:00
|
|
|
- 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.
|
2018-03-31 20:29:23 +03:00
|
|
|
|
|
|
|
The line spacing between menu items can be controlled with the global setting
|
|
|
|
Fl::menu_linespacing().
|
2020-01-26 21:14:45 +03:00
|
|
|
\see Fl_Widget::shortcut_label(int)
|
2008-09-15 04:27:28 +04:00
|
|
|
*/
|
2002-08-14 20:49:38 +04:00
|
|
|
class FL_EXPORT Fl_Menu_ : public Fl_Widget {
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
Fl_Menu_Item *menu_;
|
|
|
|
const Fl_Menu_Item *value_;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2020-07-01 19:03:10 +03:00
|
|
|
uchar alloc; // flag indicates if menu_ is a dynamic copy (=1) or not (=0)
|
1998-10-06 22:21:25 +04:00
|
|
|
uchar down_box_;
|
2008-04-23 23:09:28 +04:00
|
|
|
Fl_Font textfont_;
|
2008-08-16 01:11:21 +04:00
|
|
|
Fl_Fontsize textsize_;
|
2009-09-27 15:06:56 +04:00
|
|
|
Fl_Color textcolor_;
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2015-07-27 00:10:18 +03:00
|
|
|
int item_pathname_(char *name, int namelen, const Fl_Menu_Item *finditem,
|
|
|
|
const Fl_Menu_Item *menu=0) const;
|
1998-10-06 22:21:25 +04:00
|
|
|
public:
|
2002-08-14 20:49:38 +04:00
|
|
|
Fl_Menu_(int,int,int,int,const char * =0);
|
|
|
|
~Fl_Menu_();
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2004-04-06 23:19:41 +04:00
|
|
|
int item_pathname(char *name, int namelen, const Fl_Menu_Item *finditem=0) const;
|
|
|
|
const Fl_Menu_Item* picked(const Fl_Menu_Item*);
|
|
|
|
const Fl_Menu_Item* find_item(const char *name);
|
2010-02-26 16:03:21 +03:00
|
|
|
const Fl_Menu_Item* find_item(Fl_Callback*);
|
2010-04-16 21:55:45 +04:00
|
|
|
int find_index(const char *name) const;
|
|
|
|
int find_index(const Fl_Menu_Item *item) const;
|
|
|
|
int find_index(Fl_Callback *cb) const;
|
2004-04-06 23:19:41 +04:00
|
|
|
|
2010-11-11 12:12:05 +03:00
|
|
|
/**
|
|
|
|
Returns the menu item with the entered shortcut (key value).
|
|
|
|
|
|
|
|
This searches the complete menu() for a shortcut that matches the
|
|
|
|
entered key value. It must be called for a FL_KEYBOARD or FL_SHORTCUT
|
|
|
|
event.
|
|
|
|
|
|
|
|
If a match is found, the menu's callback will be called.
|
|
|
|
|
|
|
|
\return matched Fl_Menu_Item or NULL.
|
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
const Fl_Menu_Item* test_shortcut() {return picked(menu()->test_shortcut());}
|
2002-08-14 20:49:38 +04:00
|
|
|
void global();
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
|
|
|
Returns a pointer to the array of Fl_Menu_Items. This will either be
|
2019-06-27 17:04:30 +03:00
|
|
|
the value passed to menu(value) or the private copy or an internal
|
|
|
|
(temporary) location (see note below).
|
|
|
|
|
|
|
|
\note <b>Implementation details - may be changed in the future.</b>
|
|
|
|
All modifications of the menu array are done by copying the entire
|
|
|
|
menu array to an internal storage for optimization of memory
|
|
|
|
allocations, for instance when using add() or insert(). While this
|
|
|
|
is done, menu() returns the pointer to this internal location. The
|
|
|
|
entire menu will be copied back to private storage when needed,
|
|
|
|
i.e. when \b another Fl_Menu_ is modified. You can force this
|
|
|
|
reallocation after you're done with all menu modifications by calling
|
|
|
|
Fl_Menu_::menu_end() to make sure menu() returns a permanent pointer
|
|
|
|
to private storage (until the menu is modified again).
|
|
|
|
Note also that some menu methods (e.g. Fl_Menu_Button::popup()) call
|
|
|
|
menu_end() internally to ensure a consistent menu array while the
|
|
|
|
menu is open.
|
|
|
|
|
|
|
|
\see size() -- returns the size of the Fl_Menu_Item array.
|
|
|
|
\see menu_end() -- finish %menu modifications (optional)
|
2011-12-08 21:10:11 +04:00
|
|
|
|
|
|
|
\b Example: How to walk the array:
|
|
|
|
\code
|
|
|
|
for ( int t=0; t<menubar->size(); t++ ) { // walk array of items
|
|
|
|
const Fl_Menu_Item &item = menubar->menu()[t]; // get each item
|
|
|
|
fprintf(stderr, "item #%d -- label=%s, value=%s type=%s\n",
|
|
|
|
t,
|
|
|
|
item.label() ? item.label() : "(Null)", // menu terminators have NULL labels
|
|
|
|
(item.flags & FL_MENU_VALUE) ? "set" : "clear", // value of toggle or radio items
|
|
|
|
(item.flags & FL_SUBMENU) ? "Submenu" : "Item"); // see if item is a submenu or actual item
|
|
|
|
}
|
|
|
|
\endcode
|
|
|
|
|
2016-07-09 20:14:22 +03:00
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
const Fl_Menu_Item *menu() const {return menu_;}
|
2019-06-27 17:04:30 +03:00
|
|
|
const Fl_Menu_Item *menu_end(); // in src/Fl_Menu_add.cxx
|
2002-08-14 20:49:38 +04:00
|
|
|
void menu(const Fl_Menu_Item *m);
|
|
|
|
void copy(const Fl_Menu_Item *m, void* user_data = 0);
|
2010-04-16 21:55:45 +04:00
|
|
|
int insert(int index, const char*, int shortcut, Fl_Callback*, void* = 0, int = 0);
|
2016-07-09 20:14:22 +03:00
|
|
|
int add(const char*, int shortcut, Fl_Callback*, void* = 0, int = 0); // see src/Fl_Menu_add.cxx
|
2010-04-16 21:55:45 +04:00
|
|
|
/** See int Fl_Menu_::add(const char* label, int shortcut, Fl_Callback*, void *user_data=0, int flags=0) */
|
2008-09-15 04:27:28 +04:00
|
|
|
int add(const char* a, const char* b, Fl_Callback* c, void* d = 0, int e = 0) {
|
2010-04-16 21:55:45 +04:00
|
|
|
return add(a,fl_old_shortcut(b),c,d,e);
|
|
|
|
}
|
|
|
|
/** See int Fl_Menu_::insert(const char* label, int shortcut, Fl_Callback*, void *user_data=0, int flags=0) */
|
|
|
|
int insert(int index, const char* a, const char* b, Fl_Callback* c, void* d = 0, int e = 0) {
|
|
|
|
return insert(index,a,fl_old_shortcut(b),c,d,e);
|
|
|
|
}
|
2008-09-15 04:27:28 +04:00
|
|
|
int add(const char *);
|
2002-08-14 20:49:38 +04:00
|
|
|
int size() const ;
|
2003-06-15 08:47:28 +04:00
|
|
|
void size(int W, int H) { Fl_Widget::size(W, H); }
|
2002-08-14 20:49:38 +04:00
|
|
|
void clear();
|
2010-04-16 21:55:45 +04:00
|
|
|
int clear_submenu(int index);
|
2002-08-14 20:49:38 +04:00
|
|
|
void replace(int,const char *);
|
|
|
|
void remove(int);
|
2016-07-09 20:14:22 +03:00
|
|
|
/** Changes the shortcut of item \p i to \p s. */
|
1998-10-06 22:21:25 +04:00
|
|
|
void shortcut(int i, int s) {menu_[i].shortcut(s);}
|
2008-09-15 04:27:28 +04:00
|
|
|
/** Sets the flags of item i. For a list of the flags, see Fl_Menu_Item. */
|
2002-08-09 05:09:49 +04:00
|
|
|
void mode(int i,int fl) {menu_[i].flags = fl;}
|
2008-09-15 04:27:28 +04:00
|
|
|
/** Gets the flags of item i. For a list of the flags, see Fl_Menu_Item. */
|
1998-10-06 22:21:25 +04:00
|
|
|
int mode(int i) const {return menu_[i].flags;}
|
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/** Returns a pointer to the last menu item that was picked. */
|
1998-10-06 22:21:25 +04:00
|
|
|
const Fl_Menu_Item *mvalue() const {return value_;}
|
2008-09-15 04:27:28 +04:00
|
|
|
/** Returns the index into menu() of the last item chosen by the user. It is zero initially. */
|
2004-12-03 05:48:22 +03:00
|
|
|
int value() const {return value_ ? (int)(value_-menu_) : -1;}
|
2002-08-14 20:49:38 +04:00
|
|
|
int value(const Fl_Menu_Item*);
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
|
|
|
The value is the index into menu() of the last item chosen by
|
|
|
|
the user. It is zero initially. You can set it as an integer, or set
|
|
|
|
it with a pointer to a menu item. The set routines return non-zero if
|
|
|
|
the new value is different than the old one.
|
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
int value(int i) {return value(menu_+i);}
|
2010-11-08 20:21:02 +03:00
|
|
|
/** Returns the title of the last item chosen. */
|
1998-10-06 22:21:25 +04:00
|
|
|
const char *text() const {return value_ ? value_->text : 0;}
|
2010-11-11 12:12:05 +03:00
|
|
|
/** Returns the title of item i. */
|
1998-10-06 22:21:25 +04:00
|
|
|
const char *text(int i) const {return menu_[i].text;}
|
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/** Gets the current font of menu item labels. */
|
2008-04-23 23:09:28 +04:00
|
|
|
Fl_Font textfont() const {return textfont_;}
|
2008-09-15 04:27:28 +04:00
|
|
|
/** Sets the current font of menu item labels. */
|
2008-04-23 23:09:28 +04:00
|
|
|
void textfont(Fl_Font c) {textfont_=c;}
|
2008-09-15 04:27:28 +04:00
|
|
|
/** Gets the font size of menu item labels. */
|
2008-08-16 01:11:21 +04:00
|
|
|
Fl_Fontsize textsize() const {return textsize_;}
|
2008-09-15 04:27:28 +04:00
|
|
|
/** Sets the font size of menu item labels. */
|
2008-08-16 01:11:21 +04:00
|
|
|
void textsize(Fl_Fontsize c) {textsize_=c;}
|
2008-09-15 04:27:28 +04:00
|
|
|
/** Get the current color of menu item labels. */
|
2009-09-27 15:06:56 +04:00
|
|
|
Fl_Color textcolor() const {return textcolor_;}
|
2008-09-15 04:27:28 +04:00
|
|
|
/** Sets the current color of menu item labels. */
|
2009-09-27 15:06:56 +04:00
|
|
|
void textcolor(Fl_Color c) {textcolor_=c;}
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
|
|
|
This box type is used to surround the currently-selected items in the
|
2016-07-09 20:14:22 +03:00
|
|
|
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.
|
2008-09-15 04:27:28 +04:00
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
Fl_Boxtype down_box() const {return (Fl_Boxtype)down_box_;}
|
2023-02-05 18:07:14 +03:00
|
|
|
/** Sets the box type used to surround the currently-selected items in the menus. */
|
1998-10-06 22:21:25 +04:00
|
|
|
void down_box(Fl_Boxtype b) {down_box_ = b;}
|
|
|
|
|
2008-09-15 21:46:42 +04:00
|
|
|
/** For back compatibility, same as selection_color() */
|
1998-10-06 22:21:25 +04:00
|
|
|
Fl_Color down_color() const {return selection_color();}
|
2008-09-15 21:46:42 +04:00
|
|
|
/** For back compatibility, same as selection_color() */
|
2001-10-29 06:44:33 +03:00
|
|
|
void down_color(unsigned c) {selection_color(c);}
|
2015-03-22 10:08:04 +03:00
|
|
|
void setonly(Fl_Menu_Item* item);
|
1998-10-06 22:21:25 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|