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.
 
 
 
 
 
 

120 lines
4.3 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 FavoritesModel;
class RecentContactsModel;
class RecentUsageModel;
class SystemModel;
class RootModel;
class GroupEntry : public AbstractGroupEntry
{
public:
GroupEntry(RootModel *parentModel, const QString &name,
const QString &iconName, AbstractModel *childModel);
QIcon icon() const;
QString name() const;
bool hasChildren() const;
AbstractModel *childModel() const;
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 showAllSubtree READ showAllSubtree WRITE setShowAllSubtree NOTIFY showAllSubtreeChanged)
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(QObject* appletInterface READ appletInterface WRITE setAppletInterface NOTIFY appletInterfaceChanged);
public:
explicit RootModel(QObject *parent = 0);
~RootModel();
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
Q_INVOKABLE virtual bool trigger(int row, const QString &actionId, const QVariant &argument);
bool showAllSubtree() const;
void setShowAllSubtree(bool show);
bool showRecentApps() const;
void setShowRecentApps(bool show);
bool showRecentDocs() const;
void setShowRecentDocs(bool show);
bool showRecentContacts() const;
void setShowRecentContacts(bool show);
QObject *appletInterface() const;
void setAppletInterface(QObject *appletInterface);
AbstractModel* favoritesModel();
AbstractModel* systemFavoritesModel();
Q_SIGNALS:
void refreshed() const;
void systemFavoritesModelChanged() const;
void showAllSubtreeChanged() const;
void showRecentAppsChanged() const;
void showRecentDocsChanged() const;
void showRecentContactsChanged() const;
void recentAppsModelChanged() const;
void appletInterfaceChanged() const;
protected Q_SLOTS:
void refresh();
private:
void extendEntryList();
FavoritesModel *m_favorites;
SystemModel *m_systemModel;
bool m_showAllSubtree;
bool m_showRecentApps;
bool m_showRecentDocs;
bool m_showRecentContacts;
RecentUsageModel *m_recentAppsModel;
RecentUsageModel *m_recentDocsModel;
RecentContactsModel *m_recentContactsModel;
QObject *m_appletInterface;
};
#endif