digiKam
dbwidget.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 : 2013-11-18
7  * Description : a tool to export images to Dropbox web service
8  *
9  * Copyright (C) 2013 by Pankaj Kumar <me at panks dot me>
10  * Copyright (C) 2013-2022 by Gilles Caulier <caulier dot gilles at gmail dot com>
11  *
12  * This program is free software; you can redistribute it
13  * and/or modify it under the terms of the GNU General
14  * Public License as published by the Free Software Foundation;
15  * either version 2, or (at your option) 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_DB_WIDGET_H
25 #define DIGIKAM_DB_WIDGET_H
26 
27 // Qt includes
28 
29 #include <QWidget>
30 
31 // Local includes
32 
33 #include "wssettingswidget.h"
34 #include "dinfointerface.h"
35 
36 class QLabel;
37 class QSpinBox;
38 class QCheckBox;
39 class QButtonGroup;
40 class QComboBox;
41 class QPushButton;
42 
43 using namespace Digikam;
44 
46 {
47 
48 class DBWidget : public WSSettingsWidget
49 {
50  Q_OBJECT
51 
52 public:
53 
54  explicit DBWidget(QWidget* const parent,
55  DInfoInterface* const iface,
56  const QString& toolName);
57  ~DBWidget() override;
58 
59  void updateLabels(const QString& name = QString(), const QString& url = QString()) override;
60 
61 private:
62 
63  friend class DBWindow;
64 };
65 
66 } // namespace DigikamGenericDropBoxPlugin
67 
68 #endif // DIGIKAM_DB_WIDGET_H
Definition: dbwidget.h:49
Definition: dbwindow.h:47
Definition: dinfointerface.h:56
Definition: wssettingswidget.h:54
Definition: dbitem.h:32
Definition: datefolderview.cpp:43