digiKam
imageshackwidget_p.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 : 2012-02-02
7  * Description : a tool to export items to ImageShack web service
8  *
9  * Copyright (C) 2012 by Dodon Victor <dodonvictor at gmail dot com>
10  * Copyright (C) 2013-2018 by Caulier Gilles <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_IMAGE_SHACK_WIDGET_PRIVATE_H
25 #define DIGIKAM_IMAGE_SHACK_WIDGET_PRIVATE_H
26 
27 #include "imageshackwidget.h"
28 
29 // Qt includes
30 
31 #include <QLabel>
32 #include <QLineEdit>
33 #include <QGroupBox>
34 #include <QCheckBox>
35 #include <QRadioButton>
36 #include <QSpinBox>
37 #include <QStringList>
38 #include <QGridLayout>
39 #include <QHBoxLayout>
40 #include <QVBoxLayout>
41 #include <QComboBox>
42 #include <QApplication>
43 #include <QPushButton>
44 #include <QMimeDatabase>
45 #include <QMimeType>
46 
47 // KDE includes
48 
49 #include <klocalizedstring.h>
50 
51 // Local includes
52 
53 #include "digikam_debug.h"
54 #include "ditemslist.h"
55 #include "imageshacksession.h"
56 
57 using namespace Digikam;
58 
60 {
61 
62 class Q_DECL_HIDDEN ImageShackWidget::Private
63 {
64 public:
65 
67  {
68  imgList = nullptr;
69  iface = nullptr;
70  session = nullptr;
71  headerLbl = nullptr;
72  accountNameLbl = nullptr;
73  tagsFld = nullptr;
74  privateImagesChb = nullptr;
75  remBarChb = nullptr;
76  chgRegCodeBtn = nullptr;
77  reloadGalleriesBtn = nullptr;
78  galleriesCob = nullptr;
79  progressBar = nullptr;
80  }
81 
85 
86  QLabel* headerLbl;
87  QLabel* accountNameLbl;
88 
89  QLineEdit* tagsFld;
90 
91  QCheckBox* privateImagesChb;
92  QCheckBox* remBarChb;
93 
94  QPushButton* chgRegCodeBtn;
95  QPushButton* reloadGalleriesBtn;
96 
97  QComboBox* galleriesCob;
98 
100 };
101 
102 } // namespace DigikamGenericImageShackPlugin
103 
104 #endif // DIGIKAM_IMAGE_SHACK_WIDGET_PRIVATE_H
Definition: imageshacksession.h:35
QPushButton * reloadGalleriesBtn
Definition: imageshackwidget_p.h:95
QCheckBox * remBarChb
Definition: imageshackwidget_p.h:92
QPushButton * chgRegCodeBtn
Definition: imageshackwidget_p.h:94
QComboBox * galleriesCob
Definition: imageshackwidget_p.h:97
QLabel * accountNameLbl
Definition: imageshackwidget_p.h:87
QCheckBox * privateImagesChb
Definition: imageshackwidget_p.h:91
Private()
Definition: imageshackwidget_p.h:66
QLineEdit * tagsFld
Definition: imageshackwidget_p.h:89
DProgressWdg * progressBar
Definition: imageshackwidget_p.h:99
DItemsList * imgList
Definition: imageshackwidget_p.h:82
QLabel * headerLbl
Definition: imageshackwidget_p.h:86
ImageShackSession * session
Definition: imageshackwidget_p.h:84
DInfoInterface * iface
Definition: imageshackwidget_p.h:83
Definition: imageshackwidget.h:46
Definition: dinfointerface.h:56
Definition: ditemslist.h:196
Definition: dprogresswdg.h:39
Definition: imageshackitem.h:32
Definition: datefolderview.cpp:43