1998-10-20 01:39:29 +04:00
|
|
|
//
|
|
|
|
// Menu button header file for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2022-03-07 20:23:53 +03:00
|
|
|
// Copyright 1998-2022 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_Button widget . */
|
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
#ifndef Fl_Menu_Button_H
|
|
|
|
#define Fl_Menu_Button_H
|
|
|
|
|
|
|
|
#include "Fl_Menu_.H"
|
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
|
|
|
This is a button that when pushed pops up a menu (or hierarchy of
|
2020-07-01 19:03:10 +03:00
|
|
|
menus) defined by an array of
|
2008-09-15 04:27:28 +04:00
|
|
|
Fl_Menu_Item objects.
|
2010-12-09 02:53:04 +03:00
|
|
|
<P ALIGN=CENTER>\image html menu_button.png</P>
|
|
|
|
\image latex menu_button.png " menu_button" width=5cm
|
2008-09-15 04:27:28 +04:00
|
|
|
<P>Normally any mouse button will pop up a menu and it is lined up
|
|
|
|
below the button as shown in the picture. However an Fl_Menu_Button
|
2010-12-12 13:56:07 +03:00
|
|
|
may also control a pop-up menu. This is done by setting the type().
|
2020-07-01 19:03:10 +03:00
|
|
|
If type() is zero a normal menu button is produced.
|
|
|
|
If it is nonzero then this is a pop-up menu. The bits in type() indicate
|
2010-12-12 13:56:07 +03:00
|
|
|
what mouse buttons pop up the menu (see Fl_Menu_Button::popup_buttons). </P>
|
2008-09-15 04:27:28 +04:00
|
|
|
<P>The menu will also pop up in response to shortcuts indicated by
|
|
|
|
putting a '&' character in the label(). </P>
|
|
|
|
<P>Typing the shortcut() of any of the menu items will cause
|
|
|
|
callbacks exactly the same as when you pick the item with the mouse.
|
|
|
|
The '&' character in menu item names are only looked at when the menu is
|
|
|
|
popped up, however. </P>
|
2015-01-11 01:05:15 +03:00
|
|
|
|
|
|
|
When the user clicks a menu item, value() is set to that item
|
|
|
|
and then:
|
|
|
|
|
2022-03-07 20:23:53 +03:00
|
|
|
- The item's callback is done if one has been set; the
|
|
|
|
Fl_Menu_Button is passed as the Fl_Widget* argument,
|
|
|
|
along with any userdata configured for the callback.
|
2015-01-11 01:05:15 +03:00
|
|
|
|
2022-03-07 20:23:53 +03:00
|
|
|
- If the item does not have a callback, the Fl_Menu_Button's callback
|
|
|
|
is done instead, along with any userdata configured for it.
|
|
|
|
The callback can determine which item was picked using
|
|
|
|
value(), mvalue(), item_pathname(), etc.
|
2008-09-15 04:27:28 +04:00
|
|
|
*/
|
2002-08-14 20:49:38 +04:00
|
|
|
class FL_EXPORT Fl_Menu_Button : public Fl_Menu_ {
|
1998-10-06 22:21:25 +04:00
|
|
|
protected:
|
2002-08-14 20:49:38 +04:00
|
|
|
void draw();
|
1998-10-06 22:21:25 +04:00
|
|
|
public:
|
2010-12-12 13:56:07 +03:00
|
|
|
/**
|
|
|
|
\brief indicate what mouse buttons pop up the menu.
|
2020-07-01 19:03:10 +03:00
|
|
|
|
|
|
|
Values for type() used to indicate what mouse buttons pop up the menu.
|
2010-12-12 13:56:07 +03:00
|
|
|
Fl_Menu_Button::POPUP3 is usually what you want.
|
2020-07-01 19:03:10 +03:00
|
|
|
*/
|
2010-12-12 14:19:12 +03:00
|
|
|
enum popup_buttons {POPUP1 = 1, /**< pops up with the mouse 1st button. */
|
|
|
|
POPUP2, /**< pops up with the mouse 2nd button. */
|
|
|
|
POPUP12, /**< pops up with the mouse 1st or 2nd buttons. */
|
|
|
|
POPUP3, /**< pops up with the mouse 3rd button. */
|
|
|
|
POPUP13, /**< pops up with the mouse 1st or 3rd buttons. */
|
|
|
|
POPUP23, /**< pops up with the mouse 2nd or 3rd buttons. */
|
|
|
|
POPUP123 /**< pops up with any mouse button. */
|
2010-12-12 13:56:07 +03:00
|
|
|
};
|
2002-08-14 20:49:38 +04:00
|
|
|
int handle(int);
|
|
|
|
const Fl_Menu_Item* popup();
|
|
|
|
Fl_Menu_Button(int,int,int,int,const char * =0);
|
1998-10-06 22:21:25 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|