button.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_BUTTON_H
13 #define RC_BUTTON_H
14 
15 #include <FL/Fl.H>
16 #include <FL/Fl_Button.H>
17 
18 class Button : public Fl_Button
19 {
20  public:
21 
22  Button(int x, int y, int w, int h, const char *label) : Fl_Button(x, y, w, h, label)
23  {
24  box(FL_GTK_UP_BOX);
25  down_box(FL_GTK_DOWN_BOX);
26  selection_color(FL_DARK2);
27  }
28 };
29 
30 #endif
Button::Button
Button(int x, int y, int w, int h, const char *label)
Definition: button.h:22
Button
Definition: button.h:18


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