1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-18 04:10:06 +00:00
OpenMW/apps/opencs/view/prefs/page.hpp

39 lines
561 B
C++
Raw Normal View History

2015-12-08 16:21:58 +00:00
#ifndef CSV_PREFS_PAGE_H
#define CSV_PREFS_PAGE_H
#include "pagebase.hpp"
class QGridLayout;
class QWidget;
2015-12-08 16:21:58 +00:00
namespace CSMPrefs
{
class Setting;
}
namespace CSVPrefs
{
class Page : public PageBase
{
Q_OBJECT
QGridLayout *mGrid;
QWidget* mParent;
QWidget* mWidget;
2015-12-08 16:21:58 +00:00
public:
Page (CSMPrefs::Category& category, QWidget *parent);
void addSetting (CSMPrefs::Setting *setting);
private:
void refresh();
void init();
2015-12-08 16:21:58 +00:00
};
}
#endif