Last change
on this file since 7364 was
5395,
checked in by bensch, 19 years ago
|
orxonox/trunk: first element of the GLGui is visible… there is a long way to go…
|
File size:
468 bytes
|
Line | |
---|
1 | /*! |
---|
2 | * @file glgui_pushbutton.h |
---|
3 | * The gl_pushbutton widget of th openglGUI |
---|
4 | * |
---|
5 | */ |
---|
6 | |
---|
7 | #ifndef _GLGUI_PUSHBUTTON_H |
---|
8 | #define _GLGUI_PUSHBUTTON_H |
---|
9 | |
---|
10 | #include "glgui_button.h" |
---|
11 | |
---|
12 | // FORWARD DECLARATION |
---|
13 | |
---|
14 | //! This is part of the openglGUI class |
---|
15 | /** |
---|
16 | * |
---|
17 | */ |
---|
18 | class GLGuiPushButton : public GLGuiButton { |
---|
19 | |
---|
20 | public: |
---|
21 | GLGuiPushButton(); |
---|
22 | virtual ~GLGuiPushButton(); |
---|
23 | |
---|
24 | void init(); |
---|
25 | |
---|
26 | virtual void draw() const; |
---|
27 | virtual void update(); |
---|
28 | private: |
---|
29 | |
---|
30 | }; |
---|
31 | |
---|
32 | #endif /* _GLGUI_PUSHBUTTON_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.