1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 15:35:23 +00:00
2017-05-07 16:51:11 +12:00

39 lines
561 B
C++

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