mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 09:35:28 +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
|