NTK 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
41class FL_EXPORT Fl_Sys_Menu_Bar : public Fl_Menu_Bar {
42protected:
43 void draw();
44public:
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//
void() Fl_Callback(Fl_Widget *, void *)
Default callback type definition for all fltk widgets (by far the most used)
Definition: Fl_Widget.H:60
This widget provides a standard menubar interface.
Definition: Fl_Menu_Bar.H:62
void draw()
Draws the widget.
Definition: Fl_Menu_Bar.cxx:32
void replace(int, const char *)
Changes the text of item i.
Definition: Fl_Menu_add.cxx:458
void clear()
Same as menu(NULL), set the array pointer to null, indicating a zero-length menu.
Definition: Fl_Menu_.cxx:378
int insert(int index, const char *, int shortcut, Fl_Callback *, void *=0, int=0)
Inserts a new menu item at the specified index position.
Definition: Fl_Menu_add.cxx:364
const Fl_Menu_Item * menu() const
Returns a pointer to the array of Fl_Menu_Items.
Definition: Fl_Menu_.H:91
void remove(int)
Deletes item i from the menu.
Definition: Fl_Menu_add.cxx:478
int clear_submenu(int index)
Clears the specified submenu pointed to by index of all menu items.
Definition: Fl_Menu_.cxx:422
int add(const char *, int shortcut, Fl_Callback *, void *=0, int=0)
Adds a new menu item.
Definition: Fl_Menu_add.cxx:327
A class to create, modify and delete menus that appear on Mac OS X in the menu bar at the top of the ...
Definition: Fl_Sys_Menu_Bar.H:41
Fl_Sys_Menu_Bar(int x, int y, int w, int h, const char *l=0)
The constructor.
Definition: Fl_Sys_Menu_Bar.H:50
void deactivate()
Deactivates the widget.
Definition: Fl_Widget.cxx:212
The Fl_Menu_Item structure defines a single menu item that is used by the Fl_Menu_ class.
Definition: Fl_Menu_Item.H:118