aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/squish/opensquishsuitesdialog.h
blob: 0ba434e23a4861778cf857abf62ba930f5688604 (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
// Copyright (C) 2022 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 <utils/filepath.h>

#include <QDialog>

QT_BEGIN_NAMESPACE
class QListWidgetItem;
class QListWidget;
class QDialogButtonBox;
QT_END_NAMESPACE

namespace Utils { class PathChooser; }

namespace Squish {
namespace Internal {

class OpenSquishSuitesDialog : public QDialog
{
    Q_OBJECT
public:
    explicit OpenSquishSuitesDialog(QWidget *parent = nullptr);
    ~OpenSquishSuitesDialog() override;
    Utils::FilePaths chosenSuites() const { return m_chosenSuites; }

private:
    void onDirectoryChanged();
    void onListItemChanged(QListWidgetItem *);
    void selectAll();
    void deselectAll();
    void setChosenSuites();

    Utils::FilePaths m_chosenSuites;

    Utils::PathChooser *m_directoryLineEdit;
    QListWidget *m_suitesListWidget;
    QDialogButtonBox *m_buttonBox;
};

} // namespace Internal
} // namespace Squish