Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 7, 2006, 2:25:16 PM (18 years ago)
Author:
bensch
Message:

orxonox/qt_gui: more elaborate Saveables

File:
1 edited

Legend:

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

    r7551 r7555  
    3030    Q_OBJECT
    3131  public:
    32     QtGuiCheckBox(const std::string& name, bool defaultValue = false);
     32    QtGuiCheckBox(const std::string& name, SaveableGroup* group, bool defaultValue = false);
    3333    virtual ~QtGuiCheckBox() {};
    3434
     
    3737
    3838  public slots:
    39 //    void setCheckValue(int);
     39    //    void setCheckValue(int);
    4040
    4141  signals:
    42 //    void checkValueChanged();
     42    //    void checkValueChanged();
    4343  };
    4444
     
    4848
    4949  public:
    50     QtGuiSlider(const std::string& name, Qt::Orientation orientation = Qt::Horizontal);
     50    QtGuiSlider(const std::string& name, SaveableGroup* group, Qt::Orientation orientation = Qt::Horizontal);
    5151    virtual ~QtGuiSlider();
    5252
    5353  public slots:
    54  //   void setSliderValue(float);
     54    //   void setSliderValue(float);
    5555
    5656  signals:
    57 //    void sliderValueChanged(float);
     57    //    void sliderValueChanged(float);
    5858  };
    5959
     
    6363    Q_OBJECT
    6464
    65     public:
    66     QtGuiComboBox(const std::string& name);
     65  public:
     66    QtGuiComboBox(const std::string& name, SaveableGroup* group);
    6767
    6868    virtual void load(const MultiType& value);
Note: See TracChangeset for help on using the changeset viewer.