QGIS API Documentation 3.99.0-Master (26c88405ac0)
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#define SIP_NO_FILE
20
21#include <optional>
22
23#include "qgis_core.h"
24#include "qgssettings.h"
25
35class CORE_EXPORT QgsSettingsProxy
36{
37 public:
38
45 explicit QgsSettingsProxy( QgsSettings *settings = nullptr );
46
51 {
52 return mOwnedSettings.has_value() ? &( *mOwnedSettings ) : mNonOwnedSettings;
53 }
54
59 {
60 return mOwnedSettings.has_value() ? *mOwnedSettings : *mNonOwnedSettings;
61 }
62
63 private:
64
65 QgsSettings *mNonOwnedSettings = nullptr;
66 std::optional< QgsSettings > mOwnedSettings;
67
68};
69#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:65
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:250