2013-03-15 17:02:43 -04:00
|
|
|
/*
|
|
|
|
* Retroshare Gxs Support
|
2012-11-19 17:14:45 -05:00
|
|
|
*
|
2013-03-15 17:02:43 -04:00
|
|
|
* Copyright 2012-2013 by Robert Fernie.
|
2012-11-19 17:14:45 -05:00
|
|
|
*
|
2013-03-15 17:02:43 -04:00
|
|
|
* 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.
|
2012-11-19 17:14:45 -05:00
|
|
|
*
|
2013-03-15 17:02:43 -04:00
|
|
|
* 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.
|
2012-11-19 17:14:45 -05:00
|
|
|
*
|
2013-03-15 17:02:43 -04:00
|
|
|
* 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".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-11-19 17:14:45 -05:00
|
|
|
#include "GxsIdTreeWidgetItem.h"
|
2014-02-02 06:25:11 -05:00
|
|
|
#include "GxsIdDetails.h"
|
|
|
|
|
2013-03-17 12:31:30 -04:00
|
|
|
#include "rshare.h"
|
2012-11-19 17:14:45 -05:00
|
|
|
|
|
|
|
#include <retroshare/rspeers.h>
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
2013-03-17 12:31:30 -04:00
|
|
|
#define MAX_ATTEMPTS 5
|
|
|
|
|
2012-11-19 17:14:45 -05:00
|
|
|
/** Constructor */
|
2013-03-12 20:33:14 -04:00
|
|
|
GxsIdRSTreeWidgetItem::GxsIdRSTreeWidgetItem(const RSTreeWidgetItemCompareRole *compareRole, QTreeWidget *parent)
|
2013-03-17 12:31:30 -04:00
|
|
|
: QObject(NULL), RSTreeWidgetItem(compareRole, parent), mCount(0), mColumn(0)
|
2012-11-19 17:14:45 -05:00
|
|
|
{
|
2012-11-21 13:55:52 -05:00
|
|
|
init();
|
|
|
|
}
|
2012-11-19 17:14:45 -05:00
|
|
|
|
2013-03-12 20:33:14 -04:00
|
|
|
GxsIdRSTreeWidgetItem::GxsIdRSTreeWidgetItem(const RSTreeWidgetItemCompareRole *compareRole, QTreeWidgetItem *parent)
|
2013-03-17 12:31:30 -04:00
|
|
|
: QObject(NULL), RSTreeWidgetItem(compareRole, parent), mCount(0), mColumn(0)
|
2012-11-21 13:55:52 -05:00
|
|
|
{
|
|
|
|
init();
|
2012-11-19 17:14:45 -05:00
|
|
|
}
|
|
|
|
|
2013-03-12 20:33:14 -04:00
|
|
|
void GxsIdRSTreeWidgetItem::init()
|
2012-11-19 17:14:45 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-03-12 20:33:14 -04:00
|
|
|
void GxsIdRSTreeWidgetItem::setId(const RsGxsId &id, int column)
|
2012-11-19 17:14:45 -05:00
|
|
|
{
|
2014-09-16 15:53:23 -04:00
|
|
|
//std::cerr << " GxsIdRSTreeWidgetItem::setId(" << id << "," << column << ")";
|
|
|
|
//std::cerr << std::endl;
|
2012-11-19 17:14:45 -05:00
|
|
|
|
|
|
|
mId = id;
|
|
|
|
mColumn = column;
|
2014-03-17 16:56:06 -04:00
|
|
|
if (mId.isNull())
|
2012-11-19 17:14:45 -05:00
|
|
|
{
|
|
|
|
setText(mColumn, "No Signature");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
loadId();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-12 20:33:14 -04:00
|
|
|
bool GxsIdRSTreeWidgetItem::getId(RsGxsId &id)
|
2012-11-19 17:14:45 -05:00
|
|
|
{
|
|
|
|
id = mId;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-03-12 20:33:14 -04:00
|
|
|
void GxsIdRSTreeWidgetItem::loadId()
|
2012-11-19 17:14:45 -05:00
|
|
|
{
|
2013-03-17 12:31:30 -04:00
|
|
|
disconnect(rApp, SIGNAL(secondTick()), this, SLOT(loadId()));
|
|
|
|
|
2014-09-16 15:53:23 -04:00
|
|
|
//std::cerr << " GxsIdRSTreeWidgetItem::loadId() Id: " << mId << ", mCount: " << mCount;
|
|
|
|
//std::cerr << std::endl;
|
2013-03-12 20:33:14 -04:00
|
|
|
|
|
|
|
mCount++;
|
|
|
|
|
|
|
|
/* try and get details - if not there ... set callback */
|
2014-09-13 10:07:59 -04:00
|
|
|
QString desc;
|
|
|
|
QString comment ;
|
2014-02-02 06:25:11 -05:00
|
|
|
std::list<QIcon> icons;
|
2014-09-13 10:07:59 -04:00
|
|
|
bool loaded = GxsIdDetails::MakeIdDesc(mId, true, desc, icons,comment);
|
2014-02-02 06:25:11 -05:00
|
|
|
QIcon combinedIcon;
|
|
|
|
if (!icons.empty())
|
|
|
|
{
|
|
|
|
GxsIdDetails::GenerateCombinedIcon(combinedIcon, icons);
|
|
|
|
setIcon(mColumn, combinedIcon);
|
2014-09-13 10:07:59 -04:00
|
|
|
}
|
|
|
|
setToolTip(mColumn,comment) ;
|
2014-09-16 15:11:22 -04:00
|
|
|
setText(mColumn, desc);
|
|
|
|
setData(mColumn,Qt::UserRole, QString::fromStdString(mId.toStdString()));
|
2013-03-12 20:33:14 -04:00
|
|
|
|
2014-09-16 15:11:22 -04:00
|
|
|
if (loaded)
|
2012-11-19 17:14:45 -05:00
|
|
|
{
|
2014-09-16 15:53:23 -04:00
|
|
|
// std::cerr << " GxsIdRSTreeWidgetItem::loadId() Loaded Okay";
|
|
|
|
//std::cerr << std::endl;
|
2013-03-12 20:33:14 -04:00
|
|
|
return;
|
2012-11-19 17:14:45 -05:00
|
|
|
}
|
|
|
|
|
2013-03-12 20:33:14 -04:00
|
|
|
if (mCount < MAX_ATTEMPTS)
|
2012-11-19 17:14:45 -05:00
|
|
|
{
|
2014-09-16 15:53:23 -04:00
|
|
|
//std::cerr << " GxsIdRSTreeWidgetItem::loadId() Starting Timer for re-try";
|
|
|
|
//std::cerr << std::endl;
|
2012-11-19 17:14:45 -05:00
|
|
|
|
2013-03-12 20:33:14 -04:00
|
|
|
/* timer event to try again */
|
2013-03-17 12:31:30 -04:00
|
|
|
connect(rApp, SIGNAL(secondTick()), this, SLOT(loadId()));
|
2012-11-19 17:14:45 -05:00
|
|
|
}
|
2013-03-12 20:33:14 -04:00
|
|
|
}
|
|
|
|
|
2014-09-16 15:11:22 -04:00
|
|
|
#if 0
|
2013-03-12 20:33:14 -04:00
|
|
|
/** Constructor */
|
|
|
|
GxsIdTreeWidgetItem::GxsIdTreeWidgetItem(QTreeWidget *parent)
|
2013-03-17 12:31:30 -04:00
|
|
|
: QObject(NULL), QTreeWidgetItem(parent), mCount(0), mColumn(0)
|
2013-03-12 20:33:14 -04:00
|
|
|
{
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
|
|
|
|
GxsIdTreeWidgetItem::GxsIdTreeWidgetItem(QTreeWidgetItem *parent)
|
2013-03-17 12:31:30 -04:00
|
|
|
: QObject(NULL), QTreeWidgetItem(parent), mCount(0), mColumn(0)
|
2013-03-12 20:33:14 -04:00
|
|
|
{
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GxsIdTreeWidgetItem::init()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void GxsIdTreeWidgetItem::setId(const RsGxsId &id, int column)
|
|
|
|
{
|
|
|
|
std::cerr << " GxsIdTreeWidgetItem::setId(" << id << "," << column << ")";
|
|
|
|
std::cerr << std::endl;
|
|
|
|
|
|
|
|
mId = id;
|
|
|
|
mColumn = column;
|
2014-03-17 16:56:06 -04:00
|
|
|
if (mId.isNull())
|
2012-11-19 17:14:45 -05:00
|
|
|
{
|
2013-03-12 20:33:14 -04:00
|
|
|
setText(mColumn, "No Signature");
|
2012-11-19 17:14:45 -05:00
|
|
|
}
|
2013-03-12 20:33:14 -04:00
|
|
|
else
|
2012-11-19 17:14:45 -05:00
|
|
|
{
|
2013-03-12 20:33:14 -04:00
|
|
|
loadId();
|
2012-11-19 17:14:45 -05:00
|
|
|
}
|
2013-03-12 20:33:14 -04:00
|
|
|
}
|
2012-11-19 17:14:45 -05:00
|
|
|
|
2013-03-12 20:33:14 -04:00
|
|
|
bool GxsIdTreeWidgetItem::getId(RsGxsId &id)
|
|
|
|
{
|
|
|
|
id = mId;
|
2012-11-19 17:14:45 -05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GxsIdTreeWidgetItem::loadId()
|
|
|
|
{
|
2013-03-17 12:31:30 -04:00
|
|
|
disconnect(rApp, SIGNAL(secondTick()), this, SLOT(loadId()));
|
|
|
|
|
2012-11-19 17:14:45 -05:00
|
|
|
std::cerr << " GxsIdTreeWidgetItem::loadId() Id: " << mId << ", mCount: " << mCount;
|
|
|
|
std::cerr << std::endl;
|
|
|
|
|
|
|
|
mCount++;
|
|
|
|
|
|
|
|
/* try and get details - if not there ... set callback */
|
|
|
|
QString desc;
|
2014-09-13 10:07:59 -04:00
|
|
|
QString comment;
|
2014-02-02 06:25:11 -05:00
|
|
|
std::list<QIcon> icons;
|
2014-09-13 10:07:59 -04:00
|
|
|
bool loaded = GxsIdDetails::MakeIdDesc(mId, true, desc, icons,comment);
|
2014-02-02 06:25:11 -05:00
|
|
|
QIcon combinedIcon;
|
|
|
|
if (!icons.empty())
|
|
|
|
{
|
|
|
|
GxsIdDetails::GenerateCombinedIcon(combinedIcon, icons);
|
|
|
|
setIcon(mColumn, combinedIcon);
|
|
|
|
}
|
|
|
|
|
2012-11-19 17:14:45 -05:00
|
|
|
setText(mColumn, desc);
|
2014-09-13 10:07:59 -04:00
|
|
|
setToolTip(mColumn, comment);
|
2012-11-19 17:14:45 -05:00
|
|
|
|
|
|
|
if (loaded)
|
|
|
|
{
|
2013-03-12 20:33:14 -04:00
|
|
|
std::cerr << " GxsIdTreeWidgetItem::loadId() Loaded Okay";
|
|
|
|
std::cerr << std::endl;
|
2012-11-19 17:14:45 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mCount < MAX_ATTEMPTS)
|
|
|
|
{
|
2013-03-12 20:33:14 -04:00
|
|
|
std::cerr << " GxsIdTreeWidgetItem::loadId() Starting Timer for re-try";
|
|
|
|
std::cerr << std::endl;
|
|
|
|
|
2012-11-19 17:14:45 -05:00
|
|
|
/* timer event to try again */
|
2013-03-17 12:31:30 -04:00
|
|
|
connect(rApp, SIGNAL(secondTick()), this, SLOT(loadId()));
|
2012-11-19 17:14:45 -05:00
|
|
|
}
|
|
|
|
}
|
2014-09-16 15:11:22 -04:00
|
|
|
#endif
|