forked from qt-creator/qt-creator
The whole machinery is now almost only layoutbuilder.{h,cpp},
mostly independent of the rest of Utils. Idea is to finish the
separation to make it stand-alone usable also outside creator.
Change-Id: I958aa667d17ae26b21209f22412309c5307a579c
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
87 lines
1.7 KiB
C++
87 lines
1.7 KiB
C++
// Copyright (C) 2022 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#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
|
|
};
|
|
|
|
enum class ExecuteMode {
|
|
Sequential, // default
|
|
Parallel
|
|
};
|
|
|
|
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(ExecuteMode mode);
|
|
Utils::Tasking::ParallelLimit 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;
|
|
|
|
ExecuteMode m_executeMode = ExecuteMode::Sequential;
|
|
Utils::Tasking::WorkflowPolicy m_workflowPolicy = Utils::Tasking::WorkflowPolicy::StopOnError;
|
|
};
|
|
|
|
class TaskGroup
|
|
{
|
|
public:
|
|
QWidget *group;
|
|
Layouting::Column items;
|
|
};
|
|
|
|
void doLayout(const TaskGroup &taskGroup, Layouting::LayoutBuilder &builder);
|