Reworked/fixed some settings.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7469 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2014-07-24 16:52:11 +00:00
parent 42e579a294
commit d355e8dd88
7 changed files with 558 additions and 557 deletions

View file

@ -87,9 +87,11 @@ PostedListWidget::~PostedListWidget()
{ {
// save settings // save settings
processSettings(false); processSettings(false);
delete(ui);
} }
void PostedListWidget::processSettings(bool load) void PostedListWidget::processSettings(bool /*load*/)
{ {
// Settings->beginGroup(QString("PostedListWidget")); // Settings->beginGroup(QString("PostedListWidget"));
// //

View file

@ -53,7 +53,7 @@ private:
/* GxsGroupFrameDialog */ /* GxsGroupFrameDialog */
virtual QString text(TextType type); virtual QString text(TextType type);
virtual QString icon(IconType type); virtual QString icon(IconType type);
virtual QString settingsGroupName() { return "GxsChannelDialog"; } virtual QString settingsGroupName() { return "ChannelDialog"; }
virtual GxsGroupDialog *createNewGroupDialog(TokenQueue *tokenQueue); virtual GxsGroupDialog *createNewGroupDialog(TokenQueue *tokenQueue);
virtual GxsGroupDialog *createGroupDialog(TokenQueue *tokenQueue, RsTokenService *tokenService, GxsGroupDialog::Mode mode, RsGxsGroupId groupId); virtual GxsGroupDialog *createGroupDialog(TokenQueue *tokenQueue, RsTokenService *tokenService, GxsGroupDialog::Mode mode, RsGxsGroupId groupId);
virtual int shareKeyType(); virtual int shareKeyType();

View file

@ -107,12 +107,14 @@ GxsChannelPostsWidget::~GxsChannelPostsWidget()
processSettings(false); processSettings(false);
delete(mAutoDownloadAction); delete(mAutoDownloadAction);
delete ui;
} }
void GxsChannelPostsWidget::processSettings(bool load) void GxsChannelPostsWidget::processSettings(bool /*load*/)
{ {
mInProcessSettings = true; mInProcessSettings = true;
// Settings->beginGroup(QString("GxsChannelDialog")); // Settings->beginGroup(QString("ChannelPostsWidget"));
// //
// if (load) { // if (load) {
// // load settings // // load settings

View file

@ -210,6 +210,9 @@ GxsForumThreadWidget::~GxsForumThreadWidget()
mFillThread = NULL; mFillThread = NULL;
} }
// save settings
processSettings(false);
delete ui; delete ui;
// delete(mTimer); // delete(mTimer);
@ -223,7 +226,7 @@ void GxsForumThreadWidget::processSettings(bool load)
QHeaderView *header = ui->threadTreeWidget->header(); QHeaderView *header = ui->threadTreeWidget->header();
Settings->beginGroup(QString("GxsForumsDialog")); Settings->beginGroup(QString("ForumThreadWidget"));
if (load) { if (load) {
// load settings // load settings
@ -449,7 +452,7 @@ bool GxsForumThreadWidget::eventFilter(QObject *obj, QEvent *event)
void GxsForumThreadWidget::togglethreadview() void GxsForumThreadWidget::togglethreadview()
{ {
// save state of button // save state of button
Settings->setValueToGroup("GxsForumsDialog", "expandButton", ui->expandButton->isChecked()); Settings->setValueToGroup("ForumThreadWidget", "expandButton", ui->expandButton->isChecked());
togglethreadview_internal(); togglethreadview_internal();
} }
@ -873,7 +876,7 @@ void GxsForumThreadWidget::insertThreads()
{ {
#ifdef DEBUG_FORUMS #ifdef DEBUG_FORUMS
/* get the current Forum */ /* get the current Forum */
std::cerr << "GxsForumsDialog::insertThreads()" << std::endl; std::cerr << "GxsForumThreadWidget::insertThreads()" << std::endl;
#endif #endif
if (mFillThread) { if (mFillThread) {
@ -905,7 +908,7 @@ void GxsForumThreadWidget::insertThreads()
mLastForumID.clear(); mLastForumID.clear();
#ifdef DEBUG_FORUMS #ifdef DEBUG_FORUMS
std::cerr << "GxsForumsDialog::insertThreads() Current Thread Invalid" << std::endl; std::cerr << "GxsForumThreadWidget::insertThreads() Current Thread Invalid" << std::endl;
#endif #endif
return; return;
@ -927,7 +930,7 @@ void GxsForumThreadWidget::insertForumThreads(const RsGxsForumGroup &group)
mStateHelper->setActive(TOKEN_TYPE_CURRENTFORUM, true); mStateHelper->setActive(TOKEN_TYPE_CURRENTFORUM, true);
#ifdef DEBUG_FORUMS #ifdef DEBUG_FORUMS
std::cerr << "GxsForumsDialog::insertThreads() Start filling Forum threads" << std::endl; std::cerr << "GxsForumThreadWidget::insertThreads() Start filling Forum threads" << std::endl;
#endif #endif
// create fill thread // create fill thread
@ -978,7 +981,7 @@ void GxsForumThreadWidget::insertForumThreads(const RsGxsForumGroup &group)
void GxsForumThreadWidget::fillThreads(QList<QTreeWidgetItem *> &threadList, bool expandNewMessages, QList<QTreeWidgetItem*> &itemToExpand) void GxsForumThreadWidget::fillThreads(QList<QTreeWidgetItem *> &threadList, bool expandNewMessages, QList<QTreeWidgetItem*> &itemToExpand)
{ {
#ifdef DEBUG_FORUMS #ifdef DEBUG_FORUMS
std::cerr << "GxsForumsDialog::fillThreads()" << std::endl; std::cerr << "GxsForumThreadWidget::fillThreads()" << std::endl;
#endif #endif
int index = 0; int index = 0;
@ -1050,7 +1053,7 @@ void GxsForumThreadWidget::fillThreads(QList<QTreeWidgetItem *> &threadList, boo
} }
#ifdef DEBUG_FORUMS #ifdef DEBUG_FORUMS
std::cerr << "GxsForumsDialog::fillThreads() done" << std::endl; std::cerr << "GxsForumThreadWidget::fillThreads() done" << std::endl;
#endif #endif
} }
@ -1192,7 +1195,7 @@ void GxsForumThreadWidget::insertPostData(const RsGxsForumMsg &msg)
if ((msg.mMeta.mGroupId != mForumId) || (msg.mMeta.mMsgId != mThreadId)) if ((msg.mMeta.mGroupId != mForumId) || (msg.mMeta.mMsgId != mThreadId))
{ {
std::cerr << "GxsForumsDialog::insertPostData() Ignoring Invalid Data...."; std::cerr << "GxsForumThreadWidget::insertPostData() Ignoring Invalid Data....";
std::cerr << std::endl; std::cerr << std::endl;
std::cerr << "\t CurrForumId: " << mForumId << " != msg.GroupId: " << msg.mMeta.mGroupId; std::cerr << "\t CurrForumId: " << mForumId << " != msg.GroupId: " << msg.mMeta.mGroupId;
std::cerr << std::endl; std::cerr << std::endl;
@ -1333,13 +1336,13 @@ void GxsForumThreadWidget::nextUnreadMessage()
// TODO // TODO
#if 0 #if 0
void GxsForumsDialog::removemessage() void GxsForumThreadWidget::removemessage()
{ {
//std::cerr << "GxsForumsDialog::removemessage()" << std::endl; //std::cerr << "GxsForumThreadWidget::removemessage()" << std::endl;
std::string cid, mid; std::string cid, mid;
if (!getCurrentMsg(cid, mid)) if (!getCurrentMsg(cid, mid))
{ {
//std::cerr << "GxsForumsDialog::removemessage()"; //std::cerr << "GxsForumThreadWidget::removemessage()";
//std::cerr << " No Message selected" << std::endl; //std::cerr << " No Message selected" << std::endl;
return; return;
} }
@ -1569,14 +1572,14 @@ static QString buildReplyHeader(const RsMsgMetaData &meta)
link.createMessage(meta.mAuthorId, ""); link.createMessage(meta.mAuthorId, "");
QString from = link.toHtml(); QString from = link.toHtml();
QString header = QString("<span>-----%1-----").arg(QApplication::translate("GxsForumsDialog", "Original Message")); QString header = QString("<span>-----%1-----").arg(QApplication::translate("GxsForumThreadWidget", "Original Message"));
header += QString("<br><font size='3'><strong>%1: </strong>%2</font><br>").arg(QApplication::translate("GxsForumsDialog", "From"), from); header += QString("<br><font size='3'><strong>%1: </strong>%2</font><br>").arg(QApplication::translate("GxsForumThreadWidget", "From"), from);
header += QString("<br><font size='3'><strong>%1: </strong>%2</font><br>").arg(QApplication::translate("GxsForumsDialog", "Sent"), DateTime::formatLongDateTime(meta.mPublishTs)); header += QString("<br><font size='3'><strong>%1: </strong>%2</font><br>").arg(QApplication::translate("GxsForumThreadWidget", "Sent"), DateTime::formatLongDateTime(meta.mPublishTs));
header += QString("<font size='3'><strong>%1: </strong>%2</font></span><br>").arg(QApplication::translate("GxsForumsDialog", "Subject"), QString::fromUtf8(meta.mMsgName.c_str())); header += QString("<font size='3'><strong>%1: </strong>%2</font></span><br>").arg(QApplication::translate("GxsForumThreadWidget", "Subject"), QString::fromUtf8(meta.mMsgName.c_str()));
header += "<br>"; header += "<br>";
header += QApplication::translate("GxsForumsDialog", "On %1, %2 wrote:").arg(DateTime::formatDateTime(meta.mPublishTs), from); header += QApplication::translate("GxsForumThreadWidget", "On %1, %2 wrote:").arg(DateTime::formatDateTime(meta.mPublishTs), from);
return header; return header;
} }
@ -1597,7 +1600,7 @@ void GxsForumThreadWidget::replyMessageData(const RsGxsForumMsg &msg)
{ {
if ((msg.mMeta.mGroupId != mForumId) || (msg.mMeta.mMsgId != mThreadId)) if ((msg.mMeta.mGroupId != mForumId) || (msg.mMeta.mMsgId != mThreadId))
{ {
std::cerr << "GxsForumsDialog::replyMessageData() ERROR Message Ids have changed!"; std::cerr << "GxsForumThreadWidget::replyMessageData() ERROR Message Ids have changed!";
std::cerr << std::endl; std::cerr << std::endl;
return; return;
} }
@ -1628,7 +1631,7 @@ void GxsForumThreadWidget::changedViewBox()
} }
// save index // save index
Settings->setValueToGroup("GxsForumsDialog", "viewBox", ui->viewBox->currentIndex()); Settings->setValueToGroup("ForumThreadWidget", "viewBox", ui->viewBox->currentIndex());
ui->threadTreeWidget->clear(); ui->threadTreeWidget->clear();
@ -1649,7 +1652,7 @@ void GxsForumThreadWidget::filterColumnChanged(int column)
} }
// save index // save index
Settings->setValueToGroup("GxsForumsDialog", "filterColumn", column); Settings->setValueToGroup("ForumThreadWidget", "filterColumn", column);
} }
void GxsForumThreadWidget::filterItems(const QString& text) void GxsForumThreadWidget::filterItems(const QString& text)
@ -1708,7 +1711,7 @@ void GxsForumThreadWidget::requestGroup_CurrentForum()
std::list<RsGxsGroupId> grpIds; std::list<RsGxsGroupId> grpIds;
grpIds.push_back(mForumId); grpIds.push_back(mForumId);
std::cerr << "GxsForumsDialog::requestGroup_CurrentForum(" << mForumId << ")"; std::cerr << "GxsForumThreadWidget::requestGroup_CurrentForum(" << mForumId << ")";
std::cerr << std::endl; std::cerr << std::endl;
uint32_t token; uint32_t token;
@ -1717,7 +1720,7 @@ void GxsForumThreadWidget::requestGroup_CurrentForum()
void GxsForumThreadWidget::loadGroup_CurrentForum(const uint32_t &token) void GxsForumThreadWidget::loadGroup_CurrentForum(const uint32_t &token)
{ {
std::cerr << "GxsForumsDialog::loadGroup_CurrentForum()"; std::cerr << "GxsForumThreadWidget::loadGroup_CurrentForum()";
std::cerr << std::endl; std::cerr << std::endl;
std::vector<RsGxsForumGroup> groups; std::vector<RsGxsForumGroup> groups;
@ -1729,7 +1732,7 @@ void GxsForumThreadWidget::loadGroup_CurrentForum(const uint32_t &token)
} }
else else
{ {
std::cerr << "GxsForumsDialog::loadGroupSummary_CurrentForum() ERROR Invalid Number of Groups..."; std::cerr << "GxsForumThreadWidget::loadGroupSummary_CurrentForum() ERROR Invalid Number of Groups...";
std::cerr << std::endl; std::cerr << std::endl;
mStateHelper->setLoading(TOKEN_TYPE_CURRENTFORUM, false); mStateHelper->setLoading(TOKEN_TYPE_CURRENTFORUM, false);
@ -1753,7 +1756,7 @@ void GxsForumThreadWidget::requestMsgData_InsertPost(const RsGxsGrpMsgIdPair &ms
RsTokReqOptions opts; RsTokReqOptions opts;
opts.mReqType = GXS_REQUEST_TYPE_MSG_RELATED_DATA; opts.mReqType = GXS_REQUEST_TYPE_MSG_RELATED_DATA;
std::cerr << "GxsForumsDialog::requestMsgData_InsertPost(" << msgId.first << "," << msgId.second << ")"; std::cerr << "GxsForumThreadWidget::requestMsgData_InsertPost(" << msgId.first << "," << msgId.second << ")";
std::cerr << std::endl; std::cerr << std::endl;
std::vector<RsGxsGrpMsgIdPair> msgIds; std::vector<RsGxsGrpMsgIdPair> msgIds;
@ -1767,7 +1770,7 @@ void GxsForumThreadWidget::requestMsgData_InsertPost(const RsGxsGrpMsgIdPair &ms
RsTokReqOptions opts; RsTokReqOptions opts;
opts.mReqType = GXS_REQUEST_TYPE_MSG_DATA; opts.mReqType = GXS_REQUEST_TYPE_MSG_DATA;
std::cerr << "GxsForumsDialog::requestMsgData_InsertPost(" << msgId.first << "," << msgId.second << ")"; std::cerr << "GxsForumThreadWidget::requestMsgData_InsertPost(" << msgId.first << "," << msgId.second << ")";
std::cerr << std::endl; std::cerr << std::endl;
GxsMsgReq msgIds; GxsMsgReq msgIds;
@ -1783,13 +1786,13 @@ void GxsForumThreadWidget::loadMsgData_InsertPost(const uint32_t &token)
{ {
mStateHelper->setLoading(TOKEN_TYPE_INSERT_POST, false); mStateHelper->setLoading(TOKEN_TYPE_INSERT_POST, false);
std::cerr << "GxsForumsDialog::loadMsgData_InsertPost()"; std::cerr << "GxsForumThreadWidget::loadMsgData_InsertPost()";
std::cerr << std::endl; std::cerr << std::endl;
std::vector<RsGxsForumMsg> msgs; std::vector<RsGxsForumMsg> msgs;
if (rsGxsForums->getMsgData(token, msgs)) { if (rsGxsForums->getMsgData(token, msgs)) {
if (msgs.size() != 1) { if (msgs.size() != 1) {
std::cerr << "GxsForumsDialog::loadMsgData_InsertPost() ERROR Wrong number of answers"; std::cerr << "GxsForumThreadWidget::loadMsgData_InsertPost() ERROR Wrong number of answers";
std::cerr << std::endl; std::cerr << std::endl;
mStateHelper->setActive(TOKEN_TYPE_INSERT_POST, false); mStateHelper->setActive(TOKEN_TYPE_INSERT_POST, false);
mStateHelper->clear(TOKEN_TYPE_INSERT_POST); mStateHelper->clear(TOKEN_TYPE_INSERT_POST);
@ -1797,7 +1800,7 @@ void GxsForumThreadWidget::loadMsgData_InsertPost(const uint32_t &token)
} }
insertPostData(msgs[0]); insertPostData(msgs[0]);
} else { } else {
std::cerr << "GxsForumsDialog::loadMsgData_InsertPost() ERROR Missing Message Data..."; std::cerr << "GxsForumThreadWidget::loadMsgData_InsertPost() ERROR Missing Message Data...";
std::cerr << std::endl; std::cerr << std::endl;
mStateHelper->setActive(TOKEN_TYPE_INSERT_POST, false); mStateHelper->setActive(TOKEN_TYPE_INSERT_POST, false);
@ -1813,7 +1816,7 @@ void GxsForumThreadWidget::requestMsgData_ReplyMessage(const RsGxsGrpMsgIdPair &
RsTokReqOptions opts; RsTokReqOptions opts;
opts.mReqType = GXS_REQUEST_TYPE_MSG_DATA; opts.mReqType = GXS_REQUEST_TYPE_MSG_DATA;
std::cerr << "GxsForumsDialog::requestMsgData_ReplyMessage(" << msgId.first << "," << msgId.second << ")"; std::cerr << "GxsForumThreadWidget::requestMsgData_ReplyMessage(" << msgId.first << "," << msgId.second << ")";
std::cerr << std::endl; std::cerr << std::endl;
GxsMsgReq msgIds; GxsMsgReq msgIds;
@ -1826,7 +1829,7 @@ void GxsForumThreadWidget::requestMsgData_ReplyMessage(const RsGxsGrpMsgIdPair &
void GxsForumThreadWidget::loadMsgData_ReplyMessage(const uint32_t &token) void GxsForumThreadWidget::loadMsgData_ReplyMessage(const uint32_t &token)
{ {
std::cerr << "GxsForumsDialog::loadMsgData_ReplyMessage()"; std::cerr << "GxsForumThreadWidget::loadMsgData_ReplyMessage()";
std::cerr << std::endl; std::cerr << std::endl;
std::vector<RsGxsForumMsg> msgs; std::vector<RsGxsForumMsg> msgs;
@ -1834,7 +1837,7 @@ void GxsForumThreadWidget::loadMsgData_ReplyMessage(const uint32_t &token)
{ {
if (msgs.size() != 1) if (msgs.size() != 1)
{ {
std::cerr << "GxsForumsDialog::loadMsgData_ReplyMessage() ERROR Wrong number of answers"; std::cerr << "GxsForumThreadWidget::loadMsgData_ReplyMessage() ERROR Wrong number of answers";
std::cerr << std::endl; std::cerr << std::endl;
return; return;
} }
@ -1843,7 +1846,7 @@ void GxsForumThreadWidget::loadMsgData_ReplyMessage(const uint32_t &token)
} }
else else
{ {
std::cerr << "GxsForumsDialog::loadMsgData_ReplyMessage() ERROR Missing Message Data..."; std::cerr << "GxsForumThreadWidget::loadMsgData_ReplyMessage() ERROR Missing Message Data...";
std::cerr << std::endl; std::cerr << std::endl;
} }
} }
@ -1853,7 +1856,7 @@ void GxsForumThreadWidget::loadMsgData_ReplyMessage(const uint32_t &token)
void GxsForumThreadWidget::loadRequest(const TokenQueue *queue, const TokenRequest &req) void GxsForumThreadWidget::loadRequest(const TokenQueue *queue, const TokenRequest &req)
{ {
std::cerr << "GxsForumsDialog::loadRequest() UserType: " << req.mUserType; std::cerr << "GxsForumThreadWidget::loadRequest() UserType: " << req.mUserType;
std::cerr << std::endl; std::cerr << std::endl;
if (queue == mThreadQueue) if (queue == mThreadQueue)
@ -1874,7 +1877,7 @@ void GxsForumThreadWidget::loadRequest(const TokenQueue *queue, const TokenReque
break; break;
default: default:
std::cerr << "GxsForumsDialog::loadRequest() ERROR: INVALID TYPE"; std::cerr << "GxsForumThreadWidget::loadRequest() ERROR: INVALID TYPE";
std::cerr << std::endl; std::cerr << std::endl;
break; break;
} }

View file

@ -48,7 +48,7 @@ private:
/* GxsGroupFrameDialog */ /* GxsGroupFrameDialog */
virtual QString text(TextType type); virtual QString text(TextType type);
virtual QString icon(IconType type); virtual QString icon(IconType type);
virtual QString settingsGroupName() { return "GxsForumsDialog"; } virtual QString settingsGroupName() { return "ForumsDialog"; }
virtual GxsGroupDialog *createNewGroupDialog(TokenQueue *tokenQueue); virtual GxsGroupDialog *createNewGroupDialog(TokenQueue *tokenQueue);
virtual GxsGroupDialog *createGroupDialog(TokenQueue *tokenQueue, RsTokenService *tokenService, GxsGroupDialog::Mode mode, RsGxsGroupId groupId); virtual GxsGroupDialog *createGroupDialog(TokenQueue *tokenQueue, RsTokenService *tokenService, GxsGroupDialog::Mode mode, RsGxsGroupId groupId);
virtual int shareKeyType(); virtual int shareKeyType();

View file

@ -20,8 +20,6 @@
* Boston, MA 02110-1301, USA. * Boston, MA 02110-1301, USA.
****************************************************************/ ****************************************************************/
#include <QDir> #include <QDir>
#include <QCoreApplication> #include <QCoreApplication>
#include <QStyleFactory> #include <QStyleFactory>
@ -39,7 +37,6 @@
#include <util/win32.h> #include <util/win32.h>
#endif #endif
/* Retroshare's Settings */ /* Retroshare's Settings */
#define SETTING_LANGUAGE "LanguageCode" #define SETTING_LANGUAGE "LanguageCode"
#define SETTING_STYLE "InterfaceStyle" #define SETTING_STYLE "InterfaceStyle"
@ -64,7 +61,6 @@
/* Default Retroshare Settings */ /* Default Retroshare Settings */
#define DEFAULT_OPACITY 100 #define DEFAULT_OPACITY 100
#if defined(Q_OS_WIN32) #if defined(Q_OS_WIN32)
#define STARTUP_REG_KEY "Software\\Microsoft\\Windows\\CurrentVersion\\Run" #define STARTUP_REG_KEY "Software\\Microsoft\\Windows\\CurrentVersion\\Run"
#define RETROSHARE_REG_KEY "RetroShare" #define RETROSHARE_REG_KEY "RetroShare"
@ -531,7 +527,6 @@ void RshareSettings::setChatSendMessageWithCtrlReturn(bool bValue)
setValueToGroup("Chat", "SendMessageWithCtrlReturn", bValue); setValueToGroup("Chat", "SendMessageWithCtrlReturn", bValue);
} }
void RshareSettings::setChatSearchCharToStartSearch(int iValue) void RshareSettings::setChatSearchCharToStartSearch(int iValue)
{ {
setValueToGroup("Chat", "SearchCharToStartSearch", iValue); setValueToGroup("Chat", "SearchCharToStartSearch", iValue);
@ -571,6 +566,7 @@ bool RshareSettings::getChatSearchMoveToCursor()
{ {
return valueFromGroup("Chat", "SearchMoveToCursor", true).toBool(); return valueFromGroup("Chat", "SearchMoveToCursor", true).toBool();
} }
void RshareSettings::setChatSearchSearchWithoutLimit(bool bValue) void RshareSettings::setChatSearchSearchWithoutLimit(bool bValue)
{ {
setValueToGroup("Chat", "SearchSearchWithoutLimit", bValue); setValueToGroup("Chat", "SearchSearchWithoutLimit", bValue);
@ -790,7 +786,7 @@ bool RshareSettings::canSetRetroShareProtocol()
#endif #endif
} }
/** Register retroshare:// as protocl */ /** Register retroshare:// as protocol */
bool RshareSettings::setRetroShareProtocol(bool value) bool RshareSettings::setRetroShareProtocol(bool value)
{ {
#if defined(Q_WS_WIN) #if defined(Q_WS_WIN)
@ -915,30 +911,30 @@ void RshareSettings::setStatusBarFlag(uint flag, bool enable)
setStatusBarFlags(flags); setStatusBarFlags(flags);
} }
/* Messages */ /* Message */
bool RshareSettings::getMsgSetToReadOnActivate () bool RshareSettings::getMsgSetToReadOnActivate ()
{ {
return valueFromGroup("MessageDialog", "SetMsgToReadOnActivate", true).toBool(); return valueFromGroup("Message", "SetMsgToReadOnActivate", true).toBool();
} }
void RshareSettings::setMsgSetToReadOnActivate (bool value) void RshareSettings::setMsgSetToReadOnActivate (bool value)
{ {
setValueToGroup("MessageDialog", "SetMsgToReadOnActivate", value); setValueToGroup("Message", "SetMsgToReadOnActivate", value);
} }
bool RshareSettings::getMsgLoadEmbeddedImages() bool RshareSettings::getMsgLoadEmbeddedImages()
{ {
return valueFromGroup("MessageDialog", "LoadEmbeddedImages", false).toBool(); return valueFromGroup("Message", "LoadEmbeddedImages", false).toBool();
} }
void RshareSettings::setMsgLoadEmbeddedImages(bool value) void RshareSettings::setMsgLoadEmbeddedImages(bool value)
{ {
setValueToGroup("MessageDialog", "LoadEmbeddedImages", value); setValueToGroup("Message", "LoadEmbeddedImages", value);
} }
RshareSettings::enumMsgOpen RshareSettings::getMsgOpen() RshareSettings::enumMsgOpen RshareSettings::getMsgOpen()
{ {
enumMsgOpen value = (enumMsgOpen) valueFromGroup("MessageDialog", "msgOpen", MSG_OPEN_TAB).toInt(); enumMsgOpen value = (enumMsgOpen) valueFromGroup("Message", "msgOpen", MSG_OPEN_TAB).toInt();
switch (value) { switch (value) {
case MSG_OPEN_TAB: case MSG_OPEN_TAB:
@ -959,30 +955,41 @@ void RshareSettings::setMsgOpen(enumMsgOpen value)
value = MSG_OPEN_TAB; value = MSG_OPEN_TAB;
} }
setValueToGroup("MessageDialog", "msgOpen", value); setValueToGroup("Message", "msgOpen", value);
} }
/* Forums */ /* Forum */
bool RshareSettings::getForumMsgSetToReadOnActivate () bool RshareSettings::getForumMsgSetToReadOnActivate ()
{ {
return valueFromGroup("ForumDialog", "SetMsgToReadOnActivate", true).toBool(); return valueFromGroup("Forum", "SetMsgToReadOnActivate", true).toBool();
} }
void RshareSettings::setForumMsgSetToReadOnActivate(bool value) void RshareSettings::setForumMsgSetToReadOnActivate(bool value)
{ {
setValueToGroup("ForumDialog", "SetMsgToReadOnActivate", value); setValueToGroup("Forum", "SetMsgToReadOnActivate", value);
} }
bool RshareSettings::getForumExpandNewMessages() bool RshareSettings::getForumExpandNewMessages()
{ {
return valueFromGroup("ForumDialog", "ExpandNewMessages", true).toBool(); return valueFromGroup("Forum", "ExpandNewMessages", true).toBool();
} }
void RshareSettings::setForumExpandNewMessages(bool value) void RshareSettings::setForumExpandNewMessages(bool value)
{ {
setValueToGroup("ForumDialog", "ExpandNewMessages", value); setValueToGroup("Forum", "ExpandNewMessages", value);
} }
bool RshareSettings::getForumLoadEmbeddedImages()
{
return valueFromGroup("Forum", "LoadEmbeddedImages", false).toBool();
}
void RshareSettings::setForumLoadEmbeddedImages(bool value)
{
setValueToGroup("Forum", "LoadEmbeddedImages", value);
}
/* GroupFrame settings */
static QString groupFrameSettingsTypeToString(GroupFrameSettings::Type type) static QString groupFrameSettingsTypeToString(GroupFrameSettings::Type type)
{ {
switch (type) { switch (type) {
@ -1038,13 +1045,3 @@ void RshareSettings::setMaxTimeBeforeIdle(uint nValue)
m_maxTimeBeforeIdle = nValue; m_maxTimeBeforeIdle = nValue;
setValue("maxTimeBeforeIdle", nValue); setValue("maxTimeBeforeIdle", nValue);
} }
bool RshareSettings::getForumLoadEmbeddedImages()
{
return valueFromGroup("ForumDialog", "LoadEmbeddedImages", false).toBool();
}
void RshareSettings::setForumLoadEmbeddedImages(bool value)
{
setValueToGroup("ForumDialog", "LoadEmbeddedImages", value);
}

View file

@ -20,7 +20,6 @@
* Boston, MA 02110-1301, USA. * Boston, MA 02110-1301, USA.
****************************************************************/ ****************************************************************/
#ifndef _RSHARESETTINGS_H #ifndef _RSHARESETTINGS_H
#define _RSHARESETTINGS_H #define _RSHARESETTINGS_H
@ -60,7 +59,6 @@
//Forward declaration. //Forward declaration.
class QWidget; class QWidget;
class QTableWidget;
class QToolBar; class QToolBar;
class QMainWindow; class QMainWindow;
@ -306,7 +304,7 @@ public:
void setStatusBarFlags(uint flags); void setStatusBarFlags(uint flags);
void setStatusBarFlag(uint flag, bool enable); void setStatusBarFlag(uint flag, bool enable);
/* Messages */ /* Message */
bool getMsgSetToReadOnActivate(); bool getMsgSetToReadOnActivate();
void setMsgSetToReadOnActivate(bool value); void setMsgSetToReadOnActivate(bool value);
bool getMsgLoadEmbeddedImages(); bool getMsgLoadEmbeddedImages();
@ -315,7 +313,7 @@ public:
enumMsgOpen getMsgOpen(); enumMsgOpen getMsgOpen();
void setMsgOpen(enumMsgOpen value); void setMsgOpen(enumMsgOpen value);
/* Forums */ /* Forum */
bool getForumMsgSetToReadOnActivate(); bool getForumMsgSetToReadOnActivate();
void setForumMsgSetToReadOnActivate(bool value); void setForumMsgSetToReadOnActivate(bool value);
bool getForumExpandNewMessages(); bool getForumExpandNewMessages();
@ -323,7 +321,7 @@ public:
bool getForumLoadEmbeddedImages(); bool getForumLoadEmbeddedImages();
void setForumLoadEmbeddedImages(bool value); void setForumLoadEmbeddedImages(bool value);
/* GroupFrameSettings */ /* GroupFrame settings */
bool getGroupFrameSettings(GroupFrameSettings::Type type, GroupFrameSettings &groupFrameSettings); bool getGroupFrameSettings(GroupFrameSettings::Type type, GroupFrameSettings &groupFrameSettings);
void setGroupFrameSettings(GroupFrameSettings::Type type, const GroupFrameSettings &groupFrameSettings); void setGroupFrameSettings(GroupFrameSettings::Type type, const GroupFrameSettings &groupFrameSettings);
@ -345,4 +343,3 @@ protected:
extern RshareSettings *Settings; extern RshareSettings *Settings;
#endif #endif