1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-22 20:23:53 +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.

43 lines
851 B
C++
Raw Normal View History

#ifndef CSM_PREFS_StringSetting_H
#define CSM_PREFS_StringSetting_H
#include "setting.hpp"
2022-10-19 17:02:00 +00:00
#include <string>
#include <utility>
class QLineEdit;
2022-10-19 17:02:00 +00:00
class QMutex;
class QObject;
class QWidget;
namespace CSMPrefs
{
2022-10-19 17:02:00 +00:00
class Category;
class StringSetting : public Setting
{
Q_OBJECT
std::string mTooltip;
std::string mDefault;
QLineEdit* mWidget;
public:
2023-07-29 07:44:39 +00:00
StringSetting(Category* parent, QMutex* mutex, const std::string& key, const std::string& label,
std::string_view 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