digiKam
setupplugins.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 DIGIKAM_SETUP_PLUGINS_H
25 #define DIGIKAM_SETUP_PLUGINS_H
26 
27 // Qt includes
28 
29 #include <QScrollArea>
30 
31 namespace Digikam
32 {
33 
34 class SetupPlugins : public QScrollArea
35 {
36  Q_OBJECT
37 
38 public:
39 
40  enum PluginTab
41  {
42  Generic = 0,
44  Bqm,
45  Loaders
46  };
47 
48 public:
49 
50  explicit SetupPlugins(QWidget* const parent = nullptr);
51  ~SetupPlugins() override;
52 
53  void applySettings();
54 
55 private:
56 
57  class Private;
58  Private* const d;
59 };
60 
61 } // namespace Digikam
62 
63 #endif // DIGIKAM_SETUP_PLUGINS_H
Definition: setupplugins.h:35
PluginTab
Definition: setupplugins.h:41
@ Editor
Definition: setupplugins.h:43
@ Loaders
Definition: setupplugins.h:45
@ Bqm
Definition: setupplugins.h:44
@ Generic
Definition: setupplugins.h:42
void applySettings()
Definition: setupplugins.cpp:108
~SetupPlugins() override
Definition: setupplugins.cpp:103
SetupPlugins(QWidget *const parent=nullptr)
Definition: setupplugins.cpp:70
Definition: datefolderview.cpp:43