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).
|
|
|
|
//
|
2009-01-01 19:11:32 +03:00
|
|
|
// Copyright 1998-2009 by Bill Spitzak and others.
|
2001-11-27 20:44:08 +03:00
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Library General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Library General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Library General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
// USA.
|
|
|
|
//
|
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
|
|
|
|
|
|
|
|
#include "Fl_Menu_Bar.H"
|
2009-12-12 21:26:12 +03:00
|
|
|
#include "x.H"
|
2001-11-27 20:44:08 +03:00
|
|
|
|
2010-03-16 17:47:40 +03:00
|
|
|
#if defined(__APPLE__) || defined(FL_DOXYGEN)
|
2005-08-30 00:05:38 +04:00
|
|
|
|
2010-03-16 17:47:40 +03: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.
|
|
|
|
*/
|
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:
|
2002-08-14 20:49:38 +04:00
|
|
|
void draw();
|
2001-11-27 20:44:08 +03:00
|
|
|
public:
|
2010-03-16 17:47:40 +03: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().
|
|
|
|
*/
|
2001-11-27 20:44:08 +03:00
|
|
|
Fl_Sys_Menu_Bar(int x,int y,int w,int h,const char *l=0)
|
2005-08-30 00:05:38 +04:00
|
|
|
: Fl_Menu_Bar(x,y,w,h,l) {
|
2009-12-18 23:11:24 +03:00
|
|
|
deactivate(); // don't let the old area take events
|
|
|
|
fl_sys_menu_bar = this;
|
|
|
|
}
|
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);
|
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);
|
2009-12-13 15:03:26 +03:00
|
|
|
void remove(int n);
|
|
|
|
void replace(int rank, const char *name);
|
2010-04-16 23:27:28 +04:00
|
|
|
void clear();
|
|
|
|
int clear_submenu(int index);
|
2010-03-16 17:47:40 +03:00
|
|
|
#if ! defined(FL_DOXYGEN)
|
2009-12-21 21:43:13 +03:00
|
|
|
enum menuOrItemOperation { itemAtIndex, setKeyEquivalent, setKeyEquivalentModifierMask, setState, initWithTitle,
|
|
|
|
numberOfItems, setSubmenu, setEnabled, addSeparatorItem, setTitle, removeItem, addNewItem, renameItem };
|
|
|
|
// function doMenuOrItemOperation is in file Fl_cocoa.mm because it contains objective-c code
|
|
|
|
static void *doMenuOrItemOperation( menuOrItemOperation operation, ...);
|
2009-12-18 23:11:24 +03:00
|
|
|
#endif
|
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;
|
|
|
|
|
2010-03-16 17:47:40 +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
|
|
|
//
|