aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/ios/simulatorinfomodel.h
blob: 0e03455a6c2962645e05aaa3b71702c8e916994d (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
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include "simulatorcontrol.h"

#include <utils/futuresynchronizer.h>

#include <QAbstractListModel>


namespace Ios {
namespace Internal {

using SimulatorInfoList = QList<SimulatorInfo>;

class SimulatorInfoModel : public QAbstractItemModel
{
    Q_OBJECT

public:
    SimulatorInfoModel(QObject *parent = nullptr);

    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
    int rowCount(const QModelIndex &parent = QModelIndex()) const override;
    int columnCount(const QModelIndex &parent) const override;
    QVariant headerData(int section, Qt::Orientation orientation,
                        int role = Qt::DisplayRole) const override;
    QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override;
    QModelIndex parent(const QModelIndex &) const override;

private:
    void requestSimulatorInfo();
    void populateSimulators(const SimulatorInfoList &simulatorList);

private:
    Utils::FutureSynchronizer m_fetchFuture;
    SimulatorInfoList m_simList;
};

} // namespace Internal
} // namespace Ios