mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
0c0f35e064
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7932 b45a01b8-16f6-495d-af2f-9b41ad6348cc
117 lines
3.1 KiB
C++
117 lines
3.1 KiB
C++
/****************************************************************
|
|
* This file is distributed under the following license:
|
|
*
|
|
* Copyright (c) 2010, RetroShare Team
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
****************************************************************/
|
|
|
|
#include <QPixmap>
|
|
|
|
#include <retroshare/rsmsgs.h>
|
|
#include <retroshare/rspeers.h>
|
|
#include <retroshare/rsidentity.h>
|
|
#include <gui/gxs/GxsIdDetails.h>
|
|
|
|
#include "AvatarDefs.h"
|
|
|
|
void AvatarDefs::getOwnAvatar(QPixmap &avatar, const QString& defaultImage)
|
|
{
|
|
unsigned char *data = NULL;
|
|
int size = 0;
|
|
|
|
/* get avatar */
|
|
rsMsgs->getOwnAvatarData(data, size);
|
|
|
|
if (size == 0) {
|
|
avatar = QPixmap(defaultImage);
|
|
return;
|
|
}
|
|
|
|
/* load image */
|
|
avatar.loadFromData(data, size, "PNG") ;
|
|
|
|
delete[] data;
|
|
}
|
|
void AvatarDefs::getAvatarFromSslId(const RsPeerId& sslId, QPixmap &avatar, const QString& defaultImage)
|
|
{
|
|
unsigned char *data = NULL;
|
|
int size = 0;
|
|
|
|
/* get avatar */
|
|
rsMsgs->getAvatarData(RsPeerId(sslId), data, size);
|
|
if (size == 0) {
|
|
avatar = QPixmap(defaultImage);
|
|
return;
|
|
}
|
|
|
|
/* load image */
|
|
avatar.loadFromData(data, size, "PNG") ;
|
|
|
|
delete[] data;
|
|
}
|
|
void AvatarDefs::getAvatarFromGxsId(const RsGxsId& gxsId, QPixmap &avatar, const QString& defaultImage)
|
|
{
|
|
int size = 0;
|
|
|
|
/* get avatar */
|
|
RsIdentityDetails details ;
|
|
|
|
if(!rsIdentity->getIdDetails(gxsId, details))
|
|
{
|
|
avatar = QPixmap(defaultImage);
|
|
return ;
|
|
}
|
|
|
|
/* load image */
|
|
|
|
if(details.mAvatar.mSize == 0 || !avatar.loadFromData(details.mAvatar.mData, details.mAvatar.mSize, "PNG"))
|
|
avatar = QPixmap::fromImage(GxsIdDetails::makeDefaultIcon(gxsId));
|
|
}
|
|
|
|
void AvatarDefs::getAvatarFromGpgId(const RsPgpId& gpgId, QPixmap &avatar, const QString& defaultImage)
|
|
{
|
|
unsigned char *data = NULL;
|
|
int size = 0;
|
|
|
|
if (gpgId == rsPeers->getGPGOwnId()) {
|
|
/* Its me */
|
|
rsMsgs->getOwnAvatarData(data,size);
|
|
} else {
|
|
/* get the first available avatar of one of the ssl ids */
|
|
std::list<RsPeerId> sslIds;
|
|
if (rsPeers->getAssociatedSSLIds(gpgId, sslIds)) {
|
|
std::list<RsPeerId>::iterator sslId;
|
|
for (sslId = sslIds.begin(); sslId != sslIds.end(); ++sslId) {
|
|
rsMsgs->getAvatarData(*sslId, data, size);
|
|
if (size) {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (size == 0) {
|
|
avatar = QPixmap(defaultImage);
|
|
return;
|
|
}
|
|
|
|
/* load image */
|
|
avatar.loadFromData(data, size, "PNG") ;
|
|
|
|
delete[] data;
|
|
}
|