aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/mcusupport/settingshandler.h
blob: 845d4aafa24f4ef0f82e95d1a684cc67d6f2b70d (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
// 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 <QSettings>
#include <QSharedPointer>
#include <QString>

namespace Utils {
class FilePath;
} //namespace Utils

namespace McuSupport::Internal {

class SettingsHandler
{
public:
    using Ptr = QSharedPointer<SettingsHandler>;
    virtual ~SettingsHandler() = default;
    virtual Utils::FilePath getPath(const QString &settingsKey,
                                    QSettings::Scope scope,
                                    const Utils::FilePath &m_defaultPath) const;

    virtual bool write(const QString &settingsKey,
                       const Utils::FilePath &path,
                       const Utils::FilePath &defaultPath) const;

    virtual bool isAutomaticKitCreationEnabled() const;
    void setAutomaticKitCreation(bool isEnabled);
}; //class SettingsHandler
} // namespace McuSupport::Internal