2015-06-06 09:40:08 +08:00
|
|
|
/*
|
2018-04-13 04:02:28 +08:00
|
|
|
Copyright © 2015-2018 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2015-04-25 22:51:58 +08:00
|
|
|
#ifndef AVATARBROADCASTER_H
|
|
|
|
#define AVATARBROADCASTER_H
|
|
|
|
|
|
|
|
#include <QByteArray>
|
|
|
|
#include <QMap>
|
|
|
|
|
|
|
|
class AvatarBroadcaster
|
|
|
|
{
|
|
|
|
private:
|
2017-02-26 19:52:45 +08:00
|
|
|
AvatarBroadcaster() = delete;
|
2015-04-25 22:51:58 +08:00
|
|
|
|
|
|
|
public:
|
|
|
|
static void setAvatar(QByteArray data);
|
|
|
|
static void sendAvatarTo(uint32_t friendId);
|
|
|
|
static void enableAutoBroadcast(bool state = true);
|
|
|
|
|
|
|
|
private:
|
|
|
|
static QByteArray avatarData;
|
2015-12-19 11:20:05 +08:00
|
|
|
static QMap<uint32_t, bool> friendsSentTo;
|
2015-04-25 22:51:58 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // AVATARBROADCASTER_H
|