forked from qt-creator/qt-creator
LayoutBuilder is meant to be an implementation detail nowadays. Change-Id: I777ab934d3d405873e819eeddd27428d8c652f9a Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
36 lines
807 B
C++
36 lines
807 B
C++
// Copyright (C) 2020 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include <projectexplorer/buildstep.h>
|
|
|
|
#include <utils/aspects.h>
|
|
|
|
#include <QLabel>
|
|
#include <QPointer>
|
|
|
|
namespace IncrediBuild::Internal {
|
|
|
|
class CommandBuilderAspect final : public Utils::BaseAspect
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit CommandBuilderAspect(ProjectExplorer::BuildStep *step);
|
|
~CommandBuilderAspect() final;
|
|
|
|
QString fullCommandFlag(bool keepJobNum) const;
|
|
|
|
private:
|
|
void addToLayout(Layouting::LayoutItem &parent) final;
|
|
void fromMap(const QVariantMap &map) final;
|
|
void toMap(QVariantMap &map) const final;
|
|
|
|
void updateGui();
|
|
|
|
class CommandBuilderAspectPrivate *d = nullptr;
|
|
};
|
|
|
|
} // IncrediBuild::Internal
|