mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 12:42:11 +00:00
101c147217
preference 1. Included updated status icons, added base.png 2. Added doxygen comments CSV / CSM Settings classes 3. Implemented Glorf's code for window size preference 4. Minor changes code that searches maps in CSV / CSM Settings classes 5. Removed CSVSettings::SamplePage class 6. Other minor code maintenance / improvements
34 lines
741 B
C++
34 lines
741 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);
|
|
|
|
void initializeWidgets (const CSMSettings::SettingMap &settings);
|
|
void setupUi();
|
|
|
|
private:
|
|
|
|
/// User preference view of the record status delegate's icon / text setting
|
|
GroupBlockDef *setupRecordStatusDisplay();
|
|
|
|
signals:
|
|
|
|
/// Signals up for changes to editor application-level settings
|
|
void signalUpdateEditorSetting (const QString &settingName, const QString &settingValue);
|
|
|
|
public slots:
|
|
};
|
|
}
|
|
|
|
#endif // EDITORPAGE_HPP
|