aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/copilot/copilotsettings.h
blob: b92106c3f733cee3bb840a3d0620dcafb5fb4484 (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
45
46
47
48
// Copyright (C) 2023 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/aspects.h>

namespace ProjectExplorer { class Project; }

namespace Copilot {

class CopilotSettings : public Utils::AspectContainer
{
public:
    CopilotSettings();

    Utils::FilePathAspect nodeJsPath{this};
    Utils::FilePathAspect distPath{this};
    Utils::BoolAspect autoComplete{this};
    Utils::BoolAspect enableCopilot{this};

    Utils::BoolAspect useProxy{this};
    Utils::StringAspect proxyHost{this};
    Utils::IntegerAspect proxyPort{this};
    Utils::StringAspect proxyUser{this};

    Utils::BoolAspect saveProxyPassword{this};
    Utils::StringAspect proxyPassword{this};
    Utils::BoolAspect proxyRejectUnauthorized{this};
};

CopilotSettings &settings();

class CopilotProjectSettings : public Utils::AspectContainer
{
public:
    explicit CopilotProjectSettings(ProjectExplorer::Project *project);

    void save(ProjectExplorer::Project *project);
    void setUseGlobalSettings(bool useGlobalSettings);

    bool isEnabled() const;

    Utils::BoolAspect enableCopilot{this};
    Utils::BoolAspect useGlobalSettings{this};
};

} // namespace Copilot