You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
877 B
C++
43 lines
877 B
C++
#ifndef CSM_PREFS_COLOURSETTING_H
|
|
#define CSM_PREFS_COLOURSETTING_H
|
|
|
|
#include "setting.hpp"
|
|
|
|
#include <QColor>
|
|
|
|
namespace CSVWidget
|
|
{
|
|
class ColorEditor;
|
|
}
|
|
|
|
namespace CSMPrefs
|
|
{
|
|
class ColourSetting : public Setting
|
|
{
|
|
Q_OBJECT
|
|
|
|
std::string mTooltip;
|
|
QColor mDefault;
|
|
CSVWidget::ColorEditor* mWidget;
|
|
|
|
public:
|
|
|
|
ColourSetting (Category *parent, Settings::Manager *values,
|
|
QMutex *mutex, const std::string& key, const std::string& label,
|
|
QColor default_);
|
|
|
|
ColourSetting& setTooltip (const std::string& tooltip);
|
|
|
|
/// Return label, input widget.
|
|
virtual std::pair<QWidget *, QWidget *> makeWidgets (QWidget *parent);
|
|
|
|
virtual void updateWidget();
|
|
|
|
private slots:
|
|
|
|
void valueChanged();
|
|
};
|
|
}
|
|
|
|
#endif
|