aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmakeprojectmanager/qmakesettings.h
blob: 2880d955e5aa099a906a572626f6ad65190860c5 (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) 2019 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 <coreplugin/dialogs/ioptionspage.h>

#include <utils/aspects.h>

namespace QmakeProjectManager {
namespace Internal {

class QmakeSettings : public Utils::AspectContainer
{
    Q_OBJECT

public:
    static QmakeSettings &instance();
    static bool warnAgainstUnalignedBuildDir();
    static bool alwaysRunQmake();
    static bool runSystemFunction();

signals:
    void settingsChanged();

private:
    QmakeSettings();
    friend class SettingsWidget;

    Utils::BoolAspect m_warnAgainstUnalignedBuildDir;
    Utils::BoolAspect m_alwaysRunQmake;
    Utils::BoolAspect m_ignoreSystemFunction;
};

class QmakeSettingsPage final : public Core::IOptionsPage
{
public:
    QmakeSettingsPage();
};

} // namespace Internal
} // namespace QmakeProjectManager