~ubuntu-branches/ubuntu/trusty/digikam/trusty

« back to all changes in this revision

Viewing changes to core/utilities/importui/backend/gpconfigdlg.h

  • Committer: Package Import Robot
  • Author(s): Mark Purcell
  • Date: 2012-09-27 21:41:30 UTC
  • mfrom: (1.2.43)
  • mto: This revision was merged to the branch mainline in revision 86.
  • Revision ID: package-import@ubuntu.com-20120927214130-i8v3ufr21nesp29i
Tags: 4:3.0.0~beta1a-1
* New upstream release

* Fix "wrongly conflicts phonon-backend-vlc" dropped (Closes: #688142)
* debian/watch include download.kde.org

* digikam 3.0.0 uses features from unreleased kdegraphics >=4.10 & ships 
a private version of the kdegraphics libs - this is not the Debian way :-(
* Unsatisfactory Conflicts: libkipi8, libkexiv2-10, libkdcraw20, libksane0
* Suspend digikam-dbg >130Mb

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ============================================================
 
2
 *
 
3
 * This file is a part of digiKam project
 
4
 * http://www.digikam.org
 
5
 *
 
6
 * Date        : 2007-09-07
 
7
 * Description : Gphoto2 camera config dialog
 
8
 *
 
9
 * Copyright (C) 2007-2009 by Gilles Caulier <caulier dot gilles at gmail dot com>
 
10
 *
 
11
 * This program is free software; you can redistribute it
 
12
 * and/or modify it under the terms of the GNU General
 
13
 * Public License as published by the Free Software Foundation;
 
14
 * either version 2, or (at your option)
 
15
 * 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 GPCONFIGDLG_H
 
25
#define GPCONFIGDLG_H
 
26
 
 
27
// C ANSI includes
 
28
 
 
29
extern "C"
 
30
{
 
31
#include <gphoto2.h>
 
32
}
 
33
 
 
34
// KDE includes
 
35
 
 
36
#include <kdialog.h>
 
37
 
 
38
class QWidget;
 
39
 
 
40
namespace Digikam
 
41
{
 
42
 
 
43
class GPConfigDlgPrivate;
 
44
 
 
45
class GPConfigDlg : public KDialog
 
46
{
 
47
    Q_OBJECT
 
48
 
 
49
public:
 
50
 
 
51
    GPConfigDlg(Camera* camera, CameraWidget* widget, QWidget* parent = 0);
 
52
    ~GPConfigDlg();
 
53
 
 
54
private Q_SLOTS:
 
55
 
 
56
    void slotOk();
 
57
 
 
58
private:
 
59
 
 
60
    void appendWidget(QWidget* parent, CameraWidget* widget);
 
61
    void updateWidgetValue(CameraWidget* widget);
 
62
 
 
63
private:
 
64
 
 
65
    GPConfigDlgPrivate* const d;
 
66
};
 
67
 
 
68
}  // namespace Digikam
 
69
 
 
70
#endif // GPCONFIGDLG_H