2001-11-27 17:44:08 +00:00
|
|
|
//
|
2005-02-24 21:55:12 +00:00
|
|
|
// "$Id$"
|
2001-11-27 17:44:08 +00:00
|
|
|
//
|
|
|
|
|
// MacOS system menu bar header file for the Fast Light Tool Kit (FLTK).
|
|
|
|
|
//
|
2010-11-28 21:06:39 +00:00
|
|
|
// Copyright 1998-2010 by Bill Spitzak and others.
|
2001-11-27 17:44:08 +00:00
|
|
|
//
|
2011-07-19 04:49:30 +00: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 17:44:08 +00:00
|
|
|
//
|
2005-04-16 00:13:17 +00:00
|
|
|
// Please report all bugs and problems on the following page:
|
|
|
|
|
//
|
|
|
|
|
// http://www.fltk.org/str.php
|
2001-11-27 17:44:08 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#ifndef Fl_Sys_Menu_Bar_H
|
|
|
|
|
#define Fl_Sys_Menu_Bar_H
|
|
|
|
|
|
|
|
|
|
#include "Fl_Menu_Bar.H"
|
2009-12-12 18:26:12 +00:00
|
|
|
#include "x.H"
|
2001-11-27 17:44:08 +00:00
|
|
|
|
2010-03-16 14:47:40 +00:00
|
|
|
#if defined(__APPLE__) || defined(FL_DOXYGEN)
|
2005-08-29 20:05:38 +00:00
|
|
|
|
2010-03-16 14:47:40 +00:00
|
|
|
/**
|
|
|
|
|
@brief A class to create, modify and delete menus that appear on Mac OS X in the menu bar at the top of the screen.
|
|
|
|
|
*
|
|
|
|
|
* On other than Mac OS X platforms, Fl_Sys_Menu_Bar is a synonym of class Fl_Menu_Bar.
|
2012-07-23 15:31:38 +00:00
|
|
|
*
|
|
|
|
|
* You can configure a callback for the 'About' menu item to invoke your own code with fl_mac_set_about().
|
|
|
|
|
*
|
2010-03-16 14:47:40 +00:00
|
|
|
*/
|
2002-08-14 16:49:38 +00:00
|
|
|
class FL_EXPORT Fl_Sys_Menu_Bar : public Fl_Menu_Bar {
|
2001-11-27 17:44:08 +00:00
|
|
|
protected:
|
2002-08-14 16:49:38 +00:00
|
|
|
void draw();
|
2001-11-27 17:44:08 +00:00
|
|
|
public:
|
2010-03-16 14:47:40 +00:00
|
|
|
/**
|
|
|
|
|
@brief The constructor.
|
|
|
|
|
*
|
|
|
|
|
* On Mac OS X, all arguments are unused. On other platforms they are used as by Fl_Menu_Bar::Fl_Menu_Bar().
|
|
|
|
|
*/
|
2012-07-24 04:37:22 +00:00
|
|
|
Fl_Sys_Menu_Bar(int x,int y,int w,int h,const char *l=0);
|
2012-02-13 22:09:14 +00:00
|
|
|
const Fl_Menu_Item *menu() const {return Fl_Menu_::menu();}
|
2002-08-14 16:49:38 +00:00
|
|
|
void menu(const Fl_Menu_Item *m);
|
2009-12-13 12:03:26 +00:00
|
|
|
int add(const char* label, int shortcut, Fl_Callback*, void *user_data=0, int flags=0);
|
2014-01-14 10:27:16 +00: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);
|
|
|
|
|
}
|
2010-04-16 19:27:28 +00:00
|
|
|
int insert(int index, const char* label, int shortcut, Fl_Callback *cb, void *user_data=0, int flags=0);
|
2009-12-13 12:03:26 +00:00
|
|
|
void remove(int n);
|
|
|
|
|
void replace(int rank, const char *name);
|
2013-10-05 15:20:18 +00:00
|
|
|
#ifdef __APPLE__
|
|
|
|
|
void update();
|
|
|
|
|
#else
|
|
|
|
|
void update() {}
|
|
|
|
|
#endif
|
2010-04-16 19:27:28 +00:00
|
|
|
void clear();
|
|
|
|
|
int clear_submenu(int index);
|
2001-11-27 17:44:08 +00:00
|
|
|
};
|
|
|
|
|
|
2005-08-29 20:05:38 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
|
|
typedef Fl_Menu_Bar Fl_Sys_Menu_Bar;
|
|
|
|
|
|
2010-03-16 14:47:40 +00:00
|
|
|
#endif // defined(__APPLE__) || defined(FL_DOXYGEN)
|
2005-08-29 20:05:38 +00:00
|
|
|
|
2010-03-16 14:47:40 +00:00
|
|
|
#endif // Fl_Sys_Menu_Bar_H
|
2001-11-27 17:44:08 +00:00
|
|
|
|
|
|
|
|
//
|
2005-02-24 21:55:12 +00:00
|
|
|
// End of "$Id$".
|
2001-11-27 17:44:08 +00:00
|
|
|
//
|