mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
50 lines
974 B
C++
50 lines
974 B
C++
#ifndef CSM_PREFS_MODIFIERSETTING_H
|
|
#define CSM_PREFS_MODIFIERSETTING_H
|
|
|
|
#include "setting.hpp"
|
|
|
|
#include <string>
|
|
#include <utility>
|
|
|
|
class QMutex;
|
|
class QObject;
|
|
class QWidget;
|
|
class QEvent;
|
|
class QPushButton;
|
|
|
|
namespace CSMPrefs
|
|
{
|
|
class Category;
|
|
|
|
class ModifierSetting final : public TypedSetting<std::string>
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ModifierSetting(
|
|
Category* parent, QMutex* mutex, std::string_view key, const QString& label, Settings::Index& index);
|
|
|
|
SettingWidgets makeWidgets(QWidget* parent) override;
|
|
|
|
void updateWidget() override;
|
|
|
|
protected:
|
|
bool eventFilter(QObject* target, QEvent* event) override;
|
|
|
|
private:
|
|
bool handleEvent(QObject* target, int mod, int value);
|
|
|
|
void storeValue(int modifier);
|
|
void resetState();
|
|
|
|
QPushButton* mButton;
|
|
bool mEditorActive;
|
|
|
|
private slots:
|
|
|
|
void buttonToggled(bool checked);
|
|
};
|
|
}
|
|
|
|
#endif
|