mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 22:26:41 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			112 lines
		
	
	
	
		
			2.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			112 lines
		
	
	
	
		
			2.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| 
 | |
| #include "enumsetting.hpp"
 | |
| 
 | |
| #include <QLabel>
 | |
| #include <QComboBox>
 | |
| #include <QMutexLocker>
 | |
| 
 | |
| #include <components/settings/settings.hpp>
 | |
| 
 | |
| #include "category.hpp"
 | |
| #include "state.hpp"
 | |
| 
 | |
| 
 | |
| CSMPrefs::EnumValue::EnumValue (const std::string& value, const std::string& tooltip)
 | |
| : mValue (value), mTooltip (tooltip)
 | |
| {}
 | |
| 
 | |
| CSMPrefs::EnumValue::EnumValue (const char *value)
 | |
| : mValue (value)
 | |
| {}
 | |
| 
 | |
| 
 | |
| CSMPrefs::EnumValues& CSMPrefs::EnumValues::add (const EnumValues& values)
 | |
| {
 | |
|     mValues.insert (mValues.end(), values.mValues.begin(), values.mValues.end());
 | |
|     return *this;
 | |
| }
 | |
| 
 | |
| CSMPrefs::EnumValues& CSMPrefs::EnumValues::add (const EnumValue& value)
 | |
| {
 | |
|     mValues.push_back (value);
 | |
|     return *this;
 | |
| }
 | |
| 
 | |
| CSMPrefs::EnumValues& CSMPrefs::EnumValues::add (const std::string& value, const std::string& tooltip)
 | |
| {
 | |
|     mValues.push_back (EnumValue (value, tooltip));
 | |
|     return *this;
 | |
| }
 | |
| 
 | |
| 
 | |
| CSMPrefs::EnumSetting::EnumSetting (Category *parent, Settings::Manager *values,
 | |
|   QMutex *mutex, const std::string& key, const std::string& label, const EnumValue& default_)
 | |
| : Setting (parent, values, mutex, key, label), mDefault (default_)
 | |
| {}
 | |
| 
 | |
| CSMPrefs::EnumSetting& CSMPrefs::EnumSetting::setTooltip (const std::string& tooltip)
 | |
| {
 | |
|     mTooltip = tooltip;
 | |
|     return *this;
 | |
| }
 | |
| 
 | |
| CSMPrefs::EnumSetting& CSMPrefs::EnumSetting::addValues (const EnumValues& values)
 | |
| {
 | |
|     mValues.add (values);
 | |
|     return *this;
 | |
| }
 | |
| 
 | |
| CSMPrefs::EnumSetting& CSMPrefs::EnumSetting::addValue (const EnumValue& value)
 | |
| {
 | |
|     mValues.add (value);
 | |
|     return *this;
 | |
| }
 | |
| 
 | |
| CSMPrefs::EnumSetting& CSMPrefs::EnumSetting::addValue (const std::string& value, const std::string& tooltip)
 | |
| {
 | |
|     mValues.add (value, tooltip);
 | |
|     return *this;
 | |
| }
 | |
| 
 | |
| std::pair<QWidget *, QWidget *> CSMPrefs::EnumSetting::makeWidgets (QWidget *parent)
 | |
| {
 | |
|     QLabel *label = new QLabel (QString::fromUtf8 (getLabel().c_str()), parent);
 | |
| 
 | |
|     QComboBox *widget = new QComboBox (parent);
 | |
| 
 | |
|     int index = 0;
 | |
| 
 | |
|     for (int i=0; i<static_cast<int> (mValues.mValues.size()); ++i)
 | |
|     {
 | |
|         if (mDefault.mValue==mValues.mValues[i].mValue)
 | |
|             index = i;
 | |
| 
 | |
|         widget->addItem (QString::fromUtf8 (mValues.mValues[i].mValue.c_str()));
 | |
| 
 | |
|         if (!mValues.mValues[i].mTooltip.empty())
 | |
|             widget->setItemData (i, QString::fromUtf8 (mValues.mValues[i].mTooltip.c_str()),
 | |
|                 Qt::ToolTipRole);
 | |
|     }
 | |
| 
 | |
|     widget->setCurrentIndex (index);
 | |
| 
 | |
|     if (!mTooltip.empty())
 | |
|     {
 | |
|         QString tooltip = QString::fromUtf8 (mTooltip.c_str());
 | |
|         label->setToolTip (tooltip);
 | |
|     }
 | |
| 
 | |
|     connect (widget, SIGNAL (currentIndexChanged (int)), this, SLOT (valueChanged (int)));
 | |
| 
 | |
|     return std::make_pair (label, widget);
 | |
| }
 | |
| 
 | |
| void CSMPrefs::EnumSetting::valueChanged (int value)
 | |
| {
 | |
|     {
 | |
|         QMutexLocker lock (getMutex());
 | |
|         getValues().setString (getKey(), getParent()->getKey(), mValues.mValues.at (value).mValue);
 | |
|     }
 | |
| 
 | |
|     getParent()->getState()->update (*this);
 | |
| }
 |