aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/coreplugin/progressmanager/taskprogress.h
blob: d82fc433d5e8994fabf52d78d449587ac98c7b3e (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
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include "../core_global.h"

#include "futureprogress.h"

#include <QObject>

namespace Tasking { class TaskTree; }

namespace Core {

class TaskProgressPrivate;

class CORE_EXPORT TaskProgress : public QObject
{
    Q_OBJECT

public:
    TaskProgress(Tasking::TaskTree *taskTree); // Makes TaskProgress a child of task tree
    ~TaskProgress() override;

    void setId(Utils::Id id);
    void setAutoStopOnCancel(bool enable); // Default is true
    void setHalfLifeTimePerTask(int msecs); // Default is 1000 ms
    void setDisplayName(const QString &name);
    void setKeepOnFinish(FutureProgress::KeepOnFinishType keepType);
    void setSubtitleVisibleInStatusBar(bool visible);
    void setSubtitle(const QString &subtitle);

signals:
    void canceled();

private:
    std::unique_ptr<TaskProgressPrivate> d;
};

} // namespace Core