61 lines
1.2 KiB
C++
61 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include <QAbstractListModel>
|
|
#include <QHash>
|
|
#include <QPointer>
|
|
#include <QVector>
|
|
#include <memory>
|
|
|
|
#include "section_item.h"
|
|
|
|
namespace Shared::Models
|
|
{
|
|
class SectionModel : public QAbstractListModel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum ModelRole
|
|
{
|
|
Id = Qt::UserRole + 1,
|
|
SectionType,
|
|
Name,
|
|
AmISectionAdmin,
|
|
Description,
|
|
Image,
|
|
Icon,
|
|
Color,
|
|
HasNotification,
|
|
NotificationsCount,
|
|
Active,
|
|
Enabled,
|
|
Joined,
|
|
IsMember,
|
|
CanJoin,
|
|
CanManageUsers,
|
|
CanRequestAccess,
|
|
Access,
|
|
EnsOnly,
|
|
MembersModel,
|
|
PendingRequestsToJoinModel
|
|
};
|
|
|
|
explicit SectionModel(QObject* parent = nullptr);
|
|
~SectionModel() = default;
|
|
|
|
QHash<int, QByteArray> roleNames() const override;
|
|
int rowCount(const QModelIndex&) const override;
|
|
QVariant data(const QModelIndex& index, int role) const override;
|
|
|
|
void addItem(SectionItem* item);
|
|
void setActiveSection(const QString& Id);
|
|
QPointer<SectionItem> getActiveItem() const;
|
|
|
|
// To add other api's later as needed
|
|
|
|
private:
|
|
QVector<SectionItem*> m_items;
|
|
};
|
|
|
|
} // namespace Shared::Models
|