FLTK 1.3.0
Fl_Sys_Menu_Bar.H
1 //
2 // "$Id: Fl_Sys_Menu_Bar.H 7903 2010-11-28 21:06:39Z matt $"
3 //
4 // MacOS system menu bar header file for the Fast Light Tool Kit (FLTK).
5 //
6 // Copyright 1998-2010 by Bill Spitzak and others.
7 //
8 // This library is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU Library General Public
10 // License as published by the Free Software Foundation; either
11 // version 2 of the License, or (at your option) any later version.
12 //
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 // Library General Public License for more details.
17 //
18 // You should have received a copy of the GNU Library General Public
19 // License along with this library; if not, write to the Free Software
20 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21 // USA.
22 //
23 // Please report all bugs and problems on the following page:
24 //
25 // http://www.fltk.org/str.php
26 //
27 
28 #ifndef Fl_Sys_Menu_Bar_H
29 #define Fl_Sys_Menu_Bar_H
30 
31 #include "Fl_Menu_Bar.H"
32 #include "x.H"
33 
34 #if defined(__APPLE__) || defined(FL_DOXYGEN)
35 
41 class FL_EXPORT Fl_Sys_Menu_Bar : public Fl_Menu_Bar {
42 protected:
43  void draw();
44 public:
50  Fl_Sys_Menu_Bar(int x,int y,int w,int h,const char *l=0)
51  : Fl_Menu_Bar(x,y,w,h,l) {
52  deactivate(); // don't let the old area take events
53  fl_sys_menu_bar = this;
54  }
55  void menu(const Fl_Menu_Item *m);
56  int add(const char* label, int shortcut, Fl_Callback*, void *user_data=0, int flags=0);
57  int insert(int index, const char* label, int shortcut, Fl_Callback *cb, void *user_data=0, int flags=0);
58  void remove(int n);
59  void replace(int rank, const char *name);
60  void clear();
61  int clear_submenu(int index);
62 #if ! defined(FL_DOXYGEN)
63  enum menuOrItemOperation { itemAtIndex, setKeyEquivalent, setKeyEquivalentModifierMask, setState, initWithTitle,
64  numberOfItems, setSubmenu, setEnabled, addSeparatorItem, setTitle, removeItem, addNewItem, renameItem };
65  // function doMenuOrItemOperation is in file Fl_cocoa.mm because it contains objective-c code
66  static void *doMenuOrItemOperation( menuOrItemOperation operation, ...);
67 #endif
68 };
69 
70 #else
71 
73 
74 #endif // defined(__APPLE__) || defined(FL_DOXYGEN)
75 
76 #endif // Fl_Sys_Menu_Bar_H
77 
78 //
79 // End of "$Id: Fl_Sys_Menu_Bar.H 7903 2010-11-28 21:06:39Z matt $".
80 //