2015-12-08 16:21:58 +00:00
|
|
|
#ifndef CSV_PREFS_PAGE_H
|
|
|
|
#define CSV_PREFS_PAGE_H
|
|
|
|
|
|
|
|
#include "pagebase.hpp"
|
|
|
|
|
|
|
|
class QGridLayout;
|
2022-10-19 17:02:00 +00:00
|
|
|
class QWidget;
|
|
|
|
class QObject;
|
2015-12-08 16:21:58 +00:00
|
|
|
|
|
|
|
namespace CSMPrefs
|
|
|
|
{
|
2022-10-19 17:02:00 +00:00
|
|
|
class Category;
|
2015-12-08 16:21:58 +00:00
|
|
|
class Setting;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace CSVPrefs
|
|
|
|
{
|
|
|
|
class Page : public PageBase
|
|
|
|
{
|
2022-09-22 18:26:05 +00:00
|
|
|
Q_OBJECT
|
2015-12-08 16:21:58 +00:00
|
|
|
|
2022-09-22 18:26:05 +00:00
|
|
|
QGridLayout* mGrid;
|
2015-12-08 16:21:58 +00:00
|
|
|
|
2022-09-22 18:26:05 +00:00
|
|
|
public:
|
|
|
|
Page(CSMPrefs::Category& category, QWidget* parent);
|
2015-12-08 16:21:58 +00:00
|
|
|
|
2022-09-22 18:26:05 +00:00
|
|
|
void addSetting(CSMPrefs::Setting* setting);
|
2015-12-08 16:21:58 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|