source:
orxonox.OLD/trunk/src/lib/gui/qt/gui_general.h
@
10146
Last change on this file since 10146 was 8145, checked in by bensch, 18 years ago | |
---|---|
File size: 602 bytes |
Rev | Line | |
---|---|---|
[2588] | 1 | /*! |
[7585] | 2 | \file gui_general.h |
3 | \brief File that holds the class that creates the General-Options. | |
[2588] | 4 | */ |
[7585] | 5 | #ifndef _GUI_GENERAL_H |
6 | #define _GUI_GENERAL_H | |
[1809] | 7 | |
[7484] | 8 | #include "../gui_element.h" |
[7481] | 9 | #include <vector> |
10 | #include <string> | |
[7534] | 11 | #include <QtGui/QGroupBox> |
[1809] | 12 | |
[7603] | 13 | |
[7481] | 14 | namespace OrxGui |
[2018] | 15 | { |
[7603] | 16 | class QtGuiInputLine; |
17 | ||
[7495] | 18 | //! Class that creates the Audio-Options. |
[7593] | 19 | class GuiGeneral : public QGroupBox, public OrxGui::Element |
[7481] | 20 | { |
[7593] | 21 | Q_OBJECT |
22 | ||
[7481] | 23 | public: |
[7585] | 24 | GuiGeneral(OrxGui::Gui* gui); |
25 | virtual ~GuiGeneral(); | |
[6981] | 26 | |
[7603] | 27 | public slots: |
28 | void openDataFileDialog(); | |
[7593] | 29 | |
[7603] | 30 | private: |
31 | QtGuiInputLine* dataDir; | |
[7481] | 32 | }; |
33 | } | |
[3624] | 34 | |
[7585] | 35 | #endif /* _GUI_GENERAL_H */ |
Note: See TracBrowser
for help on using the repository browser.