mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
2ce92da8ad
- Enable EditDialog for own Ids. - Addition, parsing and removal of Tags in IdEditDialog. - Display of Tags (only text) in GxsId Label/Chooser/TreewidgetItem .. TODO: - Add icon sets for RecognTags. - display of Tags as Icons. git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-gxs_finale@6855 b45a01b8-16f6-495d-af2f-9b41ad6348cc
137 lines
2.6 KiB
C++
137 lines
2.6 KiB
C++
/*
|
|
* Retroshare Gxs Support
|
|
*
|
|
* Copyright 2012-2013 by Robert Fernie.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License Version 2.1 as published by the Free Software Foundation.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
* USA.
|
|
*
|
|
* Please report all bugs and problems to "retroshare@lunamutt.com".
|
|
*
|
|
*/
|
|
|
|
#include "GxsIdLabel.h"
|
|
|
|
#include <algorithm>
|
|
|
|
#include <retroshare/rspeers.h>
|
|
|
|
#include <iostream>
|
|
|
|
/** Constructor */
|
|
GxsIdLabel::GxsIdLabel(QWidget *parent)
|
|
:QLabel(parent), mTimer(NULL), mCount(0)
|
|
{
|
|
mTimer = new QTimer(this);
|
|
mTimer->setSingleShot(true);
|
|
connect(mTimer, SIGNAL(timeout()), this, SLOT(loadId()));
|
|
|
|
return;
|
|
}
|
|
|
|
void GxsIdLabel::setId(const RsGxsId &id)
|
|
{
|
|
mId = id;
|
|
if (mId == "")
|
|
{
|
|
setText("No Signature");
|
|
}
|
|
else
|
|
{
|
|
loadId();
|
|
}
|
|
}
|
|
|
|
bool GxsIdLabel::getId(RsGxsId &id)
|
|
{
|
|
id = mId;
|
|
return true;
|
|
}
|
|
|
|
static bool MakeIdDesc(const RsGxsId &id, QString &str)
|
|
{
|
|
RsIdentityDetails details;
|
|
|
|
if (!rsIdentity->getIdDetails(id, details))
|
|
{
|
|
str = "Loading... " + QString::fromStdString(id.substr(0,5));
|
|
return false;
|
|
}
|
|
|
|
str = QString::fromUtf8(details.mNickname.c_str());
|
|
|
|
std::list<RsRecognTag>::iterator it;
|
|
for(it = details.mRecognTags.begin(); it != details.mRecognTags.end(); it++)
|
|
{
|
|
str += " (";
|
|
str += QString::number(it->tag_class);
|
|
str += ":";
|
|
str += QString::number(it->tag_type);
|
|
str += ")";
|
|
}
|
|
|
|
bool addCode = true;
|
|
if (details.mPgpLinked)
|
|
{
|
|
str += " (PGP) [";
|
|
if (details.mPgpKnown)
|
|
{
|
|
/* look up real name */
|
|
std::string authorName = rsPeers->getPeerName(details.mPgpId);
|
|
str += QString::fromUtf8(authorName.c_str());
|
|
str += "]";
|
|
|
|
addCode = false;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
str += " (Anon) [";
|
|
}
|
|
|
|
if (addCode)
|
|
{
|
|
str += QString::fromStdString(id.substr(0,5));
|
|
str += "...]";
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
#define MAX_ATTEMPTS 3
|
|
|
|
void GxsIdLabel::loadId()
|
|
{
|
|
mCount++;
|
|
|
|
/* try and get details - if not there ... set callback */
|
|
QString desc;
|
|
bool loaded = MakeIdDesc(mId, desc);
|
|
|
|
setText(desc);
|
|
|
|
if (loaded)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (mCount < MAX_ATTEMPTS)
|
|
{
|
|
/* timer event to try again */
|
|
mTimer->setInterval(mCount * 1000);
|
|
mTimer->start();
|
|
}
|
|
}
|
|
|