1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 09:49:55 +00:00
openmw-tes3mp/apps/opencs/view/prefs/pagebase.hpp

36 lines
556 B
C++
Raw Normal View History

2015-12-08 11:04:45 +00:00
#ifndef CSV_PREFS_PAGEBASE_H
#define CSV_PREFS_PAGEBASE_H
#include <QScrollArea>
namespace CSMPrefs
{
class Category;
}
namespace CSVPrefs
{
class PageBase : public QScrollArea
{
Q_OBJECT
CSMPrefs::Category& mCategory;
public:
PageBase (CSMPrefs::Category& category, QWidget *parent);
CSMPrefs::Category& getCategory();
2017-05-07 05:05:50 +00:00
public slots:
void resetCategory();
private:
virtual void refresh() {};
2015-12-08 11:04:45 +00:00
};
}
#endif