mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
Add database selection to tray menu
This commit is contained in:
parent
4d7eae34c2
commit
088a09fe78
1 changed files with 46 additions and 17 deletions
|
@ -1500,29 +1500,57 @@ void MainWindow::updateTrayIcon()
|
||||||
if (config()->get(Config::GUI_ShowTrayIcon).toBool()) {
|
if (config()->get(Config::GUI_ShowTrayIcon).toBool()) {
|
||||||
if (!m_trayIcon) {
|
if (!m_trayIcon) {
|
||||||
m_trayIcon = new QSystemTrayIcon(this);
|
m_trayIcon = new QSystemTrayIcon(this);
|
||||||
auto* menu = new QMenu(this);
|
|
||||||
|
|
||||||
auto* actionToggle = new QAction(tr("Toggle window"), menu);
|
|
||||||
menu->addAction(actionToggle);
|
|
||||||
actionToggle->setIcon(icons()->icon("keepassxc-monochrome-dark"));
|
|
||||||
|
|
||||||
menu->addAction(m_ui->actionLockAllDatabases);
|
|
||||||
|
|
||||||
#ifdef Q_OS_MACOS
|
|
||||||
auto actionQuit = new QAction(tr("Quit KeePassXC"), menu);
|
|
||||||
connect(actionQuit, SIGNAL(triggered()), SLOT(appExit()));
|
|
||||||
menu->addAction(actionQuit);
|
|
||||||
#else
|
|
||||||
menu->addAction(m_ui->actionQuit);
|
|
||||||
#endif
|
|
||||||
m_trayIcon->setContextMenu(menu);
|
|
||||||
|
|
||||||
connect(m_trayIcon,
|
connect(m_trayIcon,
|
||||||
SIGNAL(activated(QSystemTrayIcon::ActivationReason)),
|
SIGNAL(activated(QSystemTrayIcon::ActivationReason)),
|
||||||
SLOT(trayIconTriggered(QSystemTrayIcon::ActivationReason)));
|
SLOT(trayIconTriggered(QSystemTrayIcon::ActivationReason)));
|
||||||
connect(actionToggle, SIGNAL(triggered()), SLOT(toggleWindow()));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
auto* menu = new QMenu(this);
|
||||||
|
|
||||||
|
auto* actionToggle = new QAction(tr("Toggle window"), menu);
|
||||||
|
menu->addAction(actionToggle);
|
||||||
|
actionToggle->setIcon(icons()->icon("keepassxc-monochrome-dark"));
|
||||||
|
connect(actionToggle, SIGNAL(triggered()), SLOT(toggleWindow()));
|
||||||
|
|
||||||
|
if (m_ui->tabWidget->count() > 1) {
|
||||||
|
menu->addSeparator();
|
||||||
|
auto* databaseGroup = new QActionGroup(menu);
|
||||||
|
|
||||||
|
for (auto i = 0; i != m_ui->tabWidget->count(); ++i) {
|
||||||
|
const auto& tabName = m_ui->tabWidget->tabName(i);
|
||||||
|
auto* action = new QAction(tabName, menu);
|
||||||
|
action->setCheckable(true);
|
||||||
|
action->setChecked(i == m_ui->tabWidget->currentIndex());
|
||||||
|
action->setActionGroup(databaseGroup);
|
||||||
|
menu->addAction(action);
|
||||||
|
|
||||||
|
connect(action, &QAction::triggered, this, [this, i]() {
|
||||||
|
// This has to be checked as this connection will exist until
|
||||||
|
// the next updateTrayIcon regardless of the tab count.
|
||||||
|
if (i > m_ui->tabWidget->count())
|
||||||
|
return;
|
||||||
|
|
||||||
|
m_ui->tabWidget->setCurrentIndex(i);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
menu->addSeparator();
|
||||||
|
}
|
||||||
|
|
||||||
|
menu->addAction(m_ui->actionLockAllDatabases);
|
||||||
|
|
||||||
|
#ifdef Q_OS_MACOS
|
||||||
|
auto actionQuit = new QAction(tr("Quit KeePassXC"), menu);
|
||||||
|
connect(actionQuit, SIGNAL(triggered()), SLOT(appExit()));
|
||||||
|
menu->addAction(actionQuit);
|
||||||
|
#else
|
||||||
|
menu->addAction(m_ui->actionQuit);
|
||||||
|
#endif
|
||||||
|
auto* oldContextMenu = m_trayIcon->contextMenu();
|
||||||
|
m_trayIcon->setContextMenu(menu);
|
||||||
|
delete oldContextMenu;
|
||||||
|
|
||||||
bool showUnlocked = m_ui->tabWidget->hasLockableDatabases();
|
bool showUnlocked = m_ui->tabWidget->hasLockableDatabases();
|
||||||
m_trayIcon->setIcon(icons()->trayIcon(showUnlocked));
|
m_trayIcon->setIcon(icons()->trayIcon(showUnlocked));
|
||||||
m_trayIcon->setToolTip(windowTitle().replace("[*]", isWindowModified() ? "*" : ""));
|
m_trayIcon->setToolTip(windowTitle().replace("[*]", isWindowModified() ? "*" : ""));
|
||||||
|
@ -1540,6 +1568,7 @@ void MainWindow::updateTrayIcon()
|
||||||
} else {
|
} else {
|
||||||
if (m_trayIcon) {
|
if (m_trayIcon) {
|
||||||
m_trayIcon->hide();
|
m_trayIcon->hide();
|
||||||
|
delete m_trayIcon->contextMenu();
|
||||||
delete m_trayIcon;
|
delete m_trayIcon;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue