|
Last change
on this file since 3015 was
2595,
checked in by bensch, 21 years ago
|
|
orxonox/trunk/gui: Generalized plugins (returning Widget* now). Enumerator for isOption added
|
|
File size:
472 bytes
|
| Line | |
|---|
| 1 | /*! |
|---|
| 2 | \file orxonox_gui_video.h |
|---|
| 3 | \brief File that holds the class that creates the Video-Options. |
|---|
| 4 | */ |
|---|
| 5 | #ifndef _ORXONOX_GUI_VIDEO_H |
|---|
| 6 | #define _ORXONOX_GUI_VIDEO_H |
|---|
| 7 | |
|---|
| 8 | #include "orxonox_gui.h" |
|---|
| 9 | |
|---|
| 10 | //! Class that creates the Video-Options. |
|---|
| 11 | class OrxonoxGuiVideo |
|---|
| 12 | { |
|---|
| 13 | private: |
|---|
| 14 | Frame* videoFrame; |
|---|
| 15 | Box* videoBox; |
|---|
| 16 | CheckButton* fullscreen; |
|---|
| 17 | CheckButton* wireframe; |
|---|
| 18 | public: |
|---|
| 19 | OrxonoxGuiVideo (); |
|---|
| 20 | ~OrxonoxGuiVideo (); |
|---|
| 21 | |
|---|
| 22 | Widget* getWidget (); |
|---|
| 23 | }; |
|---|
| 24 | #endif /* _ORXONOX_GUI_VIDEO_H */ |
|---|
Note: See
TracBrowser
for help on using the repository browser.