blob: 10ad1af624cd12cd883b332bf3e95a38d0b22c1a (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-2.1-or-later OR GPL-3.0-or-later
#pragma once
#include <QDialog>
QT_BEGIN_NAMESPACE
class QCheckBox;
class QLineEdit;
class QPushButton;
QT_END_NAMESPACE
namespace ADS {
class DockManager;
class WorkspaceView;
class WorkspaceDialog : public QDialog
{
Q_OBJECT
public:
explicit WorkspaceDialog(DockManager *manager, QWidget *parent = nullptr);
void setAutoLoadWorkspace(bool);
bool autoLoadWorkspace() const;
DockManager *dockManager() const;
private:
void updateActions(const QStringList &workspaces);
DockManager *m_manager = nullptr;
WorkspaceView *m_workspaceView = nullptr;
QPushButton *m_btCreateNew = nullptr;
QPushButton *m_btRename = nullptr;
QPushButton *m_btClone = nullptr;
QPushButton *m_btDelete = nullptr;
QPushButton *m_btReset = nullptr;
QPushButton *m_btSwitch = nullptr;
QPushButton *m_btImport = nullptr;
QPushButton *m_btExport = nullptr;
QCheckBox *m_autoLoadCheckBox = nullptr;
};
class WorkspaceNameInputDialog : public QDialog
{
Q_OBJECT
public:
explicit WorkspaceNameInputDialog(DockManager *manager, QWidget *parent);
void setActionText(const QString &actionText, const QString &openActionText);
void setValue(const QString &value);
QString value() const;
bool isSwitchToRequested() const;
private:
QLineEdit *m_newWorkspaceLineEdit = nullptr;
QPushButton *m_switchToButton = nullptr;
QPushButton *m_okButton = nullptr;
bool m_usedSwitchTo = false;
DockManager *m_manager;
};
} // namespace ADS
|