|
|
|
@ -46,6 +46,7 @@
|
|
|
|
|
#include <QCursor>
|
|
|
|
|
#include <QDateTime>
|
|
|
|
|
#include <QDragEnterEvent>
|
|
|
|
|
#include <QKeySequence>
|
|
|
|
|
#include <QListWidget>
|
|
|
|
|
#include <QMenu>
|
|
|
|
|
#include <QMenuBar>
|
|
|
|
@ -251,28 +252,28 @@ void BitcoinGUI::createActions()
|
|
|
|
|
overviewAction->setStatusTip(tr("Show general overview of wallet"));
|
|
|
|
|
overviewAction->setToolTip(overviewAction->statusTip());
|
|
|
|
|
overviewAction->setCheckable(true);
|
|
|
|
|
overviewAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_1));
|
|
|
|
|
overviewAction->setShortcut(QKeySequence(QStringLiteral("Alt+1")));
|
|
|
|
|
tabGroup->addAction(overviewAction);
|
|
|
|
|
|
|
|
|
|
sendCoinsAction = new QAction(platformStyle->SingleColorIcon(":/icons/send"), tr("&Send"), this);
|
|
|
|
|
sendCoinsAction->setStatusTip(tr("Send coins to a Bitcoin address"));
|
|
|
|
|
sendCoinsAction->setToolTip(sendCoinsAction->statusTip());
|
|
|
|
|
sendCoinsAction->setCheckable(true);
|
|
|
|
|
sendCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_2));
|
|
|
|
|
sendCoinsAction->setShortcut(QKeySequence(QStringLiteral("Alt+2")));
|
|
|
|
|
tabGroup->addAction(sendCoinsAction);
|
|
|
|
|
|
|
|
|
|
receiveCoinsAction = new QAction(platformStyle->SingleColorIcon(":/icons/receiving_addresses"), tr("&Receive"), this);
|
|
|
|
|
receiveCoinsAction->setStatusTip(tr("Request payments (generates QR codes and bitcoin: URIs)"));
|
|
|
|
|
receiveCoinsAction->setToolTip(receiveCoinsAction->statusTip());
|
|
|
|
|
receiveCoinsAction->setCheckable(true);
|
|
|
|
|
receiveCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_3));
|
|
|
|
|
receiveCoinsAction->setShortcut(QKeySequence(QStringLiteral("Alt+3")));
|
|
|
|
|
tabGroup->addAction(receiveCoinsAction);
|
|
|
|
|
|
|
|
|
|
historyAction = new QAction(platformStyle->SingleColorIcon(":/icons/history"), tr("&Transactions"), this);
|
|
|
|
|
historyAction->setStatusTip(tr("Browse transaction history"));
|
|
|
|
|
historyAction->setToolTip(historyAction->statusTip());
|
|
|
|
|
historyAction->setCheckable(true);
|
|
|
|
|
historyAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_4));
|
|
|
|
|
historyAction->setShortcut(QKeySequence(QStringLiteral("Alt+4")));
|
|
|
|
|
tabGroup->addAction(historyAction);
|
|
|
|
|
|
|
|
|
|
#ifdef ENABLE_WALLET
|
|
|
|
@ -290,7 +291,7 @@ void BitcoinGUI::createActions()
|
|
|
|
|
|
|
|
|
|
quitAction = new QAction(tr("E&xit"), this);
|
|
|
|
|
quitAction->setStatusTip(tr("Quit application"));
|
|
|
|
|
quitAction->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_Q));
|
|
|
|
|
quitAction->setShortcut(QKeySequence(tr("Ctrl+Q")));
|
|
|
|
|
quitAction->setMenuRole(QAction::QuitRole);
|
|
|
|
|
aboutAction = new QAction(tr("&About %1").arg(PACKAGE_NAME), this);
|
|
|
|
|
aboutAction->setStatusTip(tr("Show information about %1").arg(PACKAGE_NAME));
|
|
|
|
@ -472,7 +473,7 @@ void BitcoinGUI::createMenuBar()
|
|
|
|
|
QMenu* window_menu = appMenuBar->addMenu(tr("&Window"));
|
|
|
|
|
|
|
|
|
|
QAction* minimize_action = window_menu->addAction(tr("&Minimize"));
|
|
|
|
|
minimize_action->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_M));
|
|
|
|
|
minimize_action->setShortcut(QKeySequence(tr("Ctrl+M")));
|
|
|
|
|
connect(minimize_action, &QAction::triggered, [] {
|
|
|
|
|
QApplication::activeWindow()->showMinimized();
|
|
|
|
|
});
|
|
|
|
|