aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/clearcase/checkoutdialog.h
blob: 0f862837654967b933dadd7262357c033955f07e (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
// Copyright (C) 2016 AudioCodes Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include <QDialog>

namespace ClearCase {
namespace Internal {

namespace Ui { class CheckOutDialog; }

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);

    Ui::CheckOutDialog *ui;
    ActivitySelector *m_actSelector = nullptr;
};

} // namespace Internal
} // namespace ClearCase