~ubuntu-branches/ubuntu/vivid/muon/vivid-proposed

« back to all changes in this revision

Viewing changes to libmuon/ApplicationModel/ApplicationModel.h

Tags: upstream-1.3.65
Import upstream version 1.3.65

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright © 2010 Jonathan Thomas <echidnaman@kubuntu.org>             *
 
3
 *                                                                         *
 
4
 *   This program is free software; you can redistribute it and/or         *
 
5
 *   modify it under the terms of the GNU General Public License as        *
 
6
 *   published by the Free Software Foundation; either version 2 of        *
 
7
 *   the License or (at your option) version 3 or any later version        *
 
8
 *   accepted by the membership of KDE e.V. (or its successor approved     *
 
9
 *   by the membership of KDE e.V.), which shall act as a proxy            *
 
10
 *   defined in Section 14 of version 3 of the license.                    *
 
11
 *                                                                         *
 
12
 *   This program is distributed in the hope that it will be useful,       *
 
13
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
14
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
15
 *   GNU General Public License for more details.                          *
 
16
 *                                                                         *
 
17
 *   You should have received a copy of the GNU General Public License     *
 
18
 *   along with this program.  If not, see <http://www.gnu.org/licenses/>. *
 
19
 ***************************************************************************/
 
20
 
 
21
#ifndef APPLICATIONMODEL_H
 
22
#define APPLICATIONMODEL_H
 
23
 
 
24
#include <QAbstractListModel>
 
25
#include <QVector>
 
26
 
 
27
#include <LibQApt/Globals>
 
28
 
 
29
#include "libmuonprivate_export.h"
 
30
 
 
31
class Application;
 
32
class ApplicationBackend;
 
33
class Transaction;
 
34
 
 
35
class MUONPRIVATE_EXPORT ApplicationModel: public QAbstractListModel
 
36
{
 
37
    Q_OBJECT
 
38
    Q_PROPERTY(ApplicationBackend* backend READ backend WRITE setBackend)
 
39
    Q_ENUMS(Roles)
 
40
public:
 
41
    enum Roles {
 
42
        NameRole = Qt::UserRole,
 
43
        IconRole,
 
44
        CommentRole,
 
45
        ActionRole,
 
46
        StatusRole,
 
47
        RatingRole,
 
48
        RatingPointsRole,
 
49
        SortableRatingRole,
 
50
        ActiveRole,
 
51
        ProgressRole,
 
52
        ProgressTextRole,
 
53
        InstalledRole,
 
54
        ApplicationRole,
 
55
        UsageCountRole,
 
56
        PopConRole,
 
57
        UntranslatedNameRole,
 
58
        OriginRole,
 
59
        CanUpgrade
 
60
    };
 
61
    explicit ApplicationModel(QObject* parent=0);
 
62
    ~ApplicationModel();
 
63
 
 
64
    void setBackend(ApplicationBackend* backend);
 
65
    ApplicationBackend* backend() const;
 
66
    int rowCount(const QModelIndex &parent = QModelIndex()) const;
 
67
    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
 
68
 
 
69
    void clear();
 
70
    Application *applicationAt(const QModelIndex &index) const;
 
71
    Transaction *transactionAt(const QModelIndex &index) const;
 
72
    QVector<Application *> applications() const;
 
73
    
 
74
private:
 
75
    ApplicationBackend *m_appBackend;
 
76
    QVector<Application *> m_apps;
 
77
    QHash<Transaction *, int> m_runningTransactions;
 
78
 
 
79
private Q_SLOTS:
 
80
    void workerEvent(QApt::WorkerEvent event, Transaction *trans);
 
81
    void transactionCancelled(Application *app);
 
82
    void reloadStarted();
 
83
    void reloadFinished();
 
84
    void allDataChanged();
 
85
    void updateTransactionProgress(Transaction *transaction, int progress);
 
86
    void reloadApplications();
 
87
};
 
88
 
 
89
#endif