Added settings for the blinking icons

- private chat window/tab
- chat lobby tab
- all tray notifier

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5729 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2012-10-27 15:59:12 +00:00
parent 03e521c024
commit af2257b1a9
28 changed files with 217 additions and 29 deletions

View file

@ -295,6 +295,16 @@ void RshareSettings::setChatFlags(uint flags)
setValue(SETTING_CHAT_FLAGS, flags);
}
uint RshareSettings::getChatLobbyFlags()
{
return value("ChatLobbyFlags").toUInt();
}
void RshareSettings::setChatLobbyFlags(uint flags)
{
setValue("ChatLobbyFlags", flags);
}
uint RshareSettings::getNotifyFlags()
{
return value(SETTING_NOTIFY_FLAGS).toUInt();
@ -315,6 +325,16 @@ void RshareSettings::setTrayNotifyFlags(uint flags)
setValue(SETTING_TRAYNOTIFY_FLAGS, flags);
}
uint RshareSettings::getTrayNotifyBlinkFlags()
{
return value("TrayNotifyBlinkFlags", 0).toUInt();
}
void RshareSettings::setTrayNotifyBlinkFlags(uint flags)
{
setValue("TrayNotifyBlinkFlags", flags);
}
uint RshareSettings::getMessageFlags()
{
return value("MessageFlags").toUInt();