Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7543 in orxonox.OLD


Ignore:
Timestamp:
May 5, 2006, 6:00:33 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: Quit button Works… more like start button, but it works

Location:
branches/qt_gui/src/lib/gui/qt_gui
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/qt_gui/src/lib/gui/qt_gui/qt_gui.h

    r7534 r7543  
    1414namespace OrxGui
    1515{
    16   class QtGui : public OrxGui::Gui, QApplication
     16  class QtGui : public QApplication, public OrxGui::Gui
    1717  {
     18    Q_OBJECT
    1819    public:
    1920      QtGui(int argc, char** argv);
  • branches/qt_gui/src/lib/gui/qt_gui/qt_gui_elements.h

    r7539 r7543  
    2828  class QtGuiCheckBox : public QCheckBox, public Saveable
    2929  {
     30    Q_OBJECT
    3031  public:
    3132    QtGuiCheckBox(const std::string& name, bool defaultValue = false);
     
    3637
    3738  public slots:
    38     void setCheckValue(int);
     39//    void setCheckValue(int);
    3940
    4041  signals:
    41     void checkValueChanged();
     42//    void checkValueChanged();
    4243  };
    4344
    4445  class QtGuiSlider : public QSlider, public Saveable
    4546  {
     47    Q_OBJECT
     48
    4649  public:
    4750    QtGuiSlider();
     
    4952
    5053  public slots:
    51     void setSliderValue(float);
     54 //   void setSliderValue(float);
    5255
    5356  signals:
    54     void sliderValueChanged(float);
     57//    void sliderValueChanged(float);
    5558  };
    5659
     
    5861  class QtGuiComboBox : public QComboBox, public OrxGui::Saveable
    5962  {
     63    Q_OBJECT
     64
    6065    public:
    6166    QtGuiComboBox(const std::string& name);
Note: See TracChangeset for help on using the changeset viewer.