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 bar header file for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2010-11-29 00:06:39 +03:00
|
|
|
// Copyright 1998-2010 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:
|
|
|
|
//
|
|
|
|
// http://www.fltk.org/COPYING.php
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|
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
|
|
|
|
2008-10-15 17:46:06 +04:00
|
|
|
/* \file
|
2008-09-16 11:26:22 +04:00
|
|
|
Fl_Menu_Bar widget . */
|
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
#ifndef Fl_Menu_Bar_H
|
|
|
|
#define Fl_Menu_Bar_H
|
|
|
|
|
|
|
|
#include "Fl_Menu_.H"
|
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
|
|
|
This widget provides a standard menubar interface. Usually you will
|
|
|
|
put this widget along the top edge of your window. The height of the
|
|
|
|
widget should be 30 for the menu titles to draw correctly with the
|
|
|
|
default font.
|
|
|
|
<P>The items on the bar and the menus they bring up are defined by a
|
|
|
|
single Fl_Menu_Item
|
|
|
|
array. Because a Fl_Menu_Item array defines a hierarchy, the
|
|
|
|
top level menu defines the items in the menubar, while the submenus
|
|
|
|
define the pull-down menus. Sub-sub menus and lower pop up to the right
|
|
|
|
of the submenus. </P>
|
2010-12-09 02:53:04 +03:00
|
|
|
<P ALIGN=CENTER>\image html menubar.png</P>
|
|
|
|
\image latex menubar.png " menubar" width=12cm
|
2008-09-15 04:27:28 +04:00
|
|
|
<P>If there is an item in the top menu that is not a title of a
|
2008-09-17 19:44:43 +04:00
|
|
|
submenu, then it acts like a "button" in the menubar. Clicking on it
|
2008-09-15 04:27:28 +04:00
|
|
|
will pick it. </P>
|
2015-01-10 20:58:54 +03:00
|
|
|
|
|
|
|
When the user picks an item in the menu:
|
|
|
|
|
|
|
|
- The item's callback is done; the menubar is passed as the
|
|
|
|
Fl_Widget* argument, along with any userdata configured
|
|
|
|
for the callback.
|
|
|
|
|
|
|
|
- If the item does not have a callback, the menubar's callback
|
|
|
|
is done instead, along with any userdata configured for the callback.
|
|
|
|
|
2008-09-15 04:27:28 +04:00
|
|
|
<P>Submenus will also pop up in response to shortcuts indicated by
|
|
|
|
putting a '&' character in the name field of the menu item. If you put a
|
2008-09-17 19:44:43 +04:00
|
|
|
'&' character in a top-level "button" then the shortcut picks it. The
|
2008-09-15 04:27:28 +04:00
|
|
|
'&' character in submenus is ignored until the menu is popped up. </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.
|
|
|
|
*/
|
2002-08-14 20:49:38 +04:00
|
|
|
class FL_EXPORT Fl_Menu_Bar : 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:
|
2002-08-14 20:49:38 +04:00
|
|
|
int handle(int);
|
2008-09-15 04:27:28 +04:00
|
|
|
/**
|
|
|
|
Creates a new Fl_Menu_Bar widget using the given position,
|
|
|
|
size, and label string. The default boxtype is FL_UP_BOX.
|
|
|
|
<P>The constructor sets menu() to NULL. See
|
|
|
|
Fl_Menu_ for the methods to set or change the menu. </P>
|
|
|
|
<P>labelsize(), labelfont(), and labelcolor()
|
|
|
|
are used to control how the menubar items are drawn. They are
|
|
|
|
initialized from the Fl_Menu static variables, but you can
|
|
|
|
change them if desired. </P>
|
|
|
|
<P>label() is ignored unless you change align() to
|
|
|
|
put it outside the menubar.
|
|
|
|
<P>The destructor removes the Fl_Menu_Bar widget and all of its
|
|
|
|
menu items.
|
|
|
|
*/
|
2012-07-24 08:37:22 +04:00
|
|
|
Fl_Menu_Bar(int X, int Y, int W, int H,const char *l=0);
|
1998-10-06 22:21:25 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#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
|
|
|
//
|