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.
 
 
 
 

41 line
601 B

  1. #ifndef OPTIONSPAGE_H
  2. #define OPTIONSPAGE_H
  3. #include <QWidget>
  4. #include "TestBenchSettings.h"
  5. namespace Ui {
  6. class COptionsPage;
  7. }
  8. class CCableTestBench;
  9. class COptionsPage : public QWidget
  10. {
  11. Q_OBJECT
  12. public:
  13. explicit COptionsPage(QWidget *parent = 0);
  14. ~COptionsPage();
  15. CCableTestBench *mProgramHandle;
  16. int GetCurrentOptions(CTestBenchSettings *Settings);
  17. int SetCurrentOptions(CTestBenchSettings *Settings);
  18. private:
  19. Ui::COptionsPage *ui;
  20. public slots:
  21. void OptionChanged();
  22. signals:
  23. void CurrentOptionsChanged();
  24. };
  25. #endif // OPTIONSPAGE_H