Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/gui/qt/gui_video.h

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

trunk: merged the gui back
merged with command:
svn merge -r8114:HEAD https://svn.orxonox.net/orxonox/branches/gui .
→ no conflicts

File size: 699 bytes
RevLine 
[2588]1/*!
[4048]2  \file gui_video.h
[2588]3  \brief File that holds the class that creates the Video-Options.
4*/
[4048]5#ifndef _GUI_VIDEO_H
6#define _GUI_VIDEO_H
[1809]7
[7484]8#include "../gui_element.h"
[7481]9#include <vector>
10#include <string>
[7534]11#include <QtGui/QGroupBox>
[1809]12
[7481]13namespace OrxGui
[2018]14{
[7481]15  //! Class that creates the Video-Options.
[7484]16  class GuiVideo : public OrxGui::Element, public QGroupBox
[7481]17  {
18  public:
[7549]19    GuiVideo(OrxGui::Gui* gui);
[7481]20    virtual ~GuiVideo();
[6981]21
[7481]22  private:
[7531]23    void getResolutions(std::vector<QString>& resolutionList);
[7481]24  };
[7598]25
26  class GuiAdvancedVideo : public OrxGui::Element, public QGroupBox
27  {
28    public:
29      GuiAdvancedVideo(OrxGui::Gui* gui);
30      virtual ~GuiAdvancedVideo();
31  };
[7481]32}
[3624]33
[4048]34#endif /* _GUI_VIDEO_H */
Note: See TracBrowser for help on using the repository browser.