summaryrefslogtreecommitdiff
path: root/FL/Fl_Sys_Menu_Bar.H
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2010-03-16 14:47:40 +0000
committerManolo Gouy <Manolo>2010-03-16 14:47:40 +0000
commitb5e2d38b2fbabcf37637cd857fc70d8567978b17 (patch)
treefe547af80bda351e7ae0f14e1389a5bfc2d7cd68 /FL/Fl_Sys_Menu_Bar.H
parentb20ef0bdeb4f9b98d67c189005c98cbed2b6ebb6 (diff)
Have class Fl_Sys_Menu_Bar and function fl_mac_set_about appear in Doxygen doc.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7276 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Sys_Menu_Bar.H')
-rw-r--r--FL/Fl_Sys_Menu_Bar.H20
1 files changed, 16 insertions, 4 deletions
diff --git a/FL/Fl_Sys_Menu_Bar.H b/FL/Fl_Sys_Menu_Bar.H
index 79275c7a4..87a4db8e3 100644
--- a/FL/Fl_Sys_Menu_Bar.H
+++ b/FL/Fl_Sys_Menu_Bar.H
@@ -31,36 +31,48 @@
#include "Fl_Menu_Bar.H"
#include "x.H"
-#ifdef __APPLE__
+#if defined(__APPLE__) || defined(FL_DOXYGEN)
+/**
+ @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.
+ */
class FL_EXPORT Fl_Sys_Menu_Bar : public Fl_Menu_Bar {
protected:
void draw();
public:
+ /**
+ @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().
+ */
Fl_Sys_Menu_Bar(int x,int y,int w,int h,const char *l=0)
: Fl_Menu_Bar(x,y,w,h,l) {
deactivate(); // don't let the old area take events
fl_sys_menu_bar = this;
}
void menu(const Fl_Menu_Item *m);
-#ifdef __APPLE_COCOA__
+#if defined(__APPLE_COCOA__) || defined(FL_DOXYGEN)
int add(const char* label, int shortcut, Fl_Callback*, void *user_data=0, int flags=0);
void remove(int n);
void replace(int rank, const char *name);
+#if ! defined(FL_DOXYGEN)
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, ...);
#endif
+#endif
};
#else
typedef Fl_Menu_Bar Fl_Sys_Menu_Bar;
-#endif
+#endif // defined(__APPLE__) || defined(FL_DOXYGEN)
-#endif
+#endif // Fl_Sys_Menu_Bar_H
//
// End of "$Id$".