digiKam
Loading...
Searching...
No Matches
showfotosetupplugins.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 : 2007-02-06
7 * Description : Setup view panel for dplugins.
8 *
9 * SPDX-FileCopyrightText: 2018-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
10 *
11 * SPDX-License-Identifier: GPL-2.0-or-later
12 *
13 * ============================================================ */
14
15#pragma once
16
17// Qt includes
18
19#include <QScrollArea>
20
21namespace ShowFoto
22{
23
24class ShowfotoSetupPlugins : public QScrollArea
25{
26 Q_OBJECT
27
28public:
29
36
37public:
38
39 explicit ShowfotoSetupPlugins(QWidget* const parent = nullptr);
40 ~ShowfotoSetupPlugins() override;
41
42 void setActiveTab(PluginTab tab);
43 PluginTab activeTab() const;
44
45 void applySettings();
46
47private:
48
49 class Private;
50 Private* const d = nullptr;
51};
52
53} // namespace ShowFoto
Definition showfotosetupplugins.h:25
PluginTab
Definition showfotosetupplugins.h:31
@ Editor
Definition showfotosetupplugins.h:33
@ Generic
Definition showfotosetupplugins.h:32
@ Loaders
Definition showfotosetupplugins.h:34
void applySettings()
Definition showfotosetupplugins.cpp:92
void setActiveTab(PluginTab tab)
Definition showfotosetupplugins.cpp:82
PluginTab activeTab() const
Definition showfotosetupplugins.cpp:87
~ShowfotoSetupPlugins() override
Definition showfotosetupplugins.cpp:77
Definition showfotofolderviewbar.cpp:43