mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-20 15:00:36 -04:00
added Enable disable minimize to Tray feature when closing RetroShare
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1614 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
700fd1d72f
commit
26b149429b
4 changed files with 36 additions and 7 deletions
|
@ -57,6 +57,8 @@ GeneralPage::save(QString &errmsg)
|
|||
_settings->setValue(QString::fromUtf8("StartMinimized"), startMinimized());
|
||||
|
||||
_settings->setValue(QString::fromUtf8("doQuit"), quit());
|
||||
|
||||
_settings->setValue(QString::fromUtf8("ClosetoTray"), closetoTray());
|
||||
|
||||
_settings->setRunRetroshareOnBoot(
|
||||
ui.chkRunRetroshareAtSystemStartup->isChecked());
|
||||
|
@ -74,6 +76,8 @@ GeneralPage::load()
|
|||
ui.checkStartMinimized->setChecked(_settings->value(QString::fromUtf8("StartMinimized"), false).toBool());
|
||||
|
||||
ui.checkQuit->setChecked(_settings->value(QString::fromUtf8("doQuit"), false).toBool());
|
||||
|
||||
ui.checkClosetoTray->setChecked(_settings->value(QString::fromUtf8("ClosetoTray"), false).toBool());
|
||||
|
||||
}
|
||||
|
||||
|
@ -87,6 +91,11 @@ bool GeneralPage::startMinimized() const {
|
|||
return ui.checkStartMinimized->isChecked();
|
||||
}
|
||||
|
||||
bool GeneralPage::closetoTray() const {
|
||||
if(ui.checkClosetoTray->isChecked()) return true;
|
||||
return ui.checkClosetoTray->isChecked();
|
||||
}
|
||||
|
||||
/** Called when the "show on startup" checkbox is toggled. */
|
||||
void
|
||||
GeneralPage::toggleShowOnStartup(bool checked)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue