1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 21:49:56 +00:00
openmw-tes3mp/apps/opencs/view/prefs/pagebase.hpp
2020-10-16 22:18:54 +04:00

39 lines
612 B
C++

#ifndef CSV_PREFS_PAGEBASE_H
#define CSV_PREFS_PAGEBASE_H
#include <QScrollArea>
class QContextMenuEvent;
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();
protected:
void contextMenuEvent(QContextMenuEvent*) override;
private slots:
void resetCategory();
void resetAll();
};
}
#endif