mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-10 06:59:42 -05:00
71 lines
2.4 KiB
C++
71 lines
2.4 KiB
C++
/*******************************************************************************
|
|
* gui/common/AvatarDialog.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 _AVATARDIALOG_H
|
|
#define _AVATARDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
class QPixmap;
|
|
class QByteArray;
|
|
|
|
namespace Ui {
|
|
class AvatarDialog;
|
|
}
|
|
|
|
class AvatarDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static const int RS_AVATAR_DEFAULT_IMAGE_W ;
|
|
static const int RS_AVATAR_DEFAULT_IMAGE_H ;
|
|
|
|
AvatarDialog(QWidget *parent = 0);
|
|
~AvatarDialog();
|
|
|
|
void setAvatar(const QPixmap &avatar);
|
|
|
|
void getAvatar(QPixmap &avatar);
|
|
void getAvatar(QByteArray &avatar);
|
|
|
|
static QString importedStickerPath();
|
|
static void load();
|
|
|
|
private slots:
|
|
void changeAvatar();
|
|
void removeAvatar();
|
|
void addAvatar();
|
|
|
|
void loadAvatarWidget();
|
|
|
|
void loadToolTips(QWidget *container);
|
|
void refreshStickerTabs(QVector<QString>& stickerTabs, QString foldername);
|
|
void refreshStickerTabs(QVector<QString>& stickerTabs);
|
|
|
|
private:
|
|
void updateInterface();
|
|
|
|
private:
|
|
Ui::AvatarDialog *ui;
|
|
};
|
|
|
|
#endif
|