forked from mirror/openmw-tes3mp
a8b45e0a13
1. Declared QStringPair::isEmpty() const 2. Split the CsSettings namespace into two: CSMSettings and CSVSettings. (Required splitting the support.hpp file) 3. Declared several classes as _noqt in CMakeLists.txt for OpenCS
29 lines
501 B
C++
29 lines
501 B
C++
#ifndef BLANKPAGE_HPP
|
|
#define BLANKPAGE_HPP
|
|
|
|
#include "abstractpage.hpp"
|
|
|
|
class QGroupBox;
|
|
|
|
namespace CSVSettings {
|
|
|
|
class UserSettings;
|
|
class AbstractBlock;
|
|
|
|
class BlankPage : public AbstractPage
|
|
{
|
|
|
|
public:
|
|
|
|
BlankPage (QWidget *parent = 0);
|
|
BlankPage (const QString &title, QWidget *parent);
|
|
|
|
void setupUi();
|
|
void initializeWidgets (const CSMSettings::SettingMap &settings);
|
|
|
|
private:
|
|
void initPage();
|
|
};
|
|
}
|
|
|
|
#endif // BLANKPAGE_HPP
|