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.
111 lines
4.0 KiB
111 lines
4.0 KiB
/*************************************************************************** |
|
* Copyright (C) 2012 Aurélien Gâteau <agateau@kde.org> * |
|
* Copyright (C) 2013-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 APPSMODEL_H |
|
#define APPSMODEL_H |
|
|
|
#include "abstractmodel.h" |
|
#include "appentry.h" |
|
|
|
#include <KServiceGroup> |
|
|
|
class AppGroupEntry; |
|
|
|
class QTimer; |
|
|
|
class AppsModel : public AbstractModel |
|
{ |
|
Q_OBJECT |
|
|
|
Q_PROPERTY(bool flat READ flat WRITE setFlat NOTIFY flatChanged) |
|
Q_PROPERTY(bool showSeparators READ showSeparators WRITE setShowSeparators NOTIFY showSeparatorsChanged) |
|
Q_PROPERTY(int appNameFormat READ appNameFormat WRITE setAppNameFormat NOTIFY appNameFormatChanged) |
|
|
|
public: |
|
explicit AppsModel(const QString &entryPath = QString(), bool flat = false, bool separators = true, QObject *parent = 0); |
|
explicit AppsModel(const QList<AbstractEntry *> entryList, bool deleteEntriesOnDestruction, QObject *parent = 0); |
|
~AppsModel(); |
|
|
|
QString description() const; |
|
void setDescription(const QString &text); |
|
|
|
virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const; |
|
|
|
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const; |
|
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const; |
|
|
|
Q_INVOKABLE virtual bool trigger(int row, const QString &actionId, const QVariant &argument); |
|
|
|
Q_INVOKABLE AbstractModel *modelForRow(int row); |
|
Q_INVOKABLE int rowForModel(AbstractModel *model); |
|
|
|
int separatorCount() const; |
|
|
|
bool flat() const; |
|
void setFlat(bool flat); |
|
|
|
bool showSeparators() const; |
|
void setShowSeparators(bool showSeparators); |
|
|
|
int appNameFormat() const; |
|
void setAppNameFormat(int format); |
|
|
|
QStringList hiddenEntries() const; |
|
|
|
void entryChanged(AbstractEntry *entry); |
|
|
|
Q_SIGNALS: |
|
void cleared() const; |
|
void flatChanged() const; |
|
void showSeparatorsChanged() const; |
|
void appNameFormatChanged() const; |
|
void hiddenEntriesChanged() const; |
|
|
|
protected Q_SLOTS: |
|
virtual void refresh(); |
|
|
|
protected: |
|
void refreshInternal(); |
|
|
|
QList<AbstractEntry *> m_entryList; |
|
bool m_deleteEntriesOnDestruction; |
|
int m_separatorCount; |
|
bool m_showSeparators; |
|
|
|
private Q_SLOTS: |
|
void checkSycocaChanges(const QStringList &changes); |
|
|
|
private: |
|
void processServiceGroup(KServiceGroup::Ptr group); |
|
void sortEntries(); |
|
|
|
QString m_description; |
|
QString m_entryPath; |
|
bool m_staticEntryList; |
|
QTimer *m_changeTimer; |
|
bool m_flat; |
|
bool m_sortNeeded; |
|
AppEntry::NameFormat m_appNameFormat; |
|
QStringList m_hiddenEntries; |
|
static MenuEntryEditor *m_menuEntryEditor; |
|
}; |
|
|
|
#endif
|
|
|