2013-06-15 11:40:18 +00:00
|
|
|
#ifndef EDITORPAGE_HPP
|
|
|
|
#define EDITORPAGE_HPP
|
2013-05-08 01:36:34 +00:00
|
|
|
|
2013-06-15 11:40:18 +00:00
|
|
|
#include "support.hpp"
|
2013-05-08 01:36:34 +00:00
|
|
|
#include "abstractpage.hpp"
|
|
|
|
|
2013-06-15 11:40:18 +00:00
|
|
|
namespace CSVSettings
|
|
|
|
{
|
2013-05-08 01:36:34 +00:00
|
|
|
class EditorPage : public AbstractPage
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2013-06-15 11:40:18 +00:00
|
|
|
explicit EditorPage(QWidget *parent = 0);
|
|
|
|
explicit EditorPage (const QString &pageName, QWidget* parent = 0);
|
2013-05-08 01:36:34 +00:00
|
|
|
|
2013-05-11 10:55:46 +00:00
|
|
|
void initializeWidgets (const CSMSettings::SettingMap &settings);
|
2013-06-15 11:40:18 +00:00
|
|
|
void setupUi();
|
|
|
|
|
|
|
|
private:
|
|
|
|
GroupBlockDef *setupRecordStatusDisplay();
|
2013-05-08 01:36:34 +00:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void signalUpdateEditorSetting (const QString &settingName, const QString &settingValue);
|
2013-06-15 11:40:18 +00:00
|
|
|
|
|
|
|
public slots:
|
2013-05-08 01:36:34 +00:00
|
|
|
};
|
|
|
|
}
|
2013-06-15 11:40:18 +00:00
|
|
|
|
|
|
|
#endif // EDITORPAGE_HPP
|