41 lines
601 B
C++
41 lines
601 B
C++
#ifndef OPTIONSPAGE_H
|
|
#define OPTIONSPAGE_H
|
|
|
|
#include <QWidget>
|
|
#include "TestBenchSettings.h"
|
|
|
|
|
|
namespace Ui {
|
|
class COptionsPage;
|
|
}
|
|
|
|
class CCableTestBench;
|
|
|
|
class COptionsPage : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit COptionsPage(QWidget *parent = 0);
|
|
~COptionsPage();
|
|
|
|
CCableTestBench *mProgramHandle;
|
|
|
|
int GetCurrentOptions(CTestBenchSettings *Settings);
|
|
int SetCurrentOptions(CTestBenchSettings *Settings);
|
|
|
|
private:
|
|
Ui::COptionsPage *ui;
|
|
|
|
public slots:
|
|
|
|
void OptionChanged();
|
|
|
|
signals:
|
|
void CurrentOptionsChanged();
|
|
|
|
|
|
};
|
|
|
|
#endif // OPTIONSPAGE_H
|