Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 5, 2006, 10:44:18 AM (18 years ago)
Author:
bensch
Message:

orxonox/qt_gui: elements defined

File:
1 edited

Legend:

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

    r7534 r7539  
    2828
    2929#include <QtGui/QLayout>
    30 #include "sdlincl.h"
    3130#include "debug.h"
    3231
    33 #include <QtGui/QPushButton>
    34 #include <QtGui/QCheckBox>
    35 #include <QtGui/QComboBox>
     32#include "qt_gui_elements.h"
    3633
    3734namespace OrxGui
     
    4643
    4744    {
    48       QCheckBox* fullscreen = new QCheckBox(QString("Enabled"));
     45      QtGuiCheckBox* fullscreen = new QtGuiCheckBox("Enabled", true);
    4946      //fullscreen->setName();
    5047      layout->addWidget(fullscreen, 0, 0);
    5148
    52       QCheckBox* wireframe = new QCheckBox("Test");
     49      QtGuiCheckBox* wireframe = new QtGuiCheckBox("Test");
    5350      layout->addWidget(wireframe, 1, 0);
    5451
    55       QComboBox* resolution = new QComboBox();
     52      QtGuiComboBox* resolution = new QtGuiComboBox("SoundCard");
    5653      layout->addWidget(resolution, 2, 0);
    5754
Note: See TracChangeset for help on using the changeset viewer.