mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
half-removed token queue system from IdDialog.cpp
This commit is contained in:
parent
07527cfead
commit
1a250f5138
@ -484,7 +484,7 @@ void p3GxsCircles::notifyChanges(std::vector<RsGxsNotify *> &changes)
|
|||||||
RsGxsMsgChange *msgChange = dynamic_cast<RsGxsMsgChange *>(*it);
|
RsGxsMsgChange *msgChange = dynamic_cast<RsGxsMsgChange *>(*it);
|
||||||
RsGxsNotify *c = *it;
|
RsGxsNotify *c = *it;
|
||||||
|
|
||||||
if (msgChange && !msgChange->metaChange())
|
if (msgChange)
|
||||||
{
|
{
|
||||||
#ifdef DEBUG_CIRCLES
|
#ifdef DEBUG_CIRCLES
|
||||||
std::cerr << " Found circle Message Change Notification" << std::endl;
|
std::cerr << " Found circle Message Change Notification" << std::endl;
|
||||||
@ -521,6 +521,7 @@ void p3GxsCircles::notifyChanges(std::vector<RsGxsNotify *> &changes)
|
|||||||
rsEvents->postEvent(ev);
|
rsEvents->postEvent(ev);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
mCircleCache.erase(circle_id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -393,15 +393,8 @@ IdDialog::IdDialog(QWidget *parent) : MainPage(parent), ui(new Ui::IdDialog)
|
|||||||
/* Setup TokenQueue */
|
/* Setup TokenQueue */
|
||||||
mCircleQueue = new TokenQueue(rsGxsCircles->getTokenService(), this);
|
mCircleQueue = new TokenQueue(rsGxsCircles->getTokenService(), this);
|
||||||
|
|
||||||
requestCircleGroupMeta();
|
updateCircles();
|
||||||
|
updateIdList();
|
||||||
// This timer shouldn't be needed, but it is now, because the update of subscribe status and appartenance to the
|
|
||||||
// circle doesn't trigger a proper GUI update.
|
|
||||||
|
|
||||||
QTimer *tmer = new QTimer(this) ;
|
|
||||||
connect(tmer,SIGNAL(timeout()),this,SLOT(updateCirclesDisplay())) ;
|
|
||||||
|
|
||||||
tmer->start(10000) ; // update every 10 secs.
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void IdDialog::handleEvent_main_thread(std::shared_ptr<const RsEvent> event)
|
void IdDialog::handleEvent_main_thread(std::shared_ptr<const RsEvent> event)
|
||||||
@ -419,7 +412,7 @@ void IdDialog::handleEvent_main_thread(std::shared_ptr<const RsEvent> event)
|
|||||||
case RsGxsIdentityEventCode::NEW_IDENTITY:
|
case RsGxsIdentityEventCode::NEW_IDENTITY:
|
||||||
case RsGxsIdentityEventCode::UPDATED_IDENTITY:
|
case RsGxsIdentityEventCode::UPDATED_IDENTITY:
|
||||||
|
|
||||||
requestIdList();
|
updateIdList();
|
||||||
|
|
||||||
if(!mId.isNull() && mId == e->mIdentityId)
|
if(!mId.isNull() && mId == e->mIdentityId)
|
||||||
requestIdDetails();
|
requestIdDetails();
|
||||||
@ -445,7 +438,7 @@ void IdDialog::handleEvent_main_thread(std::shared_ptr<const RsEvent> event)
|
|||||||
case RsGxsCircleEventCode::CIRCLE_MEMBERSHIP_JOIN:
|
case RsGxsCircleEventCode::CIRCLE_MEMBERSHIP_JOIN:
|
||||||
case RsGxsCircleEventCode::CIRCLE_MEMBERSHIP_REVOQUED:
|
case RsGxsCircleEventCode::CIRCLE_MEMBERSHIP_REVOQUED:
|
||||||
|
|
||||||
requestCircleGroupMeta();
|
updateCircles();
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -475,7 +468,7 @@ void IdDialog::toggleAutoBanIdentities(bool b)
|
|||||||
if(!id.isNull())
|
if(!id.isNull())
|
||||||
{
|
{
|
||||||
rsReputations->banNode(id,b) ;
|
rsReputations->banNode(id,b) ;
|
||||||
requestIdList();
|
updateIdList();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -490,12 +483,13 @@ void IdDialog::updateCirclesDisplay()
|
|||||||
#ifdef ID_DEBUG
|
#ifdef ID_DEBUG
|
||||||
std::cerr << "!!Updating circles display!" << std::endl;
|
std::cerr << "!!Updating circles display!" << std::endl;
|
||||||
#endif
|
#endif
|
||||||
requestCircleGroupMeta() ;
|
updateCircles() ;
|
||||||
}
|
}
|
||||||
|
|
||||||
/************************** Request / Response *************************/
|
/************************** Request / Response *************************/
|
||||||
/*** Loading Main Index ***/
|
/*** Loading Main Index ***/
|
||||||
|
|
||||||
|
#ifdef TO_REMOVE
|
||||||
void IdDialog::requestCircleGroupMeta()
|
void IdDialog::requestCircleGroupMeta()
|
||||||
{
|
{
|
||||||
mStateHelper->setLoading(CIRCLESDIALOG_GROUPMETA, true);
|
mStateHelper->setLoading(CIRCLESDIALOG_GROUPMETA, true);
|
||||||
@ -513,9 +507,6 @@ void IdDialog::requestCircleGroupMeta()
|
|||||||
uint32_t token;
|
uint32_t token;
|
||||||
mCircleQueue->requestGroupInfo(token, RS_TOKREQ_ANSTYPE_SUMMARY, opts, CIRCLESDIALOG_GROUPMETA);
|
mCircleQueue->requestGroupInfo(token, RS_TOKREQ_ANSTYPE_SUMMARY, opts, CIRCLESDIALOG_GROUPMETA);
|
||||||
}
|
}
|
||||||
|
|
||||||
// should update this code to be called and modify the tree widget accordingly
|
|
||||||
#ifdef SUSPENDED
|
|
||||||
void IdDialog::requestCircleGroupData(const RsGxsCircleId& circle_id)
|
void IdDialog::requestCircleGroupData(const RsGxsCircleId& circle_id)
|
||||||
{
|
{
|
||||||
mStateHelper->setLoading(CIRCLESDIALOG_GROUPDATA, true);
|
mStateHelper->setLoading(CIRCLESDIALOG_GROUPDATA, true);
|
||||||
@ -538,26 +529,44 @@ void IdDialog::requestCircleGroupData(const RsGxsCircleId& circle_id)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void IdDialog::loadCircleGroupMeta(const uint32_t &token)
|
void IdDialog::updateCircles()
|
||||||
{
|
{
|
||||||
mStateHelper->setLoading(CIRCLESDIALOG_GROUPMETA, false);
|
RsThread::async([this]()
|
||||||
|
{
|
||||||
|
// 1 - get message data from p3GxsForums
|
||||||
|
|
||||||
|
#ifdef DEBUG_FORUMS
|
||||||
|
std::cerr << "Retrieving post data for post " << mThreadId << std::endl;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
std::list<RsGroupMetaData> circle_metas ;
|
||||||
|
|
||||||
|
if(!rsGxsCircles->getCirclesSummaries(circle_metas))
|
||||||
|
{
|
||||||
|
std::cerr << __PRETTY_FUNCTION__ << " failed to retrieve circles group info list" << std::endl;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
RsQThreadUtils::postToObject( [circle_metas,this]()
|
||||||
|
{
|
||||||
|
/* Here it goes any code you want to be executed on the Qt Gui
|
||||||
|
* thread, for example to update the data model with new information
|
||||||
|
* after a blocking call to RetroShare API complete */
|
||||||
|
|
||||||
|
loadCircles(circle_metas);
|
||||||
|
|
||||||
|
}, this );
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
void IdDialog::loadCircles(const std::list<RsGroupMetaData>& groupInfo)
|
||||||
|
{
|
||||||
#ifdef ID_DEBUG
|
#ifdef ID_DEBUG
|
||||||
std::cerr << "CirclesDialog::loadCircleGroupMeta()";
|
std::cerr << "CirclesDialog::loadCircleGroupMeta()";
|
||||||
std::cerr << std::endl;
|
std::cerr << std::endl;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
std::list<RsGroupMetaData> groupInfo;
|
|
||||||
std::list<RsGroupMetaData>::iterator vit;
|
|
||||||
|
|
||||||
if (!rsGxsCircles->getGroupSummary(token,groupInfo))
|
|
||||||
{
|
|
||||||
std::cerr << "CirclesDialog::loadCircleGroupMeta() Error getting GroupMeta";
|
|
||||||
std::cerr << std::endl;
|
|
||||||
mStateHelper->setActive(CIRCLESDIALOG_GROUPMETA, false);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
mStateHelper->setActive(CIRCLESDIALOG_GROUPMETA, true);
|
mStateHelper->setActive(CIRCLESDIALOG_GROUPMETA, true);
|
||||||
|
|
||||||
/* add the top level item */
|
/* add the top level item */
|
||||||
@ -585,7 +594,7 @@ void IdDialog::loadCircleGroupMeta(const uint32_t &token)
|
|||||||
std::list<RsGxsId> own_identities ;
|
std::list<RsGxsId> own_identities ;
|
||||||
rsIdentity->getOwnIds(own_identities) ;
|
rsIdentity->getOwnIds(own_identities) ;
|
||||||
|
|
||||||
for(vit = groupInfo.begin(); vit != groupInfo.end();++vit)
|
for(auto vit = groupInfo.begin(); vit != groupInfo.end();++vit)
|
||||||
{
|
{
|
||||||
#ifdef ID_DEBUG
|
#ifdef ID_DEBUG
|
||||||
std::cerr << "CirclesDialog::loadCircleGroupMeta() GroupId: " << vit->mGroupId << " Group: " << vit->mGroupName << std::endl;
|
std::cerr << "CirclesDialog::loadCircleGroupMeta() GroupId: " << vit->mGroupId << " Group: " << vit->mGroupName << std::endl;
|
||||||
@ -891,6 +900,7 @@ static void mark_matching_tree(QTreeWidget *w, const std::set<RsGxsId>& members,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef TO_REMOVE
|
||||||
void IdDialog::loadCircleGroupData(const uint32_t& token)
|
void IdDialog::loadCircleGroupData(const uint32_t& token)
|
||||||
{
|
{
|
||||||
#ifdef ID_DEBUG
|
#ifdef ID_DEBUG
|
||||||
@ -985,8 +995,8 @@ void IdDialog::updateCircleGroup(const uint32_t& token)
|
|||||||
rsGxsCircles->updateGroup(token2,cg) ;
|
rsGxsCircles->updateGroup(token2,cg) ;
|
||||||
|
|
||||||
mCircleUpdates.erase(it) ;
|
mCircleUpdates.erase(it) ;
|
||||||
requestCircleGroupMeta();
|
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
bool IdDialog::getItemCircleId(QTreeWidgetItem *item,RsGxsCircleId& id)
|
bool IdDialog::getItemCircleId(QTreeWidgetItem *item,RsGxsCircleId& id)
|
||||||
{
|
{
|
||||||
@ -1011,8 +1021,6 @@ void IdDialog::createExternalCircle()
|
|||||||
CreateCircleDialog dlg;
|
CreateCircleDialog dlg;
|
||||||
dlg.editNewId(true);
|
dlg.editNewId(true);
|
||||||
dlg.exec();
|
dlg.exec();
|
||||||
|
|
||||||
requestCircleGroupMeta(); // update GUI
|
|
||||||
}
|
}
|
||||||
void IdDialog::showEditExistingCircle()
|
void IdDialog::showEditExistingCircle()
|
||||||
{
|
{
|
||||||
@ -1027,8 +1035,6 @@ void IdDialog::showEditExistingCircle()
|
|||||||
|
|
||||||
dlg.editExistingId(RsGxsGroupId(id),true,!(subscribe_flags & GXS_SERV::GROUP_SUBSCRIBE_ADMIN)) ;
|
dlg.editExistingId(RsGxsGroupId(id),true,!(subscribe_flags & GXS_SERV::GROUP_SUBSCRIBE_ADMIN)) ;
|
||||||
dlg.exec();
|
dlg.exec();
|
||||||
|
|
||||||
requestCircleGroupMeta(); // update GUI
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void IdDialog::grantCircleMembership()
|
void IdDialog::grantCircleMembership()
|
||||||
@ -1453,7 +1459,7 @@ void IdDialog::filterToggled(const bool &value)
|
|||||||
QAction *source = qobject_cast<QAction *>(QObject::sender());
|
QAction *source = qobject_cast<QAction *>(QObject::sender());
|
||||||
if (source) {
|
if (source) {
|
||||||
filter = source->data().toInt();
|
filter = source->data().toInt();
|
||||||
requestIdList();
|
updateIdList();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1470,13 +1476,13 @@ void IdDialog::updateSelection()
|
|||||||
if (id != mId) {
|
if (id != mId) {
|
||||||
mId = id;
|
mId = id;
|
||||||
requestIdDetails();
|
requestIdDetails();
|
||||||
requestRepList();
|
//updateRepList();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void IdDialog::requestIdList()
|
void IdDialog::updateIdList()
|
||||||
{
|
{
|
||||||
//Disable by default, will be enable by insertIdDetails()
|
//Disable by default, will be enable by insertIdDetails()
|
||||||
ui->removeIdentity->setEnabled(false);
|
ui->removeIdentity->setEnabled(false);
|
||||||
@ -1485,16 +1491,53 @@ void IdDialog::requestIdList()
|
|||||||
if (!mIdQueue)
|
if (!mIdQueue)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
mStateHelper->setLoading(IDDIALOG_IDLIST, true);
|
int accept = filter;
|
||||||
|
|
||||||
mIdQueue->cancelActiveRequestTokens(IDDIALOG_IDLIST);
|
|
||||||
|
|
||||||
RsTokReqOptions opts;
|
RsThread::async([this]()
|
||||||
opts.mReqType = GXS_REQUEST_TYPE_GROUP_DATA;
|
{
|
||||||
|
// 1 - get message data from p3GxsForums
|
||||||
|
|
||||||
uint32_t token;
|
#ifdef DEBUG_FORUMS
|
||||||
|
std::cerr << "Retrieving post data for post " << mThreadId << std::endl;
|
||||||
|
#endif
|
||||||
|
|
||||||
mIdQueue->requestGroupInfo(token, RS_TOKREQ_ANSTYPE_DATA, opts, IDDIALOG_IDLIST);
|
std::list<RsGroupMetaData> identity_metas ;
|
||||||
|
|
||||||
|
if (!rsIdentity->getIdentitiesSummaries(identity_metas))
|
||||||
|
{
|
||||||
|
std::cerr << "IdDialog::insertIdList() Error getting GroupData" << std::endl;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::set<RsGxsId> ids;
|
||||||
|
for(auto it(identity_metas.begin());it!=identity_metas.end();++it)
|
||||||
|
ids.insert(RsGxsId((*it).mGroupId));
|
||||||
|
|
||||||
|
std::vector<RsGxsIdGroup> groups;
|
||||||
|
|
||||||
|
if(!rsIdentity->getIdentitiesInfo(ids,groups))
|
||||||
|
{
|
||||||
|
std::cerr << "IdDialog::insertIdList() Error getting identities info" << std::endl;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::map<RsGxsGroupId,RsGxsIdGroup> ids_set;
|
||||||
|
|
||||||
|
for(auto it(groups.begin());it!=groups.end();++it)
|
||||||
|
ids_set[(*it).mMeta.mGroupId] = *it;
|
||||||
|
|
||||||
|
RsQThreadUtils::postToObject( [ids_set,this]()
|
||||||
|
{
|
||||||
|
/* Here it goes any code you want to be executed on the Qt Gui
|
||||||
|
* thread, for example to update the data model with new information
|
||||||
|
* after a blocking call to RetroShare API complete */
|
||||||
|
|
||||||
|
loadIdentities(ids_set);
|
||||||
|
|
||||||
|
}, this );
|
||||||
|
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
bool IdDialog::fillIdListItem(const RsGxsIdGroup& data, QTreeWidgetItem *&item, const RsPgpId &ownPgpId, int accept)
|
bool IdDialog::fillIdListItem(const RsGxsIdGroup& data, QTreeWidgetItem *&item, const RsPgpId &ownPgpId, int accept)
|
||||||
@ -1656,8 +1699,10 @@ bool IdDialog::fillIdListItem(const RsGxsIdGroup& data, QTreeWidgetItem *&item,
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void IdDialog::insertIdList(uint32_t token)
|
void IdDialog::loadIdentities(const std::map<RsGxsGroupId,RsGxsIdGroup>& ids_set_const)
|
||||||
{
|
{
|
||||||
|
auto ids_set(ids_set_const);
|
||||||
|
|
||||||
//First: Get current item to restore after
|
//First: Get current item to restore after
|
||||||
RsGxsGroupId oldCurrentId = mIdToNavigate;
|
RsGxsGroupId oldCurrentId = mIdToNavigate;
|
||||||
{
|
{
|
||||||
@ -1666,35 +1711,7 @@ void IdDialog::insertIdList(uint32_t token)
|
|||||||
oldCurrentId = RsGxsGroupId(oldCurrent->text(RSID_COL_KEYID).toStdString());
|
oldCurrentId = RsGxsGroupId(oldCurrent->text(RSID_COL_KEYID).toStdString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
int accept = filter;
|
||||||
mStateHelper->setLoading(IDDIALOG_IDLIST, false);
|
|
||||||
|
|
||||||
int accept = filter;
|
|
||||||
|
|
||||||
//RsGxsIdGroup data;
|
|
||||||
std::vector<RsGxsIdGroup> datavector;
|
|
||||||
//std::vector<RsGxsIdGroup>::iterator vit;
|
|
||||||
|
|
||||||
if (!rsIdentity->getGroupData(token, datavector))
|
|
||||||
{
|
|
||||||
#ifdef ID_DEBUG
|
|
||||||
std::cerr << "IdDialog::insertIdList() Error getting GroupData";
|
|
||||||
std::cerr << std::endl;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
mStateHelper->setActive(IDDIALOG_IDLIST, false);
|
|
||||||
mStateHelper->clear(IDDIALOG_IDLIST);
|
|
||||||
clearPerson();
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// turn that vector into a std::set, to avoid a linear search
|
|
||||||
|
|
||||||
std::map<RsGxsGroupId,RsGxsIdGroup> ids_set ;
|
|
||||||
|
|
||||||
for(uint32_t i=0;i<datavector.size();++i)
|
|
||||||
ids_set[datavector[i].mMeta.mGroupId] = datavector[i] ;
|
|
||||||
|
|
||||||
mStateHelper->setActive(IDDIALOG_IDLIST, true);
|
mStateHelper->setActive(IDDIALOG_IDLIST, true);
|
||||||
|
|
||||||
@ -1709,27 +1726,27 @@ void IdDialog::insertIdList(uint32_t token)
|
|||||||
while ((item = *itemIterator) != NULL)
|
while ((item = *itemIterator) != NULL)
|
||||||
{
|
{
|
||||||
++itemIterator;
|
++itemIterator;
|
||||||
std::map<RsGxsGroupId,RsGxsIdGroup>::iterator it = ids_set.find(RsGxsGroupId(item->text(RSID_COL_KEYID).toStdString())) ;
|
auto it = ids_set.find(RsGxsGroupId(item->text(RSID_COL_KEYID).toStdString())) ;
|
||||||
|
|
||||||
if(it == ids_set.end())
|
if(it == ids_set.end())
|
||||||
{
|
{
|
||||||
if(item != allItem && item != contactsItem && item != ownItem)
|
if(item != allItem && item != contactsItem && item != ownItem)
|
||||||
delete(item);
|
delete(item);
|
||||||
|
|
||||||
continue ;
|
continue ;
|
||||||
}
|
}
|
||||||
|
|
||||||
QTreeWidgetItem *parent_item = item->parent() ;
|
QTreeWidgetItem *parent_item = item->parent() ;
|
||||||
|
|
||||||
if( (parent_item == allItem && it->second.mIsAContact) || (parent_item == contactsItem && !it->second.mIsAContact))
|
if( (parent_item == allItem && it->second.mIsAContact) || (parent_item == contactsItem && !it->second.mIsAContact))
|
||||||
{
|
{
|
||||||
delete item ; // do not remove from the list, so that it is added again in the correct place.
|
delete item ; // do not remove from the list, so that it is added again in the correct place.
|
||||||
continue ;
|
continue ;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!fillIdListItem(it->second, item, ownPgpId, accept))
|
if (!fillIdListItem(it->second, item, ownPgpId, accept))
|
||||||
delete(item);
|
delete(item);
|
||||||
|
|
||||||
ids_set.erase(it); // erase, so it is not considered to be a new item
|
ids_set.erase(it); // erase, so it is not considered to be a new item
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2167,7 +2184,7 @@ void IdDialog::modifyReputation()
|
|||||||
// trigger refresh when finished.
|
// trigger refresh when finished.
|
||||||
// basic / anstype are not needed.
|
// basic / anstype are not needed.
|
||||||
requestIdDetails();
|
requestIdDetails();
|
||||||
requestIdList();
|
updateIdList();
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -2201,13 +2218,13 @@ void IdDialog::updateDisplay(bool complete)
|
|||||||
|
|
||||||
if (complete) {
|
if (complete) {
|
||||||
/* Fill complete */
|
/* Fill complete */
|
||||||
requestIdList();
|
updateIdList();
|
||||||
//requestIdDetails();
|
//requestIdDetails();
|
||||||
requestRepList();
|
requestRepList();
|
||||||
|
|
||||||
|
updateCircles();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
requestCircleGroupMeta();
|
|
||||||
|
|
||||||
// std::set<RsGxsGroupId> grpIds;
|
// std::set<RsGxsGroupId> grpIds;
|
||||||
// getAllGrpIds(grpIds);
|
// getAllGrpIds(grpIds);
|
||||||
@ -2356,9 +2373,9 @@ void IdDialog::loadRequest(const TokenQueue * queue, const TokenRequest &req)
|
|||||||
{
|
{
|
||||||
switch(req.mUserType)
|
switch(req.mUserType)
|
||||||
{
|
{
|
||||||
case IDDIALOG_IDLIST:
|
// case IDDIALOG_IDLIST:
|
||||||
insertIdList(req.mToken);
|
// insertIdList(req.mToken);
|
||||||
break;
|
// break;
|
||||||
|
|
||||||
case IDDIALOG_IDDETAILS:
|
case IDDIALOG_IDDETAILS:
|
||||||
insertIdDetails(req.mToken);
|
insertIdDetails(req.mToken);
|
||||||
@ -2383,6 +2400,7 @@ void IdDialog::loadRequest(const TokenQueue * queue, const TokenRequest &req)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef TO_REMOVE
|
||||||
if(queue == mCircleQueue)
|
if(queue == mCircleQueue)
|
||||||
{
|
{
|
||||||
#ifdef ID_DEBUG
|
#ifdef ID_DEBUG
|
||||||
@ -2393,17 +2411,17 @@ void IdDialog::loadRequest(const TokenQueue * queue, const TokenRequest &req)
|
|||||||
/* now switch on req */
|
/* now switch on req */
|
||||||
switch(req.mUserType)
|
switch(req.mUserType)
|
||||||
{
|
{
|
||||||
case CIRCLESDIALOG_GROUPMETA:
|
// case CIRCLESDIALOG_GROUPMETA:
|
||||||
loadCircleGroupMeta(req.mToken);
|
// loadCircleGroupMeta(req.mToken);
|
||||||
break;
|
// break;
|
||||||
|
|
||||||
case CIRCLESDIALOG_GROUPDATA:
|
// case CIRCLESDIALOG_GROUPDATA:
|
||||||
loadCircleGroupData(req.mToken);
|
// loadCircleGroupData(req.mToken);
|
||||||
break;
|
// break;
|
||||||
|
//
|
||||||
case CIRCLESDIALOG_GROUPUPDATE:
|
// case CIRCLESDIALOG_GROUPUPDATE:
|
||||||
updateCircleGroup(req.mToken);
|
// updateCircleGroup(req.mToken);
|
||||||
break;
|
// break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
std::cerr << "CirclesDialog::loadRequest() ERROR: INVALID TYPE";
|
std::cerr << "CirclesDialog::loadRequest() ERROR: INVALID TYPE";
|
||||||
@ -2411,6 +2429,7 @@ void IdDialog::loadRequest(const TokenQueue * queue, const TokenRequest &req)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void IdDialog::IdListCustomPopupMenu( QPoint )
|
void IdDialog::IdListCustomPopupMenu( QPoint )
|
||||||
@ -2744,7 +2763,7 @@ void IdDialog::negativePerson()
|
|||||||
}
|
}
|
||||||
|
|
||||||
requestIdDetails();
|
requestIdDetails();
|
||||||
requestIdList();
|
updateIdList();
|
||||||
}
|
}
|
||||||
|
|
||||||
void IdDialog::neutralPerson()
|
void IdDialog::neutralPerson()
|
||||||
@ -2760,7 +2779,7 @@ void IdDialog::neutralPerson()
|
|||||||
}
|
}
|
||||||
|
|
||||||
requestIdDetails();
|
requestIdDetails();
|
||||||
requestIdList();
|
updateIdList();
|
||||||
}
|
}
|
||||||
void IdDialog::positivePerson()
|
void IdDialog::positivePerson()
|
||||||
{
|
{
|
||||||
@ -2775,7 +2794,7 @@ void IdDialog::positivePerson()
|
|||||||
}
|
}
|
||||||
|
|
||||||
requestIdDetails();
|
requestIdDetails();
|
||||||
requestIdList();
|
updateIdList();
|
||||||
}
|
}
|
||||||
|
|
||||||
void IdDialog::addtoContacts()
|
void IdDialog::addtoContacts()
|
||||||
@ -2789,7 +2808,7 @@ void IdDialog::addtoContacts()
|
|||||||
rsIdentity->setAsRegularContact(RsGxsId(Id),true);
|
rsIdentity->setAsRegularContact(RsGxsId(Id),true);
|
||||||
}
|
}
|
||||||
|
|
||||||
requestIdList();
|
updateIdList();
|
||||||
}
|
}
|
||||||
|
|
||||||
void IdDialog::removefromContacts()
|
void IdDialog::removefromContacts()
|
||||||
@ -2803,7 +2822,7 @@ QList<QTreeWidgetItem *> selected_items = ui->idTreeWidget->selectedItems();
|
|||||||
rsIdentity->setAsRegularContact(RsGxsId(Id),false);
|
rsIdentity->setAsRegularContact(RsGxsId(Id),false);
|
||||||
}
|
}
|
||||||
|
|
||||||
requestIdList();
|
updateIdList();
|
||||||
}
|
}
|
||||||
|
|
||||||
void IdDialog::on_closeInfoFrameButton_clicked()
|
void IdDialog::on_closeInfoFrameButton_clicked()
|
||||||
|
@ -63,11 +63,12 @@ public:
|
|||||||
protected:
|
protected:
|
||||||
virtual void updateDisplay(bool complete);
|
virtual void updateDisplay(bool complete);
|
||||||
|
|
||||||
void loadCircleGroupMeta(const uint32_t &token);
|
void updateIdList();
|
||||||
void loadCircleGroupData(const uint32_t &token);
|
void loadIdentities(const std::map<RsGxsGroupId, RsGxsIdGroup> &ids_set);
|
||||||
void updateCircleGroup(const uint32_t& token);
|
|
||||||
|
void updateCircles();
|
||||||
|
void loadCircles(const std::list<RsGroupMetaData>& circle_metas);
|
||||||
|
|
||||||
void requestCircleGroupMeta();
|
|
||||||
//void requestCircleGroupData(const RsGxsCircleId& circle_id);
|
//void requestCircleGroupData(const RsGxsCircleId& circle_id);
|
||||||
bool getItemCircleId(QTreeWidgetItem *item,RsGxsCircleId& id) ;
|
bool getItemCircleId(QTreeWidgetItem *item,RsGxsCircleId& id) ;
|
||||||
|
|
||||||
@ -123,7 +124,6 @@ private:
|
|||||||
void requestIdDetails();
|
void requestIdDetails();
|
||||||
void insertIdDetails(uint32_t token);
|
void insertIdDetails(uint32_t token);
|
||||||
|
|
||||||
void requestIdList();
|
|
||||||
void requestIdData(std::list<RsGxsGroupId> &ids);
|
void requestIdData(std::list<RsGxsGroupId> &ids);
|
||||||
bool fillIdListItem(const RsGxsIdGroup& data, QTreeWidgetItem *&item, const RsPgpId &ownPgpId, int accept);
|
bool fillIdListItem(const RsGxsIdGroup& data, QTreeWidgetItem *&item, const RsPgpId &ownPgpId, int accept);
|
||||||
void insertIdList(uint32_t token);
|
void insertIdList(uint32_t token);
|
||||||
|
Loading…
Reference in New Issue
Block a user