mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-09 14:39:42 -05:00
45 lines
2.2 KiB
C++
45 lines
2.2 KiB
C++
/*******************************************************************************
|
|
* gui/common/AvatarDefs.h *
|
|
* *
|
|
* Copyright (C) 2012, Robert Fernie <retroshare.project@gmail.com> *
|
|
* *
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the GNU Affero General Public License as *
|
|
* published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
* *
|
|
*******************************************************************************/
|
|
|
|
#ifndef _AVATARDEFS_H
|
|
#define _AVATARDEFS_H
|
|
|
|
#include <string>
|
|
#include <QString>
|
|
#include <retroshare/rstypes.h>
|
|
#include <retroshare/rsgxsifacetypes.h>
|
|
|
|
#define AVATAR_DEFAULT_IMAGE ":/images/no_avatar_background.png"
|
|
|
|
class QPixmap;
|
|
|
|
class AvatarDefs
|
|
{
|
|
public:
|
|
static void getOwnAvatar(QPixmap &avatar, const QString& defaultImage = AVATAR_DEFAULT_IMAGE);
|
|
|
|
static bool getAvatarFromSslId(const RsPeerId& sslId, QPixmap &avatar, const QString& defaultImage = AVATAR_DEFAULT_IMAGE);
|
|
static bool getAvatarFromGpgId(const RsPgpId & gpgId, QPixmap &avatar, const QString& defaultImage = AVATAR_DEFAULT_IMAGE);
|
|
static bool getAvatarFromGxsId(const RsGxsId & gxsId, QPixmap &avatar, const QString& defaultImage = AVATAR_DEFAULT_IMAGE);
|
|
};
|
|
|
|
#endif
|
|
|