Changeset 15 in flair-src for trunk/tools/FlairGCS/src/SpinBox.h


Ignore:
Timestamp:
04/08/16 15:40:57 (8 years ago)
Author:
Bayard Gildas
Message:

sources reformatted with flair-format-dir script

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/FlairGCS/src/SpinBox.h

    r10 r15  
    1111class QSpinBox;
    1212
    13 class SpinBox: public FormLayout
    14 {
    15     Q_OBJECT
     13class SpinBox : public FormLayout {
     14  Q_OBJECT
    1615
    17     public:
    18         SpinBox(Layout* parent,int row, int col,QString name,QString suffix,int value,int min,int max,int step);
    19         ~SpinBox();
     16public:
     17  SpinBox(Layout *parent, int row, int col, QString name, QString suffix,
     18          int value, int min, int max, int step);
     19  ~SpinBox();
    2020
    21     private:
    22         QSpinBox* spinbox;
    23         int spinbox_value;
    24         void SetUptodate(void);
    25         void Reset(void);
    26         void LoadEvent(QDomElement dom);
     21private:
     22  QSpinBox *spinbox;
     23  int spinbox_value;
     24  void SetUptodate(void);
     25  void Reset(void);
     26  void LoadEvent(QDomElement dom);
    2727
    28         void ui_to_var(void);
    29         void ui_to_xml(void);
     28  void ui_to_var(void);
     29  void ui_to_xml(void);
    3030
    31     private slots:
    32         void valuechanged(int value);
     31private slots:
     32  void valuechanged(int value);
    3333};
    3434
Note: See TracChangeset for help on using the changeset viewer.