blob: 9531072ade9ca9010c62c632a45a1122e3e9c3ef (
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
|
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "core_global.h"
#include <utils/aspects.h>
namespace Core {
class SecretAspectPrivate;
class CORE_EXPORT SecretAspect : public Utils::BaseAspect
{
public:
using valueType = QString;
static bool isSecretStorageAvailable();
explicit SecretAspect(Utils::AspectContainer *container = nullptr);
~SecretAspect() override;
bool isDirty() override;
void addToLayoutImpl(Layouting::Layout &parent) override;
void requestValue(
const std::function<void(const Utils::Result<QString> &)> &callback) const;
void setValue(const QString &value);
void readSettings() override;
void writeSettings() const override;
static QString warningThatNoSecretStorageIsAvailable();
protected:
void readSecret(const std::function<void(Utils::Result<QString>)> &callback) const;
private:
std::unique_ptr<SecretAspectPrivate> d;
};
} // namespace Core
|