digiKam
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  * Copyright (C) 2018-2022 by Gilles Caulier <caulier dot gilles at gmail dot com>
10  *
11  * This program is free software; you can redistribute it
12  * and/or modify it under the terms of the GNU General
13  * Public License as published by the Free Software Foundation;
14  * either version 2, or (at your option)
15  * any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  * GNU General Public License for more details.
21  *
22  * ============================================================ */
23 
24 #ifndef SHOW_FOTO_SETUP_PLUGINS_H
25 #define SHOW_FOTO_SETUP_PLUGINS_H
26 
27 // Qt includes
28 
29 #include <QScrollArea>
30 
31 namespace ShowFoto
32 {
33 
34 class ShowfotoSetupPlugins : public QScrollArea
35 {
36  Q_OBJECT
37 
38 public:
39 
40  enum PluginTab
41  {
42  Generic = 0,
44  Loaders
45  };
46 
47 public:
48 
49  explicit ShowfotoSetupPlugins(QWidget* const parent = nullptr);
50  ~ShowfotoSetupPlugins() override;
51 
52  void applySettings();
53 
54 private:
55 
56  class Private;
57  Private* const d;
58 };
59 
60 } // namespace ShowFoto
61 
62 #endif // SHOW_FOTO_SETUP_PLUGINS_H
Definition: showfotosetupplugins.h:35
ShowfotoSetupPlugins(QWidget *const parent=nullptr)
Definition: showfotosetupplugins.cpp:65
PluginTab
Definition: showfotosetupplugins.h:41
@ Editor
Definition: showfotosetupplugins.h:43
@ Generic
Definition: showfotosetupplugins.h:42
@ Loaders
Definition: showfotosetupplugins.h:44
void applySettings()
Definition: showfotosetupplugins.cpp:97
~ShowfotoSetupPlugins() override
Definition: showfotosetupplugins.cpp:92
Definition: showfotofolderviewbar.cpp:52