qt: Allow to inspect RPCConsole tabs
This commit is contained in:
parent
5f23460c7e
commit
9ea38d0222
2 changed files with 15 additions and 0 deletions
|
@ -1275,7 +1275,17 @@ void RPCConsole::showOrHideBanTableIfRequired()
|
|||
ui->banHeading->setVisible(visible);
|
||||
}
|
||||
|
||||
RPCConsole::TabTypes RPCConsole::tabFocus() const
|
||||
{
|
||||
return (TabTypes) ui->tabWidget->currentIndex();
|
||||
}
|
||||
|
||||
void RPCConsole::setTabFocus(enum TabTypes tabType)
|
||||
{
|
||||
ui->tabWidget->setCurrentIndex(tabType);
|
||||
}
|
||||
|
||||
QString RPCConsole::tabTitle(TabTypes tab_type) const
|
||||
{
|
||||
return ui->tabWidget->tabText(tab_type);
|
||||
}
|
||||
|
|
|
@ -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 *);
|
||||
|
|
Loading…
Reference in a new issue