2019-04-17 20:08:56 +00:00
|
|
|
/*
|
2019-08-14 14:54:46 +00:00
|
|
|
* Squawk messenger.
|
2019-04-17 20:08:56 +00:00
|
|
|
* Copyright (C) 2019 Yury Gubich <blue@macaw.me>
|
|
|
|
*
|
|
|
|
* This program is free 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.
|
|
|
|
*
|
|
|
|
* 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2023-11-10 22:26:16 +00:00
|
|
|
#pragma once
|
2019-04-17 20:08:56 +00:00
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QSet>
|
2022-08-25 22:49:49 +00:00
|
|
|
|
2019-08-14 14:54:46 +00:00
|
|
|
#include "rosteritem.h"
|
2019-04-17 20:08:56 +00:00
|
|
|
|
2022-08-25 22:49:49 +00:00
|
|
|
#include <shared/enums.h>
|
|
|
|
|
2019-04-17 20:08:56 +00:00
|
|
|
namespace Core {
|
|
|
|
|
2023-11-10 22:26:16 +00:00
|
|
|
class Contact : public RosterItem {
|
2019-04-17 20:08:56 +00:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
Contact(const QString& pJid, const QString& account, QObject* parent = 0);
|
|
|
|
~Contact();
|
2019-04-28 21:34:28 +00:00
|
|
|
|
2019-04-17 20:08:56 +00:00
|
|
|
QSet<QString> getGroups() const;
|
2019-04-19 09:12:12 +00:00
|
|
|
void setGroups(const QSet<QString>& set);
|
|
|
|
unsigned int groupsCount() const;
|
2019-08-21 09:35:07 +00:00
|
|
|
|
|
|
|
void setSubscriptionState(Shared::SubscriptionState state);
|
|
|
|
Shared::SubscriptionState getSubscriptionState() const;
|
2022-08-25 22:49:49 +00:00
|
|
|
void setPepSupport(Shared::Support support);
|
|
|
|
Shared::Support getPepSupport() const;
|
|
|
|
|
2019-12-30 20:22:04 +00:00
|
|
|
void handlePresence(const QXmppPresence & pres) override;
|
2023-03-16 19:38:05 +00:00
|
|
|
QMap<QString, QVariant> getInfo() const override;
|
2019-04-28 21:34:28 +00:00
|
|
|
|
2019-04-19 09:12:12 +00:00
|
|
|
signals:
|
|
|
|
void groupAdded(const QString& name);
|
|
|
|
void groupRemoved(const QString& name);
|
2019-08-21 09:35:07 +00:00
|
|
|
void subscriptionStateChanged(Shared::SubscriptionState state);
|
2019-04-17 20:08:56 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
QSet<QString> groups;
|
2019-08-21 09:35:07 +00:00
|
|
|
Shared::SubscriptionState subscriptionState;
|
2022-08-25 22:49:49 +00:00
|
|
|
Shared::Support pep;
|
2023-11-10 22:26:16 +00:00
|
|
|
|
|
|
|
#ifdef WITH_OMEMO
|
|
|
|
public:
|
|
|
|
Shared::Possible omemoBundles;
|
|
|
|
#endif
|
2019-04-17 20:08:56 +00:00
|
|
|
};
|
|
|
|
}
|