cleaned the notify dialog a little. Added checkbox for group chat. Not enabled yet though.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1375 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2009-07-14 14:43:51 +00:00
parent 6333cc4d37
commit f8ca2fae4c
2 changed files with 339 additions and 323 deletions

View file

@ -69,7 +69,7 @@ NotifyDialog::save(QString &errmsg)
if (ui.popup_NewMsg->isChecked())
notifyflags |= RS_POPUP_MSG;
if (ui.popup_NewChat->isChecked())
// if (ui.popup_NewChat->isChecked())
notifyflags |= RS_POPUP_CHAT;
//if (ui.popup_Call->isChecked())
@ -118,7 +118,8 @@ void NotifyDialog::load()
ui.popup_Connect->setChecked(notifyflags & RS_POPUP_CONNECT);
ui.popup_NewMsg->setChecked(notifyflags & RS_POPUP_MSG);
ui.popup_NewChat->setChecked(notifyflags & RS_POPUP_CHAT);
ui.systray_GroupChat->setChecked(true) ;
// ui.popup_NewChat->setChecked(notifyflags & RS_POPUP_CHAT);
//ui.popup_Call->setChecked(notifyflags & RS_POPUP_CALL);
ui.notify_Peers->setChecked(newsflags & RS_FEED_TYPE_PEER);
@ -138,7 +139,8 @@ void NotifyDialog::load()
ui.notify_Chat->setEnabled(false);
ui.notify_Blogs->setEnabled(false);
ui.notify_Downloads->setEnabled(false);
ui.popup_NewChat->setEnabled(false);
ui.systray_GroupChat->setEnabled(false);
// ui.popup_NewChat->setEnabled(false);
}