blob: a71d9910dcb36f8bffacb083f139663dc740fa28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
/***************************************************************************
tphoto.h - description
-------------------
begin : Thu Sep 12 2002
copyright : (C) 2002 by Todd Shoemaker
: (C) 2007 Angelo Naselli
email : jtshoe11@yahoo.com
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef TPHOTO_H
#define TPHOTO_H
// Qt includes.
#include <qstring.h>
#include <qptrlist.h>
#include <qrect.h>
#include <qiconview.h>
// KDE includes.
#include <kurl.h>
#include <libkexiv2/kexiv2.h>
class QImage;
class QPixmap;
class KPrinter;
namespace KIPIPrintWizardPlugin
{
class TPhoto
{
public:
TPhoto(int thumbnailSize);
~TPhoto();
KURL filename; // full path
QPixmap & thumbnail();
QImage loadPhoto();
int m_thumbnailSize;
int width();
int height();
QRect cropRegion;
int copies;
int rotation;
KExiv2Iface::KExiv2 *exiv2Iface();
private:
QPixmap *m_thumbnail;
void loadCache();
QSize & size();
QSize * m_size;
KExiv2Iface::KExiv2 *m_exiv2Iface;
};
} // NameSpace KIPIPrintWizardPlugin
#endif // TPHOTO_H
|