Lock database when OS is locked (Windows, DBus, macOS implementations) #134

This commit is contained in:
Claudio Bantaloukas 2016-12-24 01:04:43 +01:00 committed by thez3ro
parent a6bc3e9790
commit 2de5a9d281
No known key found for this signature in database
GPG key ID: F628F9E41DD7C073
15 changed files with 362 additions and 0 deletions

View file

@ -329,6 +329,9 @@ MainWindow::MainWindow()
connect(m_ui->tabWidget, SIGNAL(messageTab(QString,MessageWidget::MessageType)), this, SLOT(displayTabMessage(QString, MessageWidget::MessageType)));
connect(m_ui->tabWidget, SIGNAL(messageDismissTab()), this, SLOT(hideTabMessage()));
m_screenLockListener = new ScreenLockListener(this);
connect(m_screenLockListener, SIGNAL(screenLocked()), SLOT(handleScreenLock()));
updateTrayIcon();
if (config()->hasAccessError()) {
@ -959,3 +962,10 @@ void MainWindow::hideYubiKeyPopup()
hideGlobalMessage();
setEnabled(true);
}
void MainWindow::handleScreenLock()
{
if (config()->get("AutoCloseOnScreenLock").toBool()){
lockDatabasesAfterInactivity();
}
}