~ubuntu-branches/ubuntu/intrepid/gwenview/intrepid

« back to all changes in this revision

Viewing changes to gvimageutils/jpegcontent.h

  • Committer: Bazaar Package Importer
  • Author(s): Christopher Martin
  • Date: 2005-04-06 11:33:06 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20050406113306-7zovl7z0io5bacpd
Tags: 1.2.0-1
* New upstream release.
  + Fixes crashes when using "Back" to navigate. (Closes: #301811)
* Enable KIPI support.
* Add a doc-base file for the handbook.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// vim: set tabstop=4 shiftwidth=4 noexpandtab
 
2
/*
 
3
Gwenview - A simple image viewer for KDE
 
4
Copyright 2000-2004 Aur�lien G�teau
 
5
 
 
6
This program is free software; you can redistribute it and/or
 
7
modify it under the terms of the GNU General Public License
 
8
as published by the Free Software Foundation; either version 2
 
9
of the License, or (at your option) any later version.
 
10
 
 
11
This program is distributed in the hope that it will be useful,
 
12
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
GNU General Public License for more details.
 
15
 
 
16
You should have received a copy of the GNU General Public License
 
17
along with this program; if not, write to the Free Software
 
18
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
19
 
 
20
*/
 
21
#ifndef JPEGCONTENT_H
 
22
#define JPEGCONTENT_H
 
23
 
 
24
// Qt
 
25
#include <qcstring.h>
 
26
 
 
27
// Local
 
28
#include <gvimageutils/orientation.h>
 
29
 
 
30
 
 
31
class QImage;
 
32
class QString;
 
33
class QFile;
 
34
 
 
35
namespace GVImageUtils {
 
36
 
 
37
 
 
38
class JPEGContent {
 
39
public:
 
40
        JPEGContent();
 
41
        ~JPEGContent();
 
42
        
 
43
        Orientation orientation() const;
 
44
        void resetOrientation();
 
45
 
 
46
        QString comment() const;
 
47
        
 
48
        void transform(Orientation, bool setComment=false, const QString& comment=QString::null);
 
49
 
 
50
        QImage thumbnail() const;
 
51
        void setThumbnail(const QImage&);
 
52
 
 
53
        bool load(const QString& file);
 
54
        bool loadFromData(const QByteArray& rawData);
 
55
        bool save(const QString& file) const;
 
56
        bool save(QFile*) const;
 
57
 
 
58
private:
 
59
        struct Private;
 
60
        Private *d;
 
61
 
 
62
        JPEGContent(const JPEGContent&);
 
63
        void operator=(const JPEGContent&);
 
64
};
 
65
 
 
66
 
 
67
} // namespace
 
68
 
 
69
 
 
70
#endif /* JPEGCONTENT_H */