| Line |   | 
|---|
| 1 | /*! | 
|---|
| 2 |   \file gui_general.h | 
|---|
| 3 |   \brief File that holds the class that creates the General-Options. | 
|---|
| 4 | */ | 
|---|
| 5 | #ifndef _GUI_GENERAL_H | 
|---|
| 6 | #define _GUI_GENERAL_H | 
|---|
| 7 |  | 
|---|
| 8 | #include "../gui_element.h" | 
|---|
| 9 | #include <vector> | 
|---|
| 10 | #include <string> | 
|---|
| 11 | #include <QtGui/QGroupBox> | 
|---|
| 12 |  | 
|---|
| 13 |  | 
|---|
| 14 | namespace OrxGui | 
|---|
| 15 | { | 
|---|
| 16 |   class QtGuiInputLine; | 
|---|
| 17 |  | 
|---|
| 18 |   //! Class that creates the Audio-Options. | 
|---|
| 19 |   class GuiGeneral : public QGroupBox, public OrxGui::Element | 
|---|
| 20 |   { | 
|---|
| 21 |     Q_OBJECT | 
|---|
| 22 |  | 
|---|
| 23 |   public: | 
|---|
| 24 |     GuiGeneral(OrxGui::Gui* gui); | 
|---|
| 25 |     virtual ~GuiGeneral(); | 
|---|
| 26 |  | 
|---|
| 27 |   public slots: | 
|---|
| 28 |     void openDataFileDialog(); | 
|---|
| 29 |  | 
|---|
| 30 |   private: | 
|---|
| 31 |     QtGuiInputLine* dataDir; | 
|---|
| 32 |   }; | 
|---|
| 33 | } | 
|---|
| 34 |  | 
|---|
| 35 | #endif /* _GUI_GENERAL_H */ | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.