aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/filterkitaspectsdialog.h
blob: 7ad98f3da25e0f012bdca9ad12d479e9ed97998a (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
// Copyright (C) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include <utils/id.h>

#include <QDialog>

namespace Utils { class BaseTreeModel; }

namespace ProjectExplorer {
class Kit;
namespace Internal {

class FilterKitAspectsDialog : public QDialog
{
public:
    FilterKitAspectsDialog(const Kit *kit, QWidget *parent);
    QSet<Utils::Id> irrelevantAspects() const;

private:
    Utils::BaseTreeModel * const m_model;
};

} // namespace Internal
} // namespace ProjectExplorer