Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/qt_gui/src/lib/gui/qt_gui/gui_general.h @ 7593

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

qt_gui: File-Selector-Dialog

File size: 540 bytes
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
13namespace OrxGui
14{
15  //! Class that creates the Audio-Options.
16  class GuiGeneral : public QGroupBox, public OrxGui::Element
17  {
18    Q_OBJECT
19
20  public:
21    GuiGeneral(OrxGui::Gui* gui);
22    virtual ~GuiGeneral();
23
24    public slots:
25      void openDataFileDialog();
26
27  };
28}
29
30#endif /* _GUI_GENERAL_H */
Note: See TracBrowser for help on using the repository browser.