~ubuntu-branches/ubuntu/intrepid/digikam/intrepid

« back to all changes in this revision

Viewing changes to digikam/showfoto/imagepropertiesexif.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2008-07-17 20:25:39 UTC
  • mfrom: (1.3.2 upstream) (37 hardy)
  • mto: This revision was merged to the branch mainline in revision 39.
  • Revision ID: james.westby@ubuntu.com-20080717202539-1bw3w3nrsso7yj4z
* New upstream release
  - digiKam 0.9.4 Release Plan (KDE3) ~ 13 July 08 (Closes: #490144)
* DEB_CONFIGURE_EXTRA_FLAGS := --without-included-sqlite3
* Debhelper compatibility level V7
* Install pixmaps in debian/*.install
* Add debian/digikam.lintian-overrides

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* ============================================================
2
 
 * Author: Caulier Gilles <caulier dot gilles at free.fr>
3
 
 * Date  : 2004-11-17
4
 
 * Description :
5
 
 *
6
 
 * Copyright 2004-2005 by Gilles Caulier
7
 
 *
8
 
 * This program is free software; you can redistribute it
9
 
 * and/or modify it under the terms of the GNU General
10
 
 * Public License as published by the Free Software Foundation;
11
 
 * either version 2, or (at your option)
12
 
 * any later version.
13
 
 * 
14
 
 * This program is distributed in the hope that it will be useful,
15
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
 
 * GNU General Public License for more details.
18
 
 * ============================================================ */
19
 
 
20
 
#ifndef IMAGEPROPERTIESEXIF_H
21
 
#define IMAGEPROPERTIESEXIF_H
22
 
 
23
 
// Qt includes.
24
 
 
25
 
#include <qobject.h>
26
 
#include <qguardedptr.h>
27
 
 
28
 
class QComboBox;
29
 
class QPixmap;
30
 
 
31
 
class KURL;
32
 
class KFileItem;
33
 
 
34
 
class KExifWidget;
35
 
class ThumbnailJob;
36
 
 
37
 
class ImagePropertiesEXIF : public QObject
38
 
{
39
 
    Q_OBJECT
40
 
 
41
 
public:
42
 
 
43
 
    ImagePropertiesEXIF(QWidget* page);
44
 
    ~ImagePropertiesEXIF();
45
 
 
46
 
    void setCurrentURL(const KURL& url);
47
 
 
48
 
private:
49
 
 
50
 
    KExifWidget                  *m_exifWidget;
51
 
    QComboBox                    *m_levelCombo;
52
 
    QLabel                       *m_labelThumb;
53
 
    
54
 
    QGuardedPtr<ThumbnailJob>     m_thumbJob;
55
 
    QString                       m_currItem;
56
 
    
57
 
private slots:
58
 
 
59
 
    void slotLevelChanged(int);
60
 
    void slotGotThumbnail(const KURL&, const QPixmap& pix);
61
 
    void slotFailedThumbnail(const KURL&);
62
 
};
63
 
 
64
 
#endif /* IMAGEPROPERTIESEXIF_H */