WIP Qml completer

This commit is contained in:
Nicolas Werner 2020-11-20 01:22:36 +01:00
parent 9d68d59465
commit cabeb1464c
5 changed files with 174 additions and 14 deletions

View file

@ -163,6 +163,12 @@ InputBar::nextText()
return text();
}
QObject *
InputBar::completerFor(QString completerName)
{
return nullptr;
}
void
InputBar::send()
{

View file

@ -41,6 +41,8 @@ public slots:
bool uploading() const { return uploading_; }
void callButton();
QObject *completerFor(QString completerName);
private slots:
void startTyping();
void stopTyping();