summaryrefslogtreecommitdiff
path: root/FL/Fl_Sys_Menu_Bar_Driver.H
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2017-12-02 16:20:30 +0000
committerManolo Gouy <Manolo>2017-12-02 16:20:30 +0000
commit34dd1b15fbbc44e70bfdb21498ce7898bf8658b3 (patch)
treefb65dd41847ff4205236066de124a1c9cb27e33c /FL/Fl_Sys_Menu_Bar_Driver.H
parenta8fe10cf88e757f59057fdaf51637d26ab3019aa (diff)
Converted class Fl_Sys_Menu_Bar to the driver model.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12575 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Sys_Menu_Bar_Driver.H')
-rw-r--r--FL/Fl_Sys_Menu_Bar_Driver.H58
1 files changed, 58 insertions, 0 deletions
diff --git a/FL/Fl_Sys_Menu_Bar_Driver.H b/FL/Fl_Sys_Menu_Bar_Driver.H
new file mode 100644
index 000000000..8ab45cc93
--- /dev/null
+++ b/FL/Fl_Sys_Menu_Bar_Driver.H
@@ -0,0 +1,58 @@
+//
+// "$Id$"
+//
+// system menu bar widget for the Fast Light Tool Kit (FLTK).
+//
+// Copyright 1998-2017 by Bill Spitzak and others.
+//
+// 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
+//
+// Please report all bugs and problems on the following page:
+//
+// http://www.fltk.org/str.php
+//
+
+#ifndef Fl_Sys_Menu_Bar_Driver_H
+#define Fl_Sys_Menu_Bar_Driver_H
+
+#include <FL/Fl_Sys_Menu_Bar.H>
+
+class Fl_Sys_Menu_Bar_Driver {
+ friend class Fl_Sys_Menu_Bar;
+protected:
+ Fl_Sys_Menu_Bar *bar;
+public:
+ Fl_Sys_Menu_Bar_Driver();
+ virtual ~Fl_Sys_Menu_Bar_Driver();
+ virtual void update() {}
+ virtual void draw() { bar->Fl_Menu_Bar::draw();}
+ virtual void about(Fl_Callback *cb, void *data) {}
+ virtual int add(const char* label, int shortcut, Fl_Callback *cb, void *user_data, int flags) {
+ return bar->Fl_Menu_Bar::add(label, shortcut, cb, user_data, flags);
+ }
+ virtual int add(const char* str) { return bar->Fl_Menu_Bar::add(str); }
+ virtual int insert(int index, const char* label, int shortcut, Fl_Callback *cb, void *user_data, int flags) {
+ return bar->Fl_Menu_Bar::insert(index, label, shortcut, cb, user_data, flags);
+ }
+ virtual void menu(const Fl_Menu_Item *m) { bar->Fl_Menu_Bar::menu(m); }
+ virtual void shortcut(int i, int s) { bar->Fl_Menu_Bar::shortcut(i, s); }
+ virtual void setonly(Fl_Menu_Item *item) { bar->Fl_Menu_Bar::setonly(item); }
+ virtual void clear() { bar->Fl_Menu_Bar::clear(); }
+ virtual int clear_submenu(int index) { return bar->Fl_Menu_Bar::clear_submenu(index);}
+ virtual void remove(int index) { bar->Fl_Menu_Bar::remove(index); }
+ virtual void replace(int index, const char *name) { bar->Fl_Menu_Bar::replace(index, name); }
+ virtual void mode(int i, int fl) { bar->Fl_Menu_Bar::mode(i, fl); }
+
+ static Fl_Sys_Menu_Bar_Driver *driver_; // to be assigned with a unique object of this class or of a derived class
+};
+
+
+#endif // Fl_Sys_Menu_Bar_Driver_H
+
+//
+// End of "$Id$".
+//