blob: 71aea477a2122f0f6f230c27d5b1b13ca1c10c47 (
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
|
// Copyright (C) 2016 AudioCodes Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <QDialog>
QT_BEGIN_NAMESPACE
class QCheckBox;
class QLabel;
class QPlainTextEdit;
class QVBoxLayout;
QT_END_NAMESPACE
namespace ClearCase::Internal {
class ActivitySelector;
class CheckOutDialog : public QDialog
{
Q_OBJECT
public:
explicit CheckOutDialog(const QString &fileName, bool isUcm, bool showComment,
QWidget *parent = nullptr);
~CheckOutDialog() override;
QString activity() const;
QString comment() const;
bool isReserved() const;
bool isUnreserved() const;
bool isPreserveTime() const;
bool isUseHijacked() const;
void hideHijack();
void hideComment();
private:
void toggleUnreserved(bool checked);
ActivitySelector *m_actSelector = nullptr;
QVBoxLayout *m_verticalLayout;
QLabel *m_lblComment;
QPlainTextEdit *m_txtComment;
QCheckBox *m_chkReserved;
QCheckBox *m_chkUnreserved;
QCheckBox *m_chkPTime;
QCheckBox *m_hijackedCheckBox;
};
} // ClearCase::Internal
|