Pouknouki

Header de fenetrePerso

Jul 14th, 2013
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.37 KB | None | 0 0
  1. #ifndef FENETREPERSO_G
  2. #define FENETREPERSO_G
  3.  
  4. #include <QApplication>
  5. #include <QWidget>
  6. #include <QPushButton>
  7. #include <QProgressBar>
  8. #include <QSlider>
  9.  
  10. class fenetrePerso : public QWidget {
  11.  
  12.     Q_OBJECT
  13.  
  14. public:
  15.     fenetrePerso();
  16.  
  17. public slots:
  18.     void changerTaille(int hauteur);
  19.  
  20. private:
  21.     QSlider *m_slider;
  22. };
  23.  
  24.  
  25. #endif // FENETREPERSO_G
Advertisement
Add Comment
Please, Sign In to add comment