mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-25 23:00:56 -04:00
Added new option for GxsForums and FeedReader - Open all forums/feeds in new tab.
Option=on (standard) - no standard tab - new tab by single click - no menu entry "Open in new tab" Option=off: - standard tab (not closeable) - open in standard tab by single click - menu entry "Open in new tab" - open new tab with middle mouse button git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6060 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
9cfe660e11
commit
f488dbd15a
30 changed files with 425 additions and 185 deletions
|
@ -698,9 +698,9 @@ bool RshareSettings::getMsgSetToReadOnActivate ()
|
|||
return valueFromGroup("MessageDialog", "SetMsgToReadOnActivate", true).toBool();
|
||||
}
|
||||
|
||||
void RshareSettings::setMsgSetToReadOnActivate (bool bValue)
|
||||
void RshareSettings::setMsgSetToReadOnActivate (bool value)
|
||||
{
|
||||
setValueToGroup("MessageDialog", "SetMsgToReadOnActivate", bValue);
|
||||
setValueToGroup("MessageDialog", "SetMsgToReadOnActivate", value);
|
||||
}
|
||||
|
||||
RshareSettings::enumMsgOpen RshareSettings::getMsgOpen()
|
||||
|
@ -735,19 +735,29 @@ bool RshareSettings::getForumMsgSetToReadOnActivate ()
|
|||
return valueFromGroup("ForumDialog", "SetMsgToReadOnActivate", true).toBool();
|
||||
}
|
||||
|
||||
void RshareSettings::setForumMsgSetToReadOnActivate (bool bValue)
|
||||
void RshareSettings::setForumMsgSetToReadOnActivate(bool value)
|
||||
{
|
||||
setValueToGroup("ForumDialog", "SetMsgToReadOnActivate", bValue);
|
||||
setValueToGroup("ForumDialog", "SetMsgToReadOnActivate", value);
|
||||
}
|
||||
|
||||
bool RshareSettings::getExpandNewMessages()
|
||||
bool RshareSettings::getForumExpandNewMessages()
|
||||
{
|
||||
return valueFromGroup("ForumDialog", "ExpandNewMessages", true).toBool();
|
||||
}
|
||||
|
||||
void RshareSettings::setExpandNewMessages (bool bValue)
|
||||
void RshareSettings::setForumExpandNewMessages(bool value)
|
||||
{
|
||||
setValueToGroup("ForumDialog", "ExpandNewMessages", bValue);
|
||||
setValueToGroup("ForumDialog", "ExpandNewMessages", value);
|
||||
}
|
||||
|
||||
bool RshareSettings::getForumOpenAllInNewTab()
|
||||
{
|
||||
return valueFromGroup("ForumDialog", "OpenAllInNewTab", true).toBool();
|
||||
}
|
||||
|
||||
bool RshareSettings::setForumOpenAllInNewTab(bool value)
|
||||
{
|
||||
setValueToGroup("ForumDialog", "OpenAllInNewTab", value);
|
||||
}
|
||||
|
||||
/* time before idle */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue