mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
50 lines
900 B
C++
50 lines
900 B
C++
#ifndef CSM_PREFS_COLOURSETTING_H
|
|
#define CSM_PREFS_COLOURSETTING_H
|
|
|
|
#include "setting.hpp"
|
|
|
|
#include <QColor>
|
|
|
|
#include <string>
|
|
#include <string_view>
|
|
#include <utility>
|
|
|
|
class QMutex;
|
|
class QObject;
|
|
class QWidget;
|
|
|
|
namespace CSVWidget
|
|
{
|
|
class ColorEditor;
|
|
}
|
|
|
|
namespace CSMPrefs
|
|
{
|
|
class Category;
|
|
|
|
class ColourSetting final : public TypedSetting<std::string>
|
|
{
|
|
Q_OBJECT
|
|
|
|
std::string mTooltip;
|
|
CSVWidget::ColorEditor* mWidget;
|
|
|
|
public:
|
|
explicit ColourSetting(
|
|
Category* parent, QMutex* mutex, std::string_view key, const QString& label, Settings::Index& index);
|
|
|
|
ColourSetting& setTooltip(const std::string& tooltip);
|
|
|
|
/// Return label, input widget.
|
|
SettingWidgets makeWidgets(QWidget* parent) override;
|
|
|
|
void updateWidget() override;
|
|
|
|
private slots:
|
|
|
|
void valueChanged();
|
|
};
|
|
}
|
|
|
|
#endif
|