diff options
author | João Barbosa <joao.paulo.barbosa@gmail.com> | 2018-12-11 13:13:48 +0000 |
---|---|---|
committer | João Barbosa <joao.paulo.barbosa@gmail.com> | 2018-12-11 13:15:35 +0000 |
commit | 9ea38d022281713e7f79a219b37651ac5648d695 (patch) | |
tree | e90d1f90dd888043f4623417f8aff3c9e493b71e /src/qt/rpcconsole.h | |
parent | 5f23460c7e316fe7c944680f3feff07ebb867f70 (diff) |
qt: Allow to inspect RPCConsole tabs
Diffstat (limited to 'src/qt/rpcconsole.h')
-rw-r--r-- | src/qt/rpcconsole.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/qt/rpcconsole.h b/src/qt/rpcconsole.h index db77043951..20dbf5ec95 100644 --- a/src/qt/rpcconsole.h +++ b/src/qt/rpcconsole.h @@ -65,6 +65,11 @@ public: TAB_PEERS = 3 }; + std::vector<TabTypes> tabs() const { return {TAB_INFO, TAB_CONSOLE, TAB_GRAPH, TAB_PEERS}; } + + TabTypes tabFocus() const; + QString tabTitle(TabTypes tab_type) const; + protected: virtual bool eventFilter(QObject* obj, QEvent *event); void keyPressEvent(QKeyEvent *); |