~ubuntu-branches/ubuntu/quantal/kipi-plugins/quantal

« back to all changes in this revision

Viewing changes to common/libkipiplugins/dialogs/imagedialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer, Alessandro Ghersi, Felix Geyer
  • Date: 2010-08-26 19:33:41 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20100826193341-oyh7rh1eamgk521i
Tags: 1.4.0-0ubuntu1
[ Alessandro Ghersi ]
* kipi-plugins-common replaces/conflicts kipi-plugins << 1.3.0

[ Felix Geyer ]
* New upstream bugfix release.
* Drop fix-ftbfs-glib-2.25.diff, applied upstream.
* Refresh sendimages-icedove.diff.
* Switch to source format 3.0 (quilt) so we can use bz2 upstream tarballs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 * Date        : 2004-05-01
7
7
 * Description : image files selector dialog.
8
8
 *
9
 
 * Copyright (C) 2004-2009 by Gilles Caulier <caulier dot gilles at gmail dot com>
 
9
 * Copyright (C) 2004-2010 by Gilles Caulier <caulier dot gilles at gmail dot com>
10
10
 *
11
11
 * This program is free software; you can redistribute it
12
12
 * and/or modify it under the terms of the GNU General
44
44
namespace KIPIPlugins
45
45
{
46
46
 
47
 
class ImageDialogPrivate;
48
 
class ImageDialogPreviewPrivate;
49
 
 
50
47
class KIPIPLUGINS_EXPORT ImageDialogPreview : public KPreviewWidgetBase
51
48
{
52
49
    Q_OBJECT
53
50
 
54
51
public:
55
52
 
56
 
    explicit ImageDialogPreview(KIPI::Interface *iface, QWidget *parent=0);
 
53
    explicit ImageDialogPreview(KIPI::Interface* iface, QWidget* parent=0);
57
54
    ~ImageDialogPreview();
58
55
 
59
56
    QSize sizeHint() const;
70
67
 
71
68
private:
72
69
 
73
 
    void resizeEvent(QResizeEvent *e);
 
70
    void resizeEvent(QResizeEvent* e);
74
71
 
75
72
private:
76
73
 
 
74
    class ImageDialogPreviewPrivate;
77
75
    ImageDialogPreviewPrivate* const d;
78
76
};
79
77
 
99
97
 
100
98
private:
101
99
 
 
100
    class ImageDialogPrivate;
102
101
    ImageDialogPrivate* const d;
103
102
};
104
103
 
105
104
// ------------------------------------------------------------------------
106
105
 
107
 
class LoadRawThumbThreadPriv;
108
 
 
109
106
class KIPIPLUGINS_EXPORT LoadRawThumbThread : public QThread
110
107
{
111
108
    Q_OBJECT
112
109
 
113
110
public:
114
111
 
115
 
    explicit LoadRawThumbThread(QObject *parent, int size=256);
 
112
    explicit LoadRawThumbThread(QObject* parent, int size=256);
116
113
    ~LoadRawThumbThread();
117
114
 
118
115
    void getRawThumb(const KUrl& url);
128
125
 
129
126
private:
130
127
 
 
128
    class LoadRawThumbThreadPriv;
131
129
    LoadRawThumbThreadPriv* const d;
132
130
};
133
131