digiKam
rajcewindow.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 : 2011-04-12
7  * Description : A tool to export items to Rajce web service
8  *
9  * Copyright (C) 2011 by Lukas Krejci <krejci.l at centrum dot cz>
10  * Copyright (C) 2011-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_RAJCE_WINDOW_H
25 #define DIGIKAM_RAJCE_WINDOW_H
26 
27 // Local includes
28 
29 #include "wstooldialog.h"
30 #include "dinfointerface.h"
31 
32 using namespace Digikam;
33 
35 {
36 
37 class RajceWidget;
38 
39 class RajceWindow : public WSToolDialog
40 {
41  Q_OBJECT
42 
43 public:
44 
45  explicit RajceWindow(DInfoInterface* const iface, QWidget* const parent = nullptr);
46  ~RajceWindow() override;
47 
48  void reactivate();
49 
50 protected:
51 
52  void closeEvent(QCloseEvent* e) override;
53 
54 private Q_SLOTS:
55 
56  void slotSetUploadButtonEnabled(bool);
57  void slotFinished();
58 
59 private:
60 
61  RajceWidget* m_widget;
62 };
63 
64 } // namespace DigikamGenericRajcePlugin
65 
66 #endif // DIGIKAM_RAJCE_WINDOW_H
Definition: rajcewidget.h:43
Definition: rajcewindow.h:40
Definition: dinfointerface.h:56
Definition: wstooldialog.h:43
Definition: rajcealbum.h:35
Definition: datefolderview.cpp:43