Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/qt_gui/src/lib/gui/qt_gui/gui_video.h @ 7484

Last change on this file since 7484 was 7484, checked in by bensch, 18 years ago

orxonox/qt_gui: more stuff

File size: 516 bytes
Line 
1/*!
2  \file gui_video.h
3  \brief File that holds the class that creates the Video-Options.
4*/
5#ifndef _GUI_VIDEO_H
6#define _GUI_VIDEO_H
7
8#include "../gui_element.h"
9#include <vector>
10#include <string>
11#include <qgroupbox.h>
12
13namespace OrxGui
14{
15  //! Class that creates the Video-Options.
16  class GuiVideo : public OrxGui::Element, public QGroupBox
17  {
18  public:
19    GuiVideo();
20    virtual ~GuiVideo();
21
22  private:
23    void getResolutions(std::vector<std::string>& resolutionList);
24  };
25}
26
27#endif /* _GUI_VIDEO_H */
Note: See TracBrowser for help on using the repository browser.