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);
|
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:
|
2013-06-20 23:06:25 +00:00
|
|
|
|
|
|
|
/// User preference view of the record status delegate's icon / text setting
|
2013-06-15 11:40:18 +00:00
|
|
|
GroupBlockDef *setupRecordStatusDisplay();
|
2013-05-08 01:36:34 +00:00
|
|
|
|
|
|
|
signals:
|
2013-06-20 23:06:25 +00:00
|
|
|
|
|
|
|
/// Signals up for changes to editor application-level settings
|
2013-05-08 01:36:34 +00:00
|
|
|
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
|