2021-07-21 14:37:57 +03:00
|
|
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
2022-01-01 06:57:53 +03:00
|
|
|
// SPDX-FileCopyrightText: 2022 Nheko Contributors
|
2021-07-21 14:37:57 +03:00
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QAbstractListModel>
|
2021-08-06 04:28:56 +03:00
|
|
|
#include <QList>
|
|
|
|
#include <QUrl>
|
2021-07-21 14:37:57 +03:00
|
|
|
|
|
|
|
#include <mtx/events/mscs/image_packs.hpp>
|
|
|
|
|
|
|
|
#include "CacheStructs.h"
|
|
|
|
|
|
|
|
class SingleImagePackModel : public QAbstractListModel
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
Q_PROPERTY(QString roomid READ roomid CONSTANT)
|
|
|
|
Q_PROPERTY(QString statekey READ statekey WRITE setStatekey NOTIFY statekeyChanged)
|
|
|
|
Q_PROPERTY(QString attribution READ attribution WRITE setAttribution NOTIFY attributionChanged)
|
|
|
|
Q_PROPERTY(QString packname READ packname WRITE setPackname NOTIFY packnameChanged)
|
|
|
|
Q_PROPERTY(QString avatarUrl READ avatarUrl WRITE setAvatarUrl NOTIFY avatarUrlChanged)
|
|
|
|
Q_PROPERTY(
|
|
|
|
bool isStickerPack READ isStickerPack WRITE setIsStickerPack NOTIFY isStickerPackChanged)
|
|
|
|
Q_PROPERTY(bool isEmotePack READ isEmotePack WRITE setIsEmotePack NOTIFY isEmotePackChanged)
|
|
|
|
Q_PROPERTY(bool isGloballyEnabled READ isGloballyEnabled WRITE setGloballyEnabled NOTIFY
|
|
|
|
globallyEnabledChanged)
|
|
|
|
Q_PROPERTY(bool canEdit READ canEdit CONSTANT)
|
2021-08-06 02:45:47 +03:00
|
|
|
|
2021-07-21 14:37:57 +03:00
|
|
|
public:
|
2021-09-18 01:22:33 +03:00
|
|
|
enum Roles
|
|
|
|
{
|
|
|
|
Url = Qt::UserRole,
|
|
|
|
ShortCode,
|
|
|
|
Body,
|
|
|
|
IsEmote,
|
|
|
|
IsSticker,
|
|
|
|
};
|
|
|
|
Q_ENUM(Roles);
|
|
|
|
|
|
|
|
SingleImagePackModel(ImagePackInfo pack_, QObject *parent = nullptr);
|
|
|
|
QHash<int, QByteArray> roleNames() const override;
|
|
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
|
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
|
|
|
bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override;
|
|
|
|
|
|
|
|
QString roomid() const { return QString::fromStdString(roomid_); }
|
|
|
|
QString statekey() const { return QString::fromStdString(statekey_); }
|
|
|
|
QString packname() const { return QString::fromStdString(pack.pack->display_name); }
|
|
|
|
QString attribution() const { return QString::fromStdString(pack.pack->attribution); }
|
2021-12-13 08:00:32 +03:00
|
|
|
QString avatarUrl() const;
|
2021-09-18 01:22:33 +03:00
|
|
|
bool isStickerPack() const { return pack.pack->is_sticker(); }
|
|
|
|
bool isEmotePack() const { return pack.pack->is_emoji(); }
|
|
|
|
|
|
|
|
bool isGloballyEnabled() const;
|
|
|
|
bool canEdit() const;
|
|
|
|
void setGloballyEnabled(bool enabled);
|
|
|
|
|
|
|
|
void setPackname(QString val);
|
|
|
|
void setAttribution(QString val);
|
|
|
|
void setAvatarUrl(QString val);
|
|
|
|
void setStatekey(QString val);
|
|
|
|
void setIsStickerPack(bool val);
|
|
|
|
void setIsEmotePack(bool val);
|
|
|
|
|
|
|
|
Q_INVOKABLE void save();
|
|
|
|
Q_INVOKABLE void addStickers(QList<QUrl> files);
|
|
|
|
Q_INVOKABLE void remove(int index);
|
2021-12-13 08:00:32 +03:00
|
|
|
Q_INVOKABLE void setAvatar(QUrl file);
|
2021-08-06 02:45:47 +03:00
|
|
|
|
2021-07-21 14:37:57 +03:00
|
|
|
signals:
|
2021-09-18 01:22:33 +03:00
|
|
|
void globallyEnabledChanged();
|
|
|
|
void statekeyChanged();
|
|
|
|
void attributionChanged();
|
|
|
|
void packnameChanged();
|
|
|
|
void avatarUrlChanged();
|
|
|
|
void isEmotePackChanged();
|
|
|
|
void isStickerPackChanged();
|
2021-07-21 14:37:57 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
void addImage(std::string uri, std::string filename, mtx::common::ImageInfo info);
|
2021-12-13 08:00:32 +03:00
|
|
|
void avatarUploaded(QString uri);
|
2021-08-06 04:28:56 +03:00
|
|
|
|
|
|
|
private slots:
|
2021-09-18 01:22:33 +03:00
|
|
|
void addImageCb(std::string uri, std::string filename, mtx::common::ImageInfo info);
|
2021-08-06 04:28:56 +03:00
|
|
|
|
2021-07-21 14:37:57 +03:00
|
|
|
private:
|
2021-09-18 01:22:33 +03:00
|
|
|
std::string roomid_;
|
|
|
|
std::string statekey_, old_statekey_;
|
2021-07-21 14:37:57 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
mtx::events::msc2545::ImagePack pack;
|
|
|
|
std::vector<std::string> shortcodes;
|
2021-07-21 14:37:57 +03:00
|
|
|
};
|