Add autocomplete to console window.
[novacoin.git] / src / qt / rpcconsole.h
index b523f0f..dbca630 100644 (file)
@@ -2,6 +2,7 @@
 #define RPCCONSOLE_H
 
 #include <QWidget>
+#include <QCompleter>
 
 namespace Ui {
     class RPCConsole;
@@ -36,6 +37,8 @@ private slots:
     void on_tabWidget_currentChanged(int index);
     /** open the debug.log from the current datadir */
     void on_openDebugLogfileButton_clicked();
+    /** open the novacoin.conf from the current datadir */
+    void on_openConfigurationfileButton_clicked();
     /** change the time range of the network traffic graph */
     void on_sldGraphRange_valueChanged(int value);
     /** update traffic statistics */
@@ -78,6 +81,7 @@ private:
     ClientModel *clientModel;
     QStringList history;
     int historyPtr;
+       QCompleter *autoCompleter;
 
     void startExecutor();
 };