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.
133 lines
5.2 KiB
133 lines
5.2 KiB
/*************************************************************************** |
|
* Copyright (C) 2014-2015 by Eike Hein <hein@kde.org> * |
|
* * |
|
* 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 2 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, write to the * |
|
* Free Software Foundation, Inc., * |
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . * |
|
***************************************************************************/ |
|
|
|
#ifndef ROOTMODEL_H |
|
#define ROOTMODEL_H |
|
|
|
#include "appsmodel.h" |
|
|
|
class KAStatsFavoritesModel; |
|
class RecentContactsModel; |
|
class RecentUsageModel; |
|
class SystemModel; |
|
|
|
class RootModel; |
|
|
|
class GroupEntry : public AbstractGroupEntry |
|
{ |
|
public: |
|
GroupEntry(AppsModel *parentModel, const QString &name, |
|
const QString &iconName, AbstractModel *childModel); |
|
|
|
QIcon icon() const override; |
|
QString name() const override; |
|
|
|
bool hasChildren() const override; |
|
AbstractModel *childModel() const override; |
|
|
|
private: |
|
QString m_name; |
|
QString m_iconName; |
|
QPointer<AbstractModel> m_childModel; |
|
}; |
|
|
|
class RootModel : public AppsModel |
|
{ |
|
Q_OBJECT |
|
|
|
Q_PROPERTY(QObject* systemFavoritesModel READ systemFavoritesModel NOTIFY systemFavoritesModelChanged) |
|
Q_PROPERTY(bool showAllApps READ showAllApps WRITE setShowAllApps NOTIFY showAllAppsChanged) |
|
Q_PROPERTY(bool showAllAppsCategorized READ showAllAppsCategorized WRITE setShowAllAppsCategorized NOTIFY showAllAppsCategorizedChanged) |
|
Q_PROPERTY(bool showRecentApps READ showRecentApps WRITE setShowRecentApps NOTIFY showRecentAppsChanged) |
|
Q_PROPERTY(bool showRecentDocs READ showRecentDocs WRITE setShowRecentDocs NOTIFY showRecentDocsChanged) |
|
Q_PROPERTY(bool showRecentContacts READ showRecentContacts WRITE setShowRecentContacts NOTIFY showRecentContactsChanged) |
|
Q_PROPERTY(int recentOrdering READ recentOrdering WRITE setRecentOrdering NOTIFY recentOrderingChanged) |
|
Q_PROPERTY(bool showPowerSession READ showPowerSession WRITE setShowPowerSession NOTIFY showPowerSessionChanged) |
|
Q_PROPERTY(bool showFavoritesPlaceholder READ showFavoritesPlaceholder WRITE setShowFavoritesPlaceholder NOTIFY showFavoritesPlaceholderChanged) |
|
|
|
public: |
|
explicit RootModel(QObject *parent = nullptr); |
|
~RootModel() override; |
|
|
|
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; |
|
|
|
Q_INVOKABLE bool trigger(int row, const QString &actionId, const QVariant &argument) override; |
|
|
|
bool showAllApps() const; |
|
void setShowAllApps(bool show); |
|
|
|
bool showAllAppsCategorized() const; |
|
void setShowAllAppsCategorized(bool showCategorized); |
|
|
|
bool showRecentApps() const; |
|
void setShowRecentApps(bool show); |
|
|
|
bool showRecentDocs() const; |
|
void setShowRecentDocs(bool show); |
|
|
|
bool showRecentContacts() const; |
|
void setShowRecentContacts(bool show); |
|
|
|
int recentOrdering() const; |
|
void setRecentOrdering(int ordering); |
|
|
|
bool showPowerSession() const; |
|
void setShowPowerSession(bool show); |
|
|
|
bool showFavoritesPlaceholder() const; |
|
void setShowFavoritesPlaceholder(bool show); |
|
|
|
AbstractModel* favoritesModel() override; |
|
AbstractModel* systemFavoritesModel(); |
|
|
|
Q_SIGNALS: |
|
void refreshed() const; |
|
void systemFavoritesModelChanged() const; |
|
void showAllAppsChanged() const; |
|
void showAllAppsCategorizedChanged() const; |
|
void showRecentAppsChanged() const; |
|
void showRecentDocsChanged() const; |
|
void showRecentContactsChanged() const; |
|
void showPowerSessionChanged() const; |
|
void recentOrderingChanged() const; |
|
void recentAppsModelChanged() const; |
|
void showFavoritesPlaceholderChanged() const; |
|
|
|
protected Q_SLOTS: |
|
void refresh() override; |
|
|
|
private: |
|
KAStatsFavoritesModel *m_favorites; |
|
SystemModel *m_systemModel; |
|
|
|
bool m_showAllApps; |
|
bool m_showAllAppsCategorized; |
|
bool m_showRecentApps; |
|
bool m_showRecentDocs; |
|
bool m_showRecentContacts; |
|
int m_recentOrdering; |
|
bool m_showPowerSession; |
|
bool m_showFavoritesPlaceholder; |
|
|
|
RecentUsageModel *m_recentAppsModel; |
|
RecentUsageModel *m_recentDocsModel; |
|
RecentContactsModel *m_recentContactsModel; |
|
}; |
|
|
|
#endif
|
|
|