2013-05-08 01:33:42 +00:00
|
|
|
#ifndef BLANKPAGE_HPP
|
|
|
|
#define BLANKPAGE_HPP
|
|
|
|
|
|
|
|
#include "abstractpage.hpp"
|
|
|
|
|
|
|
|
class QGroupBox;
|
|
|
|
|
2013-05-11 10:55:46 +00:00
|
|
|
namespace CSVSettings {
|
2013-05-08 01:33:42 +00:00
|
|
|
|
|
|
|
class UserSettings;
|
|
|
|
class AbstractBlock;
|
|
|
|
|
2013-06-20 23:06:25 +00:00
|
|
|
/// Derived page with no widgets
|
|
|
|
/// Reference use only.
|
2013-05-08 01:33:42 +00:00
|
|
|
class BlankPage : public AbstractPage
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
BlankPage (QWidget *parent = 0);
|
|
|
|
BlankPage (const QString &title, QWidget *parent);
|
|
|
|
|
|
|
|
void setupUi();
|
2013-05-11 10:55:46 +00:00
|
|
|
void initializeWidgets (const CSMSettings::SettingMap &settings);
|
2013-05-08 01:33:42 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // BLANKPAGE_HPP
|