digiKam
piwigologindlg.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 : 2014-09-30
7  * Description : a tool to export items to Piwigo web service
8  *
9  * Copyright (C) 2003-2005 by Renchi Raju <renchi dot raju at gmail dot com>
10  * Copyright (C) 2006 by Colin Guthrie <kde at colin dot guthr dot ie>
11  * Copyright (C) 2006-2022 by Gilles Caulier <caulier dot gilles at gmail dot com>
12  * Copyright (C) 2008 by Andrea Diamantini <adjam7 at gmail dot com>
13  * Copyright (C) 2010-2014 by Frederic Coiffier <frederic dot coiffier at free dot com>
14  *
15  * This program is free software; you can redistribute it
16  * and/or modify it under the terms of the GNU General
17  * Public License as published by the Free Software Foundation;
18  * either version 2, or (at your option) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23  * GNU General Public License for more details.
24  *
25  * ============================================================ */
26 
27 #ifndef DIGIKAM_PIWIGO_LOGIN_DLG_H
28 #define DIGIKAM_PIWIGO_LOGIN_DLG_H
29 
30 // Qt includes
31 
32 #include <QString>
33 #include <QDialog>
34 
35 // Local includes
36 
37 #include "piwigosession.h"
38 
40 {
41 
42 class PiwigoLoginDlg : public QDialog
43 {
44  Q_OBJECT
45 
46 public:
47 
48  explicit PiwigoLoginDlg(QWidget* const pParent,
49  PiwigoSession* const pPiwigo,
50  const QString& title);
51  ~PiwigoLoginDlg() override;
52 
53 private Q_SLOTS:
54 
55  void slotOk();
56 
57 private:
58 
59  class Private;
60  Private* const d;
61 };
62 
63 } // namespace DigikamGenericPiwigoPlugin
64 
65 #endif // DIGIKAM_PIWIGO_LOGIN_DLG_H
Definition: piwigologindlg.h:43
~PiwigoLoginDlg() override
Definition: piwigologindlg.cpp:134
PiwigoLoginDlg(QWidget *const pParent, PiwigoSession *const pPiwigo, const QString &title)
Definition: piwigologindlg.cpp:70
Definition: piwigosession.h:38
Definition: piwigoitem.h:35