2015-06-06 09:40:08 +08:00
|
|
|
/*
|
2019-06-24 22:01:18 +08:00
|
|
|
Copyright © 2015-2019 by The qTox Project Contributors
|
2015-06-06 09:40:08 +08:00
|
|
|
|
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
|
|
|
|
qTox is libre 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 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
qTox 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 qTox. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2020-05-03 20:44:08 +08:00
|
|
|
#pragma once
|
2015-04-25 22:51:58 +08:00
|
|
|
|
|
|
|
#include <QByteArray>
|
|
|
|
#include <QMap>
|
2020-05-10 06:26:01 +08:00
|
|
|
#include <QObject>
|
2015-04-25 22:51:58 +08:00
|
|
|
|
2020-05-10 06:26:01 +08:00
|
|
|
class Core;
|
|
|
|
class AvatarBroadcaster : public QObject
|
2015-04-25 22:51:58 +08:00
|
|
|
{
|
2020-05-10 06:26:01 +08:00
|
|
|
Q_OBJECT
|
2015-04-25 22:51:58 +08:00
|
|
|
public:
|
2020-05-10 06:26:01 +08:00
|
|
|
AvatarBroadcaster(Core& _core);
|
|
|
|
|
|
|
|
void setAvatar(QByteArray data);
|
|
|
|
void sendAvatarTo(uint32_t friendId);
|
|
|
|
void enableAutoBroadcast(bool state = true);
|
2015-04-25 22:51:58 +08:00
|
|
|
|
|
|
|
private:
|
2020-05-10 06:26:01 +08:00
|
|
|
Core& core;
|
|
|
|
QByteArray avatarData;
|
|
|
|
QMap<uint32_t, bool> friendsSentTo;
|
2015-04-25 22:51:58 +08:00
|
|
|
};
|