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.
 
 
 
 

40 rivejä
627 B

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