mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 04:19:55 +00:00
101c147217
preference 1. Included updated status icons, added base.png 2. Added doxygen comments CSV / CSM Settings classes 3. Implemented Glorf's code for window size preference 4. Minor changes code that searches maps in CSV / CSM Settings classes 5. Removed CSVSettings::SamplePage class 6. Other minor code maintenance / improvements
28 lines
527 B
C++
28 lines
527 B
C++
#ifndef BLANKPAGE_HPP
|
|
#define BLANKPAGE_HPP
|
|
|
|
#include "abstractpage.hpp"
|
|
|
|
class QGroupBox;
|
|
|
|
namespace CSVSettings {
|
|
|
|
class UserSettings;
|
|
class AbstractBlock;
|
|
|
|
/// Derived page with no widgets
|
|
/// Reference use only.
|
|
class BlankPage : public AbstractPage
|
|
{
|
|
|
|
public:
|
|
|
|
BlankPage (QWidget *parent = 0);
|
|
BlankPage (const QString &title, QWidget *parent);
|
|
|
|
void setupUi();
|
|
void initializeWidgets (const CSMSettings::SettingMap &settings);
|
|
};
|
|
}
|
|
|
|
#endif // BLANKPAGE_HPP
|