source: extensions/digikam_export/piwigoexport/albumdlg.cpp @ 4770

Last change on this file since 4770 was 4770, checked in by fcoiffie, 14 years ago

Premiere version du plugin Digikam piwigoexport

  • Connexion
  • Liste des categories
  • Upload des photos
File size: 1.3 KB
RevLine 
[4770]1/* ============================================================
2 *
3 * This file is a part of kipi-plugins project
4 * http://www.kipi-plugins.org
5 *
6 * Date        : 2010-01-07
7 * Description : a plugin to export to a remote Piwigo server.
8 *
9 * Copyright (C) 2008 by Andrea Diamantini <adjam7 at gmail dot com>
10 * Copyright (C) 2010 by Frederic Coiffier <frederic dot coiffier at free 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// Local includes.
25
26#include "albumdlg.h"
27#include "albumdlg.moc"
28
29namespace KIPIPiwigoExportPlugin
30{
31
32AlbumDlg::AlbumDlg(QWidget *parent)
33        : QDialog(parent)
34{
35    setupUi(this);
36
37    connect(buttonOk, SIGNAL(clicked()),
38            this, SLOT(accept()));
39
40    connect(buttonCancel, SIGNAL(clicked()),
41            this, SLOT(reject()));
42}
43
44AlbumDlg:: ~AlbumDlg()
45{
46}
47
48} // namespace KIPIPiwigoExportPlugin
Note: See TracBrowser for help on using the repository browser.