mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 16:49:55 +00:00
54 lines
1.4 KiB
C++
54 lines
1.4 KiB
C++
|
|
#include "stringsetting.hpp"
|
|
|
|
#include <QLineEdit>
|
|
#include <QMutexLocker>
|
|
|
|
#include <components/settings/settings.hpp>
|
|
|
|
#include "category.hpp"
|
|
#include "state.hpp"
|
|
|
|
CSMPrefs::StringSetting::StringSetting (Category *parent, Settings::Manager *values,
|
|
QMutex *mutex, const std::string& key, const std::string& label, std::string default_)
|
|
: Setting (parent, values, mutex, key, label), mDefault (default_), mWidget(nullptr)
|
|
{}
|
|
|
|
CSMPrefs::StringSetting& CSMPrefs::StringSetting::setTooltip (const std::string& tooltip)
|
|
{
|
|
mTooltip = tooltip;
|
|
return *this;
|
|
}
|
|
|
|
std::pair<QWidget *, QWidget *> CSMPrefs::StringSetting::makeWidgets (QWidget *parent)
|
|
{
|
|
mWidget = new QLineEdit (QString::fromUtf8 (mDefault.c_str()), parent);
|
|
|
|
if (!mTooltip.empty())
|
|
{
|
|
QString tooltip = QString::fromUtf8 (mTooltip.c_str());
|
|
mWidget->setToolTip (tooltip);
|
|
}
|
|
|
|
connect (mWidget, SIGNAL (textChanged (QString)), this, SLOT (textChanged (QString)));
|
|
|
|
return std::make_pair (static_cast<QWidget *> (nullptr), mWidget);
|
|
}
|
|
|
|
void CSMPrefs::StringSetting::updateWidget()
|
|
{
|
|
if (mWidget)
|
|
{
|
|
mWidget->setText(QString::fromStdString(getValues().getString(getKey(), getParent()->getKey())));
|
|
}
|
|
}
|
|
|
|
void CSMPrefs::StringSetting::textChanged (const QString& text)
|
|
{
|
|
{
|
|
QMutexLocker lock (getMutex());
|
|
getValues().setString (getKey(), getParent()->getKey(), text.toStdString());
|
|
}
|
|
|
|
getParent()->getState()->update (*this);
|
|
}
|