summaryrefslogtreecommitdiffstats
path: root/QtLauncher/applicationsmodel.h
blob: e1ea24b7d2cbe541eebee4e4e4d84e1e6169ac41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#ifndef APPLICATIONSMODEL_H
#define APPLICATIONSMODEL_H

#include "qqmlintegration.h"
#include <QAbstractItemModel>
#include <QUrl>

struct AppData {
    QString name;
    QString description;
    QUrl location;
    QUrl icon;
    int priority;
    QString binary;
    QString arguments;
    QMap<QString, QVariant> environment;
    bool scalable;
};

class ApplicationsModel : public QAbstractItemModel
{
    Q_OBJECT
    QML_ELEMENT

public:
    enum {
        NameRole = Qt::UserRole + 1,
        DescriptionRole,
        LocationRole,
        IconRole,
        PriorityRole,
        BinaryRole,
        ArgumentsRole,
        EnvironmentRole,
        ScalableRole
    };

    explicit ApplicationsModel(QObject *parent = 0);

    Q_INVOKABLE void initialize(const QString &appsRoot);

    QModelIndex index(int r, int c, const QModelIndex &) const { return createIndex(r, c); }
    QModelIndex parent(const QModelIndex&) const { return QModelIndex(); }
    int rowCount(const QModelIndex&) const { return m_data.size(); }
    int columnCount(const QModelIndex&) const { return 1; }
    QVariant data(const QModelIndex &index, int role) const;

    QHash<int, QByteArray> roleNames() const;

    Q_INVOKABLE QVariant query(int i, const QString &name) const;

signals:
    void ready();

private slots:
    void handleIndexingResult(QList<AppData> results);

private:

    QList<AppData> m_data;
};

#endif // APPLICATIONSMODEL_H