aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/coreplugin/dialogs/openwithdialog.h
blob: 95380dff78e202bb4d0c75b1043f68b3567ffe50 (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 The Qt Company 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>

QT_BEGIN_NAMESPACE
class QListWidget;
class QListWidgetItem;
class QDialogButtonBox;
QT_END_NAMESPACE

namespace Utils { class FilePath; }

namespace Core {
namespace Internal {

// Present the user with a file name and a list of available
// editor kinds to choose from.
class OpenWithDialog : public QDialog
{
    Q_OBJECT

public:
    OpenWithDialog(const Utils::FilePath &filePath, QWidget *parent);

    void setEditors(const QStringList &);
    int editor() const;

    void setCurrentEditor(int index);

private:
    void currentItemChanged(QListWidgetItem *, QListWidgetItem *);
    void setOkButtonEnabled(bool);

    QListWidget *editorListWidget;
    QDialogButtonBox *buttonBox;
};

} // namespace Internal
} // namespace Core