2018-11-08 17:34:42 -05:00
|
|
|
/*******************************************************************************
|
|
|
|
* 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/>. *
|
|
|
|
* *
|
|
|
|
*******************************************************************************/
|
2015-02-03 14:17:35 -05:00
|
|
|
|
|
|
|
#ifndef _AVATARDIALOG_H
|
|
|
|
#define _AVATARDIALOG_H
|
|
|
|
|
2015-02-04 19:10:37 -05:00
|
|
|
#include <QDialog>
|
2015-02-03 14:17:35 -05:00
|
|
|
|
2015-02-04 19:10:37 -05:00
|
|
|
class QPixmap;
|
|
|
|
class QByteArray;
|
2015-02-03 14:17:35 -05:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class AvatarDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class AvatarDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
AvatarDialog(QWidget *parent = 0);
|
|
|
|
~AvatarDialog();
|
|
|
|
|
2015-02-04 19:10:37 -05:00
|
|
|
void setAvatar(const QPixmap &avatar);
|
2015-02-03 14:17:35 -05:00
|
|
|
|
2015-02-04 19:10:37 -05:00
|
|
|
void getAvatar(QPixmap &avatar);
|
|
|
|
void getAvatar(QByteArray &avatar);
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void changeAvatar();
|
|
|
|
void removeAvatar();
|
2015-02-03 14:17:35 -05:00
|
|
|
|
|
|
|
private:
|
2015-02-04 19:10:37 -05:00
|
|
|
void updateInterface();
|
2015-02-03 14:17:35 -05:00
|
|
|
|
2015-02-04 19:10:37 -05:00
|
|
|
private:
|
|
|
|
Ui::AvatarDialog *ui;
|
2015-02-03 14:17:35 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|