From ebed027cbaca22d98607c5b5f742d7ee7e96bbbf Mon Sep 17 00:00:00 2001 From: csoler Date: Sun, 11 Aug 2019 11:46:49 +0200 Subject: [PATCH] fixed show/hide groups option --- .../src/gui/common/FriendListModel.cpp | 90 ++++++++++++------- .../src/gui/common/FriendListModel.h | 1 + .../src/gui/common/NewFriendList.cpp | 9 +- retroshare-gui/src/gui/common/NewFriendList.h | 1 - 4 files changed, 61 insertions(+), 40 deletions(-) diff --git a/retroshare-gui/src/gui/common/FriendListModel.cpp b/retroshare-gui/src/gui/common/FriendListModel.cpp index 15cd69c27..463f583ee 100644 --- a/retroshare-gui/src/gui/common/FriendListModel.cpp +++ b/retroshare-gui/src/gui/common/FriendListModel.cpp @@ -168,11 +168,14 @@ RsFriendListModel::EntryIndex RsFriendListModel::EntryIndex::parent() const if(i.group_index==0xff) return EntryIndex(); else + { i.type = ENTRY_TYPE_GROUP; + i.profile_index = 0xff; + } break; case ENTRY_TYPE_NODE: i.type = ENTRY_TYPE_PROFILE; - i.node_index = 0; + i.node_index = 0xff; break; } @@ -802,24 +805,40 @@ static bool decreasing_time_comp(const std::pair& e1,cons void RsFriendListModel::debug_dump() const { - for(uint32_t j=0;j groupInfoList; - rsPeers->getGroupInfoList(groupInfoList) ; + std::list groupInfoList; + rsPeers->getGroupInfoList(groupInfoList) ; - RsDbg() << "Updating Groups information: " << std::endl; + RsDbg() << "Updating Groups information: " << std::endl; - for(auto it(groupInfoList.begin());it!=groupInfoList.end();++it) - { - // first, fill the group hierarchical info + for(auto it(groupInfoList.begin());it!=groupInfoList.end();++it) + { + // first, fill the group hierarchical info - HierarchicalGroupInformation hgroup; - hgroup.group_info = *it; + HierarchicalGroupInformation hgroup; + hgroup.group_info = *it; - RsDbg() << " Group \"" << hgroup.group_info.name << "\"" << std::endl; + RsDbg() << " Group \"" << hgroup.group_info.name << "\"" << std::endl; - for(auto it2((*it).peerIds.begin());it2!=(*it).peerIds.end();++it2) - { - // Then for each peer in this group, make sure that the peer is already known, and if not create it + for(auto it2((*it).peerIds.begin());it2!=(*it).peerIds.end();++it2) + { + // Then for each peer in this group, make sure that the peer is already known, and if not create it - auto it3 = pgp_indices.find(*it2); + auto it3 = pgp_indices.find(*it2); - if(it3 == pgp_indices.end())// not found - RsErr() << "Inconsistency error!" << std::endl; + if(it3 == pgp_indices.end())// not found + RsErr() << "Inconsistency error!" << std::endl; - hgroup.child_profile_indices.push_back(it3->second); - } + hgroup.child_profile_indices.push_back(it3->second); + } - mGroups.push_back(hgroup); - } + mGroups.push_back(hgroup); + } + } // now the top level list @@ -1004,7 +1026,7 @@ void RsFriendListModel::updateInternalData() // finally, tell the model client that layout has changed. - beginInsertRows(QModelIndex(),0,mGroups.size()-1); + beginInsertRows(QModelIndex(),0,mTopLevel.size()-1); endInsertRows(); postMods(); diff --git a/retroshare-gui/src/gui/common/FriendListModel.h b/retroshare-gui/src/gui/common/FriendListModel.h index 016f9999b..04b596cad 100644 --- a/retroshare-gui/src/gui/common/FriendListModel.h +++ b/retroshare-gui/src/gui/common/FriendListModel.h @@ -119,6 +119,7 @@ public: // This method will asynchroneously update the data void setDisplayGroups(bool b); + bool getDisplayGroups() const { return mDisplayGroups; } EntryType getType(const QModelIndex&) const; diff --git a/retroshare-gui/src/gui/common/NewFriendList.cpp b/retroshare-gui/src/gui/common/NewFriendList.cpp index ca4c2d1bf..b92224e5b 100644 --- a/retroshare-gui/src/gui/common/NewFriendList.cpp +++ b/retroshare-gui/src/gui/common/NewFriendList.cpp @@ -141,7 +141,6 @@ NewFriendList::NewFriendList(QWidget *parent) : QWidget(parent), ui(new Ui::NewFriendList()), // mCompareRole(new RSTreeWidgetItemCompareRole), - mShowGroups(true), mShowState(false), mHideUnconnected(false), groupsHasChanged(false) @@ -256,7 +255,7 @@ void NewFriendList::headerContextMenuRequested(QPoint p) ui->actionHideOfflineFriends->setChecked(mHideUnconnected); ui->actionShowState->setChecked(mShowState); - ui->actionShowGroups->setChecked(mShowGroups); + ui->actionShowGroups->setChecked(mModel->getDisplayGroups()); QHeaderView *header = ui->peerTreeWidget->header(); @@ -314,7 +313,7 @@ void NewFriendList::processSettings(bool load) // states setHideUnconnected(Settings->value("hideUnconnected", mHideUnconnected).toBool()); setShowState(Settings->value("showState", mShowState).toBool()); - setShowGroups(Settings->value("showGroups", mShowGroups).toBool()); + setShowGroups(Settings->value("showGroups", mModel->getDisplayGroups()).toBool()); // sort toggleSortByState(Settings->value("sortByState", isSortByState()).toBool()); @@ -342,7 +341,7 @@ void NewFriendList::processSettings(bool load) // states Settings->setValue("hideUnconnected", mHideUnconnected); Settings->setValue("showState", mShowState); - Settings->setValue("showGroups", mShowGroups); + Settings->setValue("showGroups", mModel->getDisplayGroups()); // sort Settings->setValue("sortByState", isSortByState()); @@ -463,7 +462,7 @@ void NewFriendList::peerTreeWidgetCustomPopupMenu() RsFriendListModel::RsProfileDetails details; mModel->getProfileData(index,details); - if(mShowGroups) + if(mModel->getDisplayGroups()) { QMenu* addToGroupMenu = NULL; QMenu* moveToGroupMenu = NULL; diff --git a/retroshare-gui/src/gui/common/NewFriendList.h b/retroshare-gui/src/gui/common/NewFriendList.h index e3811f7d5..2150c5ccb 100644 --- a/retroshare-gui/src/gui/common/NewFriendList.h +++ b/retroshare-gui/src/gui/common/NewFriendList.h @@ -108,7 +108,6 @@ private: bool getCurrentProfile(RsFriendListModel::RsProfileDetails& prof) const; // Settings for peer list display - bool mShowGroups; bool mShowState; bool mHideUnconnected;