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

« back to all changes in this revision

Viewing changes to src/gvdocumentimpl.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 GVDOCUMENTIMPL_H
 
22
#define GVDOCUMENTIMPL_H
 
23
 
 
24
// Qt
 
25
#include <qobject.h>
 
26
#include <qrect.h>
 
27
 
 
28
// Local
 
29
#include "gvdocument.h"
 
30
#include "gvimageutils/orientation.h"
 
31
 
 
32
 
 
33
class GVDocumentImpl : public QObject {
 
34
Q_OBJECT
 
35
public:
 
36
        GVDocumentImpl(GVDocument* document);
 
37
        virtual ~GVDocumentImpl();
 
38
        /**
 
39
         * This method is called by GVDocument::switchToImpl after it has connect
 
40
         * signals to the object
 
41
         */
 
42
        virtual void init();
 
43
        
 
44
        void switchToImpl(GVDocumentImpl*);
 
45
        void setImage(QImage, bool update);
 
46
        void setImageFormat(const QCString&);
 
47
        void setFileSize(int) const;
 
48
        
 
49
        virtual QString comment() const;
 
50
        virtual GVDocument::CommentState commentState() const;
 
51
        virtual void setComment(const QString&);
 
52
        
 
53
        virtual void suspendLoading();
 
54
        virtual void resumeLoading();
 
55
 
 
56
        virtual void transform(GVImageUtils::Orientation);
 
57
        virtual QString save(const KURL&, const QCString& format) const;
 
58
 
 
59
signals:
 
60
        void finished(bool success);
 
61
        void sizeUpdated(int width, int height);
 
62
        void rectUpdated(const QRect&);
 
63
        
 
64
protected:
 
65
        GVDocument* mDocument;
 
66
};
 
67
 
 
68
class GVDocumentEmptyImpl : public GVDocumentImpl {
 
69
public:
 
70
        GVDocumentEmptyImpl(GVDocument* document)
 
71
        : GVDocumentImpl(document) {
 
72
                setImage(QImage(), false);
 
73
                setImageFormat(0);
 
74
        }
 
75
};
 
76
 
 
77
#endif /* GVDOCUMENTIMPL_H */