mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-21 17:34:57 -05:00
19 lines
310 B
C++
19 lines
310 B
C++
#pragma once
|
|
#include <QLineEdit>
|
|
|
|
namespace advss {
|
|
|
|
class SingleCharSelection : public QLineEdit {
|
|
Q_OBJECT
|
|
public:
|
|
SingleCharSelection(QWidget *parent = nullptr);
|
|
|
|
signals:
|
|
void CharChanged(const QString &character);
|
|
|
|
private slots:
|
|
void HandleTextChanged(const QString &text);
|
|
};
|
|
|
|
} // namespace advss
|