mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-08-20 16:25:43 -05:00
Move variable files to to variables folder
This commit is contained in:
22
lib/variables/variable-line-edit.hpp
Normal file
22
lib/variables/variable-line-edit.hpp
Normal file
@@ -0,0 +1,22 @@
|
||||
#pragma once
|
||||
#include "variable-string.hpp"
|
||||
|
||||
#include <QLineEdit>
|
||||
|
||||
namespace advss {
|
||||
|
||||
class VariableLineEdit : public QLineEdit {
|
||||
Q_OBJECT
|
||||
public:
|
||||
EXPORT VariableLineEdit(QWidget *parent);
|
||||
EXPORT void setText(const QString &);
|
||||
EXPORT void setText(const StringVariable &);
|
||||
EXPORT void setToolTip(const QString &string);
|
||||
|
||||
private slots:
|
||||
void DisplayValidationMessages();
|
||||
|
||||
private:
|
||||
};
|
||||
|
||||
} // namespace advss
|
||||
Reference in New Issue
Block a user