add address/label autocomplete

This commit is contained in:
Aditya Kulkarni
2018-11-06 22:35:57 -08:00
parent 19b8cc643d
commit b60d65ee82
7 changed files with 145 additions and 86 deletions

View File

@@ -36,6 +36,8 @@ public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
void updateLabelsAutoComplete();
Ui::MainWindow* ui;
QLabel* statusLabel;
@@ -89,9 +91,10 @@ private:
void restoreSavedStates();
RPC* rpc = nullptr;
RPC* rpc = nullptr;
QCompleter* labelCompleter = nullptr;
QMovie* loadingMovie;
QMovie* loadingMovie;
};
#endif // MAINWINDOW_H