| 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 <QtGui/QGroupBox> | 
|---|
| 12 |  | 
|---|
| 13 | namespace OrxGui | 
|---|
| 14 | { | 
|---|
| 15 |   //! Class that creates the Video-Options. | 
|---|
| 16 |   class GuiVideo : public OrxGui::Element, public QGroupBox | 
|---|
| 17 |   { | 
|---|
| 18 |   public: | 
|---|
| 19 |     GuiVideo(OrxGui::Gui* gui); | 
|---|
| 20 |     virtual ~GuiVideo(); | 
|---|
| 21 |  | 
|---|
| 22 |   private: | 
|---|
| 23 |     void getResolutions(std::vector<QString>& resolutionList); | 
|---|
| 24 |   }; | 
|---|
| 25 |  | 
|---|
| 26 |   class GuiAdvancedVideo : public OrxGui::Element, public QGroupBox | 
|---|
| 27 |   { | 
|---|
| 28 |     public: | 
|---|
| 29 |       GuiAdvancedVideo(OrxGui::Gui* gui); | 
|---|
| 30 |       virtual ~GuiAdvancedVideo(); | 
|---|
| 31 |   }; | 
|---|
| 32 | } | 
|---|
| 33 |  | 
|---|
| 34 | #endif /* _GUI_VIDEO_H */ | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.