mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-11 18:37:08 +00:00
29 lines
528 B
C++
29 lines
528 B
C++
|
#ifndef WINDOWPAGE_H
|
||
|
#define WINDOWPAGE_H
|
||
|
|
||
|
#include "abstractpage.hpp"
|
||
|
|
||
|
class QGroupBox;
|
||
|
|
||
|
namespace CSVSettings {
|
||
|
|
||
|
class UserSettings;
|
||
|
class AbstractBlock;
|
||
|
|
||
|
class WindowPage : public AbstractPage
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
|
||
|
WindowPage(QWidget *parent = 0);
|
||
|
|
||
|
void setupUi();
|
||
|
void initializeWidgets (const CSMSettings::SettingMap &settings);
|
||
|
|
||
|
signals:
|
||
|
void signalUpdateEditorSetting (const QString &settingName, const QString &settingValue);
|
||
|
};
|
||
|
}
|
||
|
#endif //WINDOWPAGE_H
|