mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-05 14:06:27 -05:00
gui: Add shortcuts for tab tools
This commit is contained in:
parent
4b51ed89cf
commit
091747b46e
3 changed files with 12 additions and 0 deletions
|
@ -493,6 +493,7 @@ void BitcoinGUI::createMenuBar()
|
|||
window_menu->addSeparator();
|
||||
for (RPCConsole::TabTypes tab_type : rpcConsole->tabs()) {
|
||||
QAction* tab_action = window_menu->addAction(rpcConsole->tabTitle(tab_type));
|
||||
tab_action->setShortcut(rpcConsole->tabShortcut(tab_type));
|
||||
connect(tab_action, &QAction::triggered, [this, tab_type] {
|
||||
rpcConsole->setTabFocus(tab_type);
|
||||
showDebugWindow();
|
||||
|
|
|
@ -1276,6 +1276,16 @@ QString RPCConsole::tabTitle(TabTypes tab_type) const
|
|||
return ui->tabWidget->tabText(tab_type);
|
||||
}
|
||||
|
||||
QKeySequence RPCConsole::tabShortcut(TabTypes tab_type) const
|
||||
{
|
||||
switch (tab_type) {
|
||||
case TAB_INFO: return QKeySequence(Qt::CTRL + Qt::Key_I);
|
||||
case TAB_CONSOLE: return QKeySequence(Qt::CTRL + Qt::Key_T);
|
||||
case TAB_GRAPH: return QKeySequence(Qt::CTRL + Qt::Key_N);
|
||||
case TAB_PEERS: return QKeySequence(Qt::CTRL + Qt::Key_P);
|
||||
}
|
||||
}
|
||||
|
||||
void RPCConsole::updateAlerts(const QString& warnings)
|
||||
{
|
||||
this->ui->label_alerts->setVisible(!warnings.isEmpty());
|
||||
|
|
|
@ -68,6 +68,7 @@ public:
|
|||
std::vector<TabTypes> tabs() const { return {TAB_INFO, TAB_CONSOLE, TAB_GRAPH, TAB_PEERS}; }
|
||||
|
||||
QString tabTitle(TabTypes tab_type) const;
|
||||
QKeySequence tabShortcut(TabTypes tab_type) const;
|
||||
|
||||
protected:
|
||||
virtual bool eventFilter(QObject* obj, QEvent *event);
|
||||
|
|
Loading…
Add table
Reference in a new issue