~ubuntu-branches/ubuntu/saucy/digikam/saucy

« back to all changes in this revision

Viewing changes to extra/kipi-plugins/picasawebexport/plugin_picasawebexport.h

  • Committer: Package Import Robot
  • Author(s): Felix Geyer, Rohan Garg, Philip Muškovac, Felix Geyer
  • Date: 2011-09-23 18:18:55 UTC
  • mfrom: (1.2.36 upstream)
  • Revision ID: package-import@ubuntu.com-20110923181855-ifs67wxkugshev9k
Tags: 2:2.1.1-0ubuntu1
[ Rohan Garg ]
* New upstream release (LP: #834190)
  - debian/control
    + Build with libqtwebkit-dev
 - debian/kipi-plugins-common
    + Install libkvkontakte required by kipi-plugins
 - debian/digikam
    + Install panoramagui

[ Philip Muškovac ]
* New upstream release
  - debian/control:
    + Add libcv-dev, libcvaux-dev, libhighgui-dev, libboost-graph1.46-dev,
      libksane-dev, libxml2-dev, libxslt-dev, libqt4-opengl-dev, libqjson-dev,
      libgpod-dev and libqca2-dev to build-deps
    + Add packages for kipi-plugins, libmediawiki, libkface, libkgeomap and
      libkvkontakte
  - debian/rules:
    + Don't build with gphoto2 since it doesn't build with it.
  - Add kubuntu_fix_test_linking.diff to fix linking of the dngconverter test
  - update install files
  - update kubuntu_01_mysqld_executable_name.diff for new cmake layout
    and rename to kubuntu_mysqld_executable_name.diff
* Fix typo in digikam-data description (LP: #804894)
* Fix Vcs links

[ Felix Geyer ]
* Move library data files to the new packages libkface-data, libkgeomap-data
  and libkvkontakte-data.
* Override version of the embedded library packages to 1.0~digikam<version>.
* Exclude the library packages from digikam-dbg to prevent file conflicts in
  the future.
* Call dh_install with --list-missing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ============================================================
 
2
 *
 
3
 * This file is a part of kipi-plugins project
 
4
 * http://www.kipi-plugins.org
 
5
 *
 
6
 * Date        : 2007-17-07
 
7
 * Description : a kipi plugin to export images to Picasa web service
 
8
 *
 
9
 * Copyright (C) 2007-2008 by Vardhman Jain <vardhman at gmail dot com>
 
10
 * Copyright (C) 2008-2010 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 PLUGIN_PICASAWEBEXPORT_H
 
25
#define PLUGIN_PICASAWEBEXPORT_H
 
26
 
 
27
// LibKIPI includes
 
28
 
 
29
#include <libkipi/plugin.h>
 
30
 
 
31
// Local includes
 
32
 
 
33
#include "picasawebwindow.h"
 
34
 
 
35
class KAction;
 
36
 
 
37
using namespace KIPI;
 
38
using namespace KIPIPicasawebExportPlugin;
 
39
 
 
40
class Plugin_PicasawebExport : public Plugin
 
41
{
 
42
    Q_OBJECT
 
43
 
 
44
public:
 
45
 
 
46
    Plugin_PicasawebExport(QObject* parent, const QVariantList& args);
 
47
    ~Plugin_PicasawebExport();
 
48
 
 
49
    KIPI::Category category(KAction* action) const;
 
50
    void setup(QWidget*);
 
51
 
 
52
public Q_SLOTS:
 
53
 
 
54
    void slotExport();
 
55
    void slotImport();
 
56
 
 
57
private:
 
58
 
 
59
    KAction*         m_actionExport;
 
60
    KAction*         m_actionImport;
 
61
 
 
62
    PicasawebWindow* m_dlgExport;
 
63
    PicasawebWindow* m_dlgImport;
 
64
};
 
65
 
 
66
#endif // PLUGIN_PICASAWEBEXPORT_H