QGIS API Documentation 3.99.0-Master (a5475b57e34)
Loading...
Searching...
No Matches
qgssettingsproxy.h
Go to the documentation of this file.
1/***************************************************************************
2 qgssettingsproxy.h
3 --------------------------------------
4 Date : January 2024
5 Copyright : (C) 2024 by Nyall Dawson
6 Email : nyall dot dawson at gmail dot com
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15
16#ifndef QGSSETTINGSPROXY_H
17#define QGSSETTINGSPROXY_H
18
19
20#include <optional>
21
22#include "qgis_core.h"
23#include "qgssettings.h"
24
25#define SIP_NO_FILE
26
36class CORE_EXPORT QgsSettingsProxy
37{
38 public:
39
46 explicit QgsSettingsProxy( QgsSettings *settings = nullptr );
47
52 {
53 return mOwnedSettings.has_value() ? &( *mOwnedSettings ) : mNonOwnedSettings;
54 }
55
60 {
61 return mOwnedSettings.has_value() ? *mOwnedSettings : *mNonOwnedSettings;
62 }
63
64 private:
65
66 QgsSettings *mNonOwnedSettings = nullptr;
67 std::optional< QgsSettings > mOwnedSettings;
68
69};
70#endif // QGSSETTINGSPROXY_H
QgsSettingsProxy(QgsSettings *settings=nullptr)
Constructor for QgsSettingsProxy.
QgsSettings * operator->()
Returns a pointer to the proxied QgsSettings object.
Stores settings for use within QGIS.
Definition qgssettings.h:68
QgsMargins operator*(const QgsMargins &margins, double factor)
Returns a QgsMargins object that is formed by multiplying each component of the given margins by fact...
Definition qgsmargins.h:252