Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/updater/src/gui/orxonox_gui_video.h @ 3315

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

orxonox/branches/updater: code-standartisation updated in all files.

  1. member → this→member
  2. function (bla) → function(bla)
  3. other small fixes
File size: 664 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(void);
20  ~OrxonoxGuiVideo(void);
21 
22  Widget* getWidget(void);
23};
24#endif /* _ORXONOX_GUI_VIDEO_H */
Note: See TracBrowser for help on using the repository browser.