1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-02 11:15:35 +00:00
openmw/apps/opencs/model/prefs/stringsetting.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
745 B
C++
Raw Normal View History

#ifndef CSM_PREFS_StringSetting_H
#define CSM_PREFS_StringSetting_H
#include "setting.hpp"
class QLineEdit;
namespace CSMPrefs
{
class StringSetting : public Setting
{
Q_OBJECT
std::string mTooltip;
std::string mDefault;
QLineEdit* mWidget;
public:
StringSetting(
Category* parent, QMutex* mutex, const std::string& key, const std::string& label, std::string default_);
StringSetting& setTooltip(const std::string& tooltip);
/// Return label, input widget.
std::pair<QWidget*, QWidget*> makeWidgets(QWidget* parent) override;
void updateWidget() override;
private slots:
void textChanged(const QString& text);
};
}
#endif