aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/clangcodemodel/clangprojectsettingswidget.h
blob: 7594ccde79ffd38c3becdaad41a5fe8fe66cbc33 (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
// 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 "ui_clangprojectsettingswidget.h"

#include "clangprojectsettings.h"
#include <projectexplorer/projectsettingswidget.h>

#include <QPointer>

namespace ProjectExplorer { class Project; }

namespace ClangCodeModel {
namespace Internal {

class ClangProjectSettingsWidget: public ProjectExplorer::ProjectSettingsWidget
{
    Q_OBJECT

public:
    explicit ClangProjectSettingsWidget(ProjectExplorer::Project *project);

private:
    void onDelayedTemplateParseClicked(bool);
    void onGlobalCustomChanged(bool useGlobalSettings);
    void onAboutToSaveProjectSettings();

    void syncWidgets();
    void syncOtherWidgetsToComboBox();

private:
    Ui::ClangProjectSettingsWidget m_ui;
    ClangProjectSettings &m_projectSettings;
};

} // namespace Internal
} // namespace ClangCodeModel