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.
 
 
 
 

38 line
705 B

  1. #ifndef MAINWINDOW_H
  2. #define MAINWINDOW_H
  3. #include <QMainWindow>
  4. #include <QPushButton>
  5. #include <QGridLayout>
  6. #include <QLabel>
  7. #include <QTextEdit>
  8. #include "MainPage.h"
  9. #include "VisualInspectionPage.h"
  10. #include "CableTestPage.h"
  11. #include "VisualInspectionResult.h"
  12. class CCableTestBench;
  13. class MainWindow : public QMainWindow
  14. {
  15. Q_OBJECT
  16. public:
  17. MainWindow(QWidget *parent = 0,CCableTestBench* ProgramHandle = 0);
  18. ~MainWindow();
  19. CMainPage *mMainPage;
  20. CCableTestBench *mProgramHandle;
  21. CVisualInspectionPage *mVisualInspPage;
  22. CCableTestPage *mCableTestPage;
  23. int ShowInspectVisuellePage();
  24. int ShowCableTestPage();
  25. public slots:
  26. };
  27. #endif // MAINWINDOW_H