menu_bar.h
Go to the documentation of this file.
1 /*
2  * Roboception GmbH
3  * Munich, Germany
4  * www.roboception.com
5  *
6  * Copyright (c) 2024 Roboception GmbH
7  * All rights reserved
8  *
9  * Author: Heiko Hirschmueller
10  */
11 
12 #ifndef RC_MENU_BAR_H
13 #define RC_MENU_BAR_H
14 
15 #include <FL/Fl.H>
16 #include <FL/Fl_Menu_Bar.H>
17 
18 class MenuBar : public Fl_Menu_Bar
19 {
20  public:
21 
22  MenuBar(int x, int y, int w, int h) : Fl_Menu_Bar(x, y, w, h)
23  {
24  box(FL_THIN_UP_BOX);
25  color(fl_lighter(FL_GRAY));
26  }
27 };
28 
29 #endif
MenuBar
Definition: menu_bar.h:18
MenuBar::MenuBar
MenuBar(int x, int y, int w, int h)
Definition: menu_bar.h:22


rcdiscover
Author(s): Heiko Hirschmueller , Raphael Schaller
autogenerated on Thu Aug 1 2024 02:55:56