Advertisement
WildReanimator

window.h

Nov 23rd, 2012
822
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #ifndef WINDOW_H
  2. #define WINDOW_H
  3.  
  4. #include <QWidget>
  5.  
  6. QT_BEGIN_NAMESPACE
  7. class QCheckBox;
  8. class QComboBox;
  9. class QLabel;
  10. class QRadioButton;
  11. class QGridLayout;
  12. class QSlider;
  13. class RenderArea;
  14. QT_END_NAMESPACE
  15.  
  16. class Window : public QWidget
  17. {
  18.     Q_OBJECT
  19.    
  20. public:
  21.     Window();
  22.  
  23. private slots:
  24.     void algChanged();
  25.     void inpChanged();
  26.     void parChanged();
  27.  
  28. private:
  29.     RenderArea *renderArea;
  30.     QLabel *algLabel;
  31.     QLabel *parLabel;
  32.     QComboBox *algComboBox;
  33.     QRadioButton *inpFlag;
  34.     QSlider *paramSlider;
  35. };
  36.  
  37. #endif // WINDOW_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement