aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/ios/simulatoroperationdialog.h
blob: 6f13adebb7d6a18c1012726fddae8ecac37da260 (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
// 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/outputformat.h>

#include <QDialog>
#include <QFuture>
#include <QList>

QT_BEGIN_NAMESPACE
class QDialogButtonBox;
class QProgressBar;
QT_END_NAMESPACE

namespace Utils { class OutputFormatter; }

namespace Ios::Internal {

class SimulatorOperationDialog : public QDialog
{
    Q_OBJECT
public:
    explicit SimulatorOperationDialog(QWidget *parent = nullptr);
    ~SimulatorOperationDialog() override;

public:
    void addFutures(const QList<QFuture<void> > &futureList);
    void addMessage(const QString &message, Utils::OutputFormat format);
    void addMessage(const SimulatorInfo &siminfo, const SimulatorControl::ResponseData &response,
                    const QString &context);

private:
    void updateInputs();

    Utils::OutputFormatter *m_formatter = nullptr;

    QList<QFutureWatcher<void> *> m_futureWatchList;
    QProgressBar *m_progressBar;
    QDialogButtonBox *m_buttonBox;
};

} // Ios::Internal