mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-24 00:23:53 +00:00
8d0f350446
.ui file.
30 lines
504 B
C++
30 lines
504 B
C++
#ifndef BLANKPAGE_HPP
|
|
#define BLANKPAGE_HPP
|
|
|
|
#include "abstractpage.hpp"
|
|
|
|
class QGroupBox;
|
|
|
|
namespace CsSettings {
|
|
|
|
class UserSettings;
|
|
class AbstractBlock;
|
|
|
|
class BlankPage : public AbstractPage
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
BlankPage (QWidget *parent = 0);
|
|
BlankPage (const QString &title, QWidget *parent);
|
|
|
|
void setupUi();
|
|
void initializeWidgets (const SettingMap &settings);
|
|
|
|
private:
|
|
void initPage();
|
|
};
|
|
}
|
|
|
|
#endif // BLANKPAGE_HPP
|