Changeset 7543 in orxonox.OLD for branches/qt_gui
- Timestamp:
- May 5, 2006, 6:00:33 PM (19 years ago)
- 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 14 14 namespace OrxGui 15 15 { 16 class QtGui : public OrxGui::Gui, QApplication16 class QtGui : public QApplication, public OrxGui::Gui 17 17 { 18 Q_OBJECT 18 19 public: 19 20 QtGui(int argc, char** argv); -
branches/qt_gui/src/lib/gui/qt_gui/qt_gui_elements.h
r7539 r7543 28 28 class QtGuiCheckBox : public QCheckBox, public Saveable 29 29 { 30 Q_OBJECT 30 31 public: 31 32 QtGuiCheckBox(const std::string& name, bool defaultValue = false); … … 36 37 37 38 public slots: 38 void setCheckValue(int);39 // void setCheckValue(int); 39 40 40 41 signals: 41 void checkValueChanged();42 // void checkValueChanged(); 42 43 }; 43 44 44 45 class QtGuiSlider : public QSlider, public Saveable 45 46 { 47 Q_OBJECT 48 46 49 public: 47 50 QtGuiSlider(); … … 49 52 50 53 public slots: 51 void setSliderValue(float);54 // void setSliderValue(float); 52 55 53 56 signals: 54 void sliderValueChanged(float);57 // void sliderValueChanged(float); 55 58 }; 56 59 … … 58 61 class QtGuiComboBox : public QComboBox, public OrxGui::Saveable 59 62 { 63 Q_OBJECT 64 60 65 public: 61 66 QtGuiComboBox(const std::string& name);
Note: See TracChangeset
for help on using the changeset viewer.