mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-24 19:04:51 -05:00
19 lines
365 B
C++
19 lines
365 B
C++
#pragma once
|
|
#include "resizing-text-edit.hpp"
|
|
#include "variable-string.hpp"
|
|
|
|
namespace advss {
|
|
|
|
class VariableTextEdit : public ResizingPlainTextEdit {
|
|
Q_OBJECT
|
|
public:
|
|
VariableTextEdit(QWidget *parent);
|
|
void setPlainText(const QString &);
|
|
void setPlainText(const StringVariable &);
|
|
void setToolTip(const QString &string);
|
|
|
|
private:
|
|
};
|
|
|
|
} // namespace advss
|