digiKam
Loading...
Searching...
No Matches
texturesettings.h
Go to the documentation of this file.
1/* ============================================================
2 *
3 * This file is a part of digiKam project
4 * https://www.digikam.org
5 *
6 * Date : 2005-03-10
7 * Description : Texture settings view.
8 *
9 * SPDX-FileCopyrightText: 2005-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
10 * SPDX-FileCopyrightText: 2006-2010 by Marcel Wiesweg <marcel dot wiesweg at gmx dot de>
11 *
12 * SPDX-License-Identifier: GPL-2.0-or-later
13 *
14 * ============================================================ */
15
16#pragma once
17
18// Local includes
19
20#include <QWidget>
21
22// Local includes
23
24#include "digikam_export.h"
25#include "texturecontainer.h"
26
27class KConfigGroup;
28
29namespace Digikam
30{
31
32class DIGIKAM_EXPORT TextureSettings : public QWidget
33{
34 Q_OBJECT
35
36public:
37
38 explicit TextureSettings(QWidget* const parent);
39 ~TextureSettings() override;
40
41 TextureContainer defaultSettings() const;
42 void resetToDefault();
43
44 TextureContainer settings() const;
45 void setSettings(const TextureContainer& settings);
46
47 void readSettings(const KConfigGroup& group);
48 void writeSettings(KConfigGroup& group);
49
50Q_SIGNALS:
51
53
54private:
55
56 class Private;
57 Private* const d = nullptr;
58};
59
60} // namespace Digikam
Definition texturecontainer.h:31
Definition texturesettings.h:33
Definition datefolderview.cpp:34