blob: d92ac5ed2189d80422688696f9faa258680341f8 (
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
47
48
49
50
|
// 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 "dockerdevice.h"
#include "kitdetector.h"
#include <projectexplorer/devicesupport/idevice.h>
#include <projectexplorer/devicesupport/idevicewidget.h>
#include <utils/pathchooser.h>
#include <utils/pathlisteditor.h>
QT_BEGIN_NAMESPACE
class QCheckBox;
class QLabel;
class QLineEdit;
class QToolButton;
QT_END_NAMESPACE
namespace Docker::Internal {
class DockerDeviceWidget final : public ProjectExplorer::IDeviceWidget
{
public:
explicit DockerDeviceWidget(const ProjectExplorer::IDevice::Ptr &device);
void updateDeviceFromUi() final {}
void updateDaemonStateTexts();
private:
QLineEdit *m_repoLineEdit;
QLineEdit *m_tagLineEdit;
QLineEdit *m_idLineEdit;
QToolButton *m_daemonReset;
QLabel *m_daemonState;
QCheckBox *m_runAsOutsideUser;
QCheckBox *m_keepEntryPoint;
QCheckBox *m_enableLldbFlags;
Utils::PathChooser *m_clangdExecutable;
Utils::PathListEditor *m_pathsListEdit;
KitDetector m_kitItemDetector;
DockerDeviceData m_data;
};
} // Docker::Internal
|