Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 2, 2006, 11:39:54 PM (18 years ago)
Author:
bensch
Message:

orxonox/qt_gui: more stuff

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/qt_gui/src/lib/gui/qt_gui/gui_video.cc

    r7481 r7484  
    2626
    2727#include "gui_video.h"
     28
     29#include <qlayout.h>
    2830#include "sdlincl.h"
    2931#include "debug.h"
     32
     33#include <qpushbutton.h>
     34#include <qcheckbox.h>
     35#include <qcombobox.h>
    3036
    3137namespace OrxGui
     
    3541  */
    3642  GuiVideo::GuiVideo()
     43  : Element("Video")
    3744  {
     45    QGridLayout* layout = new QGridLayout(this);
     46    {
     47      QCheckBox* fullscreen = new QCheckBox(QString("FullScreen"), NULL);
     48      //fullscreen->setName();
     49      layout->addWidget(fullscreen, 1, 1);
     50
     51    }
     52
     53
     54
    3855/*    Frame* videoFrame;        //!< The Frame that holds the video options.
    3956
Note: See TracChangeset for help on using the changeset viewer.