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.
63 lines
1.7 KiB
C++
63 lines
1.7 KiB
C++
|
|
#include "coloursetting.hpp"
|
|
|
|
#include <QLabel>
|
|
#include <QMutexLocker>
|
|
#include <QString>
|
|
|
|
#include <components/settings/settings.hpp>
|
|
|
|
#include "../../view/widget/coloreditor.hpp"
|
|
|
|
#include "category.hpp"
|
|
#include "state.hpp"
|
|
|
|
CSMPrefs::ColourSetting::ColourSetting (Category *parent, Settings::Manager *values,
|
|
QMutex *mutex, const std::string& key, const std::string& label, QColor default_)
|
|
: Setting (parent, values, mutex, key, label), mDefault (default_), mWidget(0)
|
|
{}
|
|
|
|
CSMPrefs::ColourSetting& CSMPrefs::ColourSetting::setTooltip (const std::string& tooltip)
|
|
{
|
|
mTooltip = tooltip;
|
|
return *this;
|
|
}
|
|
|
|
std::pair<QWidget *, QWidget *> CSMPrefs::ColourSetting::makeWidgets (QWidget *parent)
|
|
{
|
|
QLabel *label = new QLabel (QString::fromUtf8 (getLabel().c_str()), parent);
|
|
|
|
mWidget = new CSVWidget::ColorEditor (mDefault, parent);
|
|
|
|
if (!mTooltip.empty())
|
|
{
|
|
QString tooltip = QString::fromUtf8 (mTooltip.c_str());
|
|
label->setToolTip (tooltip);
|
|
mWidget->setToolTip (tooltip);
|
|
}
|
|
|
|
connect (mWidget, SIGNAL (pickingFinished()), this, SLOT (valueChanged()));
|
|
|
|
return std::make_pair (label, mWidget);
|
|
}
|
|
|
|
void CSMPrefs::ColourSetting::updateWidget()
|
|
{
|
|
if (mWidget)
|
|
{
|
|
mWidget->setColor(QString::fromStdString
|
|
(getValues().getString(getKey(), getParent()->getKey())));
|
|
}
|
|
}
|
|
|
|
void CSMPrefs::ColourSetting::valueChanged()
|
|
{
|
|
CSVWidget::ColorEditor& widget = dynamic_cast<CSVWidget::ColorEditor&> (*sender());
|
|
{
|
|
QMutexLocker lock (getMutex());
|
|
getValues().setString (getKey(), getParent()->getKey(), widget.color().name().toUtf8().data());
|
|
}
|
|
|
|
getParent()->getState()->update (*this);
|
|
}
|