2001-11-27 20:44:08 +03:00
|
|
|
//
|
2005-02-25 00:55:12 +03:00
|
|
|
// "$Id$"
|
2001-11-27 20:44:08 +03:00
|
|
|
//
|
|
|
|
// MacOS system 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.
|
2001-11-27 20:44:08 +03: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
|
2001-11-27 20:44:08 +03: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
|
2001-11-27 20:44:08 +03:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef Fl_Sys_Menu_Bar_H
|
|
|
|
#define Fl_Sys_Menu_Bar_H
|
|
|
|
|
2016-03-25 19:06:00 +03:00
|
|
|
#include <FL/Fl_Menu_Bar.H>
|
2001-11-27 20:44:08 +03:00
|
|
|
|
2016-04-20 07:49:36 +03:00
|
|
|
#if defined(__APPLE__) || defined(FL_DOXYGEN)
|
2005-08-30 00:05:38 +04:00
|
|
|
|
2010-03-16 17:47:40 +03:00
|
|
|
/**
|
2014-02-11 21:59:20 +04:00
|
|
|
A class to create, modify and delete menus that appear on Mac OS X in the menu bar at the top of the screen.
|
2014-02-11 02:24:27 +04:00
|
|
|
|
2014-02-11 21:59:20 +04:00
|
|
|
On other than Mac OS X platforms, Fl_Sys_Menu_Bar is a synonym of class Fl_Menu_Bar.
|
|
|
|
\n To use this class, just replace Fl_Menu_Bar by Fl_Sys_Menu_Bar, and, on the Mac platform,
|
|
|
|
a system menu at the top of the screen will be available. This menu will match an array
|
|
|
|
of Fl_Menu_Item's exactly as with standard FLTK menus.
|
|
|
|
\n A few FLTK features are not supported by the Mac System menu:
|
2014-02-11 02:24:27 +04:00
|
|
|
\li no symbolic labels
|
|
|
|
\li no embossed labels
|
|
|
|
\li no font sizes
|
|
|
|
|
|
|
|
You can configure a callback for the 'About' menu item to invoke your own code with fl_mac_set_about().
|
2010-03-16 17:47:40 +03:00
|
|
|
*/
|
2002-08-14 20:49:38 +04:00
|
|
|
class FL_EXPORT Fl_Sys_Menu_Bar : public Fl_Menu_Bar {
|
2001-11-27 20:44:08 +03:00
|
|
|
protected:
|
2014-02-11 21:59:20 +04:00
|
|
|
void update();
|
2002-08-14 20:49:38 +04:00
|
|
|
void draw();
|
2001-11-27 20:44:08 +03:00
|
|
|
public:
|
2012-07-24 08:37:22 +04:00
|
|
|
Fl_Sys_Menu_Bar(int x,int y,int w,int h,const char *l=0);
|
2014-02-11 02:24:27 +04:00
|
|
|
~Fl_Sys_Menu_Bar();
|
2014-02-11 21:59:20 +04:00
|
|
|
/** Return the system menu's array of Fl_Menu_Item's
|
|
|
|
*/
|
2012-02-14 02:09:14 +04:00
|
|
|
const Fl_Menu_Item *menu() const {return Fl_Menu_::menu();}
|
2002-08-14 20:49:38 +04:00
|
|
|
void menu(const Fl_Menu_Item *m);
|
2009-12-13 15:03:26 +03:00
|
|
|
int add(const char* label, int shortcut, Fl_Callback*, void *user_data=0, int flags=0);
|
2014-02-11 17:55:42 +04:00
|
|
|
/** Adds a new menu item.
|
|
|
|
\see Fl_Menu_::add(const char* label, int shortcut, Fl_Callback*, void *user_data=0, int flags=0)
|
|
|
|
*/
|
2014-01-14 14:27:16 +04:00
|
|
|
int add(const char* label, const char* shortcut, Fl_Callback* cb, void *user_data=0, int flags=0) {
|
|
|
|
return add(label, fl_old_shortcut(shortcut), cb, user_data, flags);
|
|
|
|
}
|
2014-02-11 21:59:20 +04:00
|
|
|
int add(const char* str);
|
2010-04-16 23:27:28 +04:00
|
|
|
int insert(int index, const char* label, int shortcut, Fl_Callback *cb, void *user_data=0, int flags=0);
|
2014-02-11 21:59:20 +04:00
|
|
|
/** Insert a new menu item.
|
|
|
|
\see Fl_Menu_::insert(int index, const char* label, const char* shortcut, Fl_Callback *cb, void *user_data=0, int flags=0)
|
|
|
|
*/
|
|
|
|
int insert(int index, const char* label, const char* shortcut, Fl_Callback *cb, void *user_data=0, int flags=0) {
|
|
|
|
return insert(index, label, fl_old_shortcut(shortcut), cb, user_data, flags);
|
|
|
|
}
|
2009-12-13 15:03:26 +03:00
|
|
|
void remove(int n);
|
|
|
|
void replace(int rank, const char *name);
|
2014-02-11 17:55:42 +04:00
|
|
|
/** Set the Fl_Menu_Item array pointer to null, indicating a zero-length menu.
|
|
|
|
\see Fl_Menu_::clear()
|
|
|
|
*/
|
2010-04-16 23:27:28 +04:00
|
|
|
void clear();
|
2014-02-11 17:55:42 +04:00
|
|
|
/** Clears the specified submenu pointed to by index of all menu items.
|
|
|
|
\see Fl_Menu_::clear_submenu(int index)
|
|
|
|
*/
|
2010-04-16 23:27:28 +04:00
|
|
|
int clear_submenu(int index);
|
2014-02-11 21:59:20 +04:00
|
|
|
/** Make the shortcuts for this menu work no matter what window has the focus when you type it.
|
|
|
|
*/
|
|
|
|
void global() {};
|
|
|
|
/** Sets the flags of item i
|
|
|
|
\see Fl_Menu_::mode(int i, int fl) */
|
|
|
|
void mode (int i, int fl) {
|
|
|
|
Fl_Menu_::mode(i, fl);
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
/** Gets the flags of item i.
|
|
|
|
*/
|
|
|
|
int mode(int i) const { return Fl_Menu_::mode(i); }
|
|
|
|
/** Changes the shortcut of item i to n.
|
|
|
|
*/
|
2015-05-25 08:46:04 +03:00
|
|
|
void shortcut (int i, int s) { Fl_Menu_::shortcut(i, s); update(); }
|
|
|
|
/** Turns the radio item "on" for the menu item and turns "off" adjacent radio items of the same group.*/
|
|
|
|
void setonly (Fl_Menu_Item *item) { Fl_Menu_::setonly(item); update(); }
|
2001-11-27 20:44:08 +03:00
|
|
|
};
|
|
|
|
|
2005-08-30 00:05:38 +04:00
|
|
|
#else
|
|
|
|
|
|
|
|
typedef Fl_Menu_Bar Fl_Sys_Menu_Bar;
|
|
|
|
|
2016-04-20 07:49:36 +03:00
|
|
|
#endif // defined(__APPLE__) || defined(FL_DOXYGEN)
|
2005-08-30 00:05:38 +04:00
|
|
|
|
2010-03-16 17:47:40 +03:00
|
|
|
#endif // Fl_Sys_Menu_Bar_H
|
2001-11-27 20:44:08 +03:00
|
|
|
|
|
|
|
//
|
2005-02-25 00:55:12 +03:00
|
|
|
// End of "$Id$".
|
2001-11-27 20:44:08 +03:00
|
|
|
//
|