digiKam
queuesettingsview.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 : 2009-02-21
7  * Description : a view to show Queue Settings.
8  *
9  * Copyright (C) 2009-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_BQM_QUEUE_SETTINGS_VIEW_H
25 #define DIGIKAM_BQM_QUEUE_SETTINGS_VIEW_H
26 
27 // Qt includes
28 
29 #include <QScrollArea>
30 #include <QList>
31 #include <QMap>
32 #include <QTabWidget>
33 
34 namespace Digikam
35 {
36 
37 class AssignedBatchTools;
38 class QueueSettings;
39 
40 class QueueSettingsView : public QTabWidget
41 {
42  Q_OBJECT
43 
44 public:
45 
46  explicit QueueSettingsView(QWidget* const parent = nullptr);
47  ~QueueSettingsView() override;
48 
49  void setBusy(bool b);
50 
51 Q_SIGNALS:
52 
54 
55 public Q_SLOTS:
56 
57  void slotQueueSelected(int, const QueueSettings&, const AssignedBatchTools&);
58 
59 private Q_SLOTS:
60 
61  void slotUseOrgAlbum();
62  void slotResetSettings();
63  void slotSettingsChanged();
64 
65 private:
66 
67  class Private;
68  Private* const d;
69 };
70 
71 } // namespace Digikam
72 
73 #endif // DIGIKAM_BQM_QUEUE_SETTINGS_VIEW_H
Definition: batchtoolutils.h:91
Definition: queuesettingsview.h:41
~QueueSettingsView() override
Definition: queuesettingsview.cpp:401
void setBusy(bool b)
Definition: queuesettingsview.cpp:407
void slotQueueSelected(int, const QueueSettings &, const AssignedBatchTools &)
Definition: queuesettingsview.cpp:474
void signalSettingsChanged(const QueueSettings &)
QueueSettingsView(QWidget *const parent=nullptr)
Definition: queuesettingsview.cpp:164
Definition: queuesettings.h:44
Definition: datefolderview.cpp:43