Advertisement
Guest User

Untitled

a guest
May 26th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.75 KB | None | 0 0
  1. #ifndef ALL_H
  2. #define ALL_H
  3. #include<QDialog>
  4. class QPushButton;
  5. class QLabel;
  6. class QLineEdit;
  7. class QRadioButton;
  8. class QCommandLinkButton;
  9. class QCheckBox;
  10. class QSlider;
  11. class QSpinBox;
  12. class QMovie;
  13. class all : public QDialog
  14. {
  15.     Q_OBJECT
  16.     public:
  17.         all(QWidget *parent = 0);
  18.    
  19.         /*Slots Used*/
  20.     public slots:
  21.         void state(void){}
  22.         void booth(void){}
  23.         void jump(void){}
  24.         void hello(void){}
  25.         void released(void){}
  26.         void sit(){}
  27.         void thika(){}
  28.         void slider(){}
  29.         void spinbox(void){}
  30.  
  31.     private:
  32.         QPushButton * pbutt;
  33.         QLabel * label;
  34.         QLineEdit * ledit;
  35.         QRadioButton * rbutt;
  36.         QCommandLinkButton * cmdbutt;
  37.         QCheckBox * box;
  38.         QSlider * slide;
  39.         QMovie * pic;
  40.         QLabel * piclabel;
  41.         QSpinBox * spin;
  42. };
  43. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement