2022-11-11 10:11:22 +01:00
|
|
|
// Copyright (C) 2022 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2022-11-11 10:11:22 +01:00
|
|
|
|
|
|
|
|
#include <utils/layoutbuilder.h>
|
|
|
|
|
#include <utils/tasktree.h>
|
|
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
|
|
class StateIndicator;
|
|
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
class QCheckBox;
|
|
|
|
|
class QComboBox;
|
|
|
|
|
class QLabel;
|
|
|
|
|
class QSpinBox;
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
|
|
enum class State {
|
|
|
|
|
Initial,
|
|
|
|
|
Running,
|
|
|
|
|
Done,
|
|
|
|
|
Error
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class StateWidget : public QWidget
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
StateWidget();
|
|
|
|
|
|
|
|
|
|
void setState(State state);
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
StateIndicator *m_stateIndicator = nullptr;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class TaskWidget : public StateWidget
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
TaskWidget();
|
|
|
|
|
|
|
|
|
|
void setBusyTime(int seconds);
|
|
|
|
|
int busyTime() const;
|
|
|
|
|
void setSuccess(bool success);
|
|
|
|
|
bool isSuccess() const;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QLabel *m_infoLabel = nullptr;
|
|
|
|
|
QSpinBox *m_spinBox = nullptr;
|
|
|
|
|
QCheckBox *m_checkBox = nullptr;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class GroupWidget : public StateWidget
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
GroupWidget();
|
|
|
|
|
|
|
|
|
|
void setExecuteMode(Utils::Tasking::ExecuteMode mode);
|
|
|
|
|
Utils::Tasking::ExecuteMode executeMode() const;
|
|
|
|
|
|
|
|
|
|
void setWorkflowPolicy(Utils::Tasking::WorkflowPolicy policy);
|
|
|
|
|
Utils::Tasking::WorkflowPolicy workflowPolicy() const;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void updateExecuteMode();
|
|
|
|
|
void updateWorkflowPolicy();
|
|
|
|
|
|
|
|
|
|
QComboBox *m_executeCombo = nullptr;
|
|
|
|
|
QComboBox *m_workflowCombo = nullptr;
|
|
|
|
|
|
|
|
|
|
Utils::Tasking::ExecuteMode m_executeMode = Utils::Tasking::ExecuteMode::Sequential;
|
|
|
|
|
Utils::Tasking::WorkflowPolicy m_workflowPolicy = Utils::Tasking::WorkflowPolicy::StopOnError;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class TaskGroup : public Utils::Layouting::Row
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
TaskGroup(QWidget *group, std::initializer_list<Utils::LayoutBuilder::LayoutItem> items);
|
|
|
|
|
};
|