46 lines
662 B
C++
46 lines
662 B
C++
#ifndef LOGGINGSETTINGSPAGE_H
|
|
#define LOGGINGSETTINGSPAGE_H
|
|
|
|
#include <QWidget>
|
|
#include "CloudParams.h"
|
|
|
|
|
|
class COtarcikCan;
|
|
|
|
namespace Ui {
|
|
class CLoggingSettingsPage;
|
|
}
|
|
|
|
class CLoggingSettingsPage : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit CLoggingSettingsPage(QWidget *parent = 0);
|
|
~CLoggingSettingsPage();
|
|
|
|
int SetCloudParams(const CCloudParams *CloudParams);
|
|
|
|
|
|
COtarcikCan *mProgramHandle;
|
|
|
|
private:
|
|
int UpdateConfigPage();
|
|
|
|
|
|
Ui::CLoggingSettingsPage *ui;
|
|
|
|
bool EditMode;
|
|
CCloudParams mCloudParams;
|
|
|
|
|
|
|
|
public slots:
|
|
void ModifyParamsBtnPressed();
|
|
void CancelBtnPressed();
|
|
|
|
|
|
};
|
|
|
|
#endif // LOGGINGSETTINGSPAGE_H
|