Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/gui/orxonox_gui_video.h @ 3187

Last change on this file since 3187 was 3187, checked in by bensch, 19 years ago

orxonox/trunk/gui: doxygen-tags… it's very much.

File size: 655 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.
11class OrxonoxGuiVideo
12{
13 private:
14  Frame* videoFrame;        //!< The Frame that holds the video options.
15  Box* videoBox;            //!< The Box that holds the video options.
16  CheckButton* fullscreen;  //!< CheckButton for fullscreen-mode
17  CheckButton* wireframe;   //!< CheckButton for wireframe Mode.
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.