mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-30 09:15:35 +00:00
28 lines
528 B
C++
28 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
|