You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.0 KiB
73 lines
2.0 KiB
/* |
|
SPDX-FileCopyrightText: 2014-2015 Eike Hein <hein@kde.org> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#pragma once |
|
|
|
#include "abstractmodel.h" |
|
|
|
#include <QPointer> |
|
|
|
class SimpleFavoritesModel : public AbstractModel |
|
{ |
|
Q_OBJECT |
|
|
|
Q_PROPERTY(bool enabled READ enabled WRITE setEnabled NOTIFY enabledChanged) |
|
Q_PROPERTY(QStringList favorites READ favorites WRITE setFavorites NOTIFY favoritesChanged) |
|
Q_PROPERTY(int maxFavorites READ maxFavorites WRITE setMaxFavorites NOTIFY maxFavoritesChanged) |
|
Q_PROPERTY(int dropPlaceholderIndex READ dropPlaceholderIndex WRITE setDropPlaceholderIndex NOTIFY dropPlaceholderIndexChanged) |
|
|
|
public: |
|
explicit SimpleFavoritesModel(QObject *parent = nullptr); |
|
~SimpleFavoritesModel() override; |
|
|
|
QString description() const override; |
|
|
|
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; |
|
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override; |
|
|
|
Q_INVOKABLE bool trigger(int row, const QString &actionId, const QVariant &argument) override; |
|
|
|
bool enabled() const; |
|
void setEnabled(bool enable); |
|
|
|
QStringList favorites() const; |
|
void setFavorites(const QStringList &favorites); |
|
|
|
int maxFavorites() const; |
|
void setMaxFavorites(int max); |
|
|
|
Q_INVOKABLE bool isFavorite(const QString &id) const; |
|
Q_INVOKABLE void addFavorite(const QString &id, int index = -1); |
|
Q_INVOKABLE void removeFavorite(const QString &id); |
|
|
|
Q_INVOKABLE void moveRow(int from, int to); |
|
|
|
int dropPlaceholderIndex() const; |
|
void setDropPlaceholderIndex(int index); |
|
|
|
AbstractModel *favoritesModel() override; |
|
|
|
public Q_SLOTS: |
|
void refresh() override; |
|
|
|
Q_SIGNALS: |
|
void enabledChanged() const; |
|
void favoritesChanged() const; |
|
void maxFavoritesChanged() const; |
|
void dropPlaceholderIndexChanged(); |
|
|
|
private: |
|
AbstractEntry *favoriteFromId(const QString &id); |
|
|
|
bool m_enabled; |
|
|
|
QList<AbstractEntry *> m_entryList; |
|
QStringList m_favorites; |
|
int m_maxFavorites; |
|
|
|
int m_dropPlaceholderIndex; |
|
};
|
|
|