mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 13:19:54 +00:00
700d55f1fb
Implemented updating editor application from preferences menu, loading settings when editor loads, adding Record Status Display prefernce. Fixed multiple bugs, made changes to CSM(V)Settings classes to make implementing new prefrences easier. Rewrote CSMSettings::UserSettings to retain last-loaded settings. Adjusted icon position in Record Status column Capitalized status text Added delegate to referenceables table
30 lines
658 B
C++
30 lines
658 B
C++
#ifndef EDITORPAGE_HPP
|
|
#define EDITORPAGE_HPP
|
|
|
|
#include "support.hpp"
|
|
#include "abstractpage.hpp"
|
|
|
|
namespace CSVSettings
|
|
{
|
|
class EditorPage : public AbstractPage
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit EditorPage(QWidget *parent = 0);
|
|
explicit EditorPage (const QString &pageName, QWidget* parent = 0);
|
|
|
|
void initializeWidgets (const CSMSettings::SettingMap &settings);
|
|
void setupUi();
|
|
|
|
private:
|
|
GroupBlockDef *setupRecordStatusDisplay();
|
|
|
|
signals:
|
|
void signalUpdateEditorSetting (const QString &settingName, const QString &settingValue);
|
|
|
|
public slots:
|
|
};
|
|
}
|
|
|
|
#endif // EDITORPAGE_HPP
|