You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

34 line
492 B

  1. #ifndef CMAINPAGE_H
  2. #define CMAINPAGE_H
  3. #include <QPixmap>
  4. #include <QWidget>
  5. #include <QLabel>
  6. class CCableTestBench;
  7. namespace Ui {
  8. class CMainPage;
  9. }
  10. class CMainPage : public QWidget
  11. {
  12. Q_OBJECT
  13. public:
  14. explicit CMainPage(QWidget *parent = 0);
  15. ~CMainPage();
  16. CCableTestBench *mProgramHandle;
  17. QPixmap mLedONPixmap, mLedOFFPixmap;
  18. QLabel *test;
  19. private:
  20. Ui::CMainPage *ui;
  21. public slots:
  22. void InspVisuelleBtnClicked();
  23. };
  24. #endif // CMAINPAGE_H