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

« back to all changes in this revision

Viewing changes to src/gvdocumentimpl.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Christopher Martin
  • Date: 2004-06-13 18:55:04 UTC
  • mfrom: (1.1.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20040613185504-net8ekxoswwvyxs9
Tags: 1.1.3-1
New upstream release. Translations now included.

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
 
 
22
 
 
23
// Local
 
24
#include "gvdocument.h"
 
25
#include "gvdocumentimpl.moc"
 
26
 
 
27
GVDocumentImpl::GVDocumentImpl(GVDocument* document)
 
28
: mDocument(document) {}
 
29
 
 
30
GVDocumentImpl::~GVDocumentImpl() {}
 
31
 
 
32
void GVDocumentImpl::switchToImpl(GVDocumentImpl* impl) {
 
33
        mDocument->switchToImpl(impl);
 
34
}
 
35
 
 
36
void GVDocumentImpl::setImage(QImage img) {
 
37
        mDocument->setImage(img);
 
38
}
 
39
 
 
40
void GVDocumentImpl::setImageFormat(const char* format) {
 
41
        mDocument->setImageFormat(format);
 
42
}
 
43
 
 
44
void GVDocumentImpl::setFileSize(int size) const {
 
45
        mDocument->setFileSize(size);
 
46
}
 
47
 
 
48
QString GVDocumentImpl::comment() const {
 
49
        return QString::null;
 
50
}
 
51
 
 
52
GVDocument::CommentState GVDocumentImpl::commentState() const {
 
53
        return GVDocument::NONE;
 
54
}
 
55
 
 
56
void GVDocumentImpl::setComment(const QString&) {
 
57
}
 
58
 
 
59
void GVDocumentImpl::suspendLoading() {
 
60
}
 
61
 
 
62
void GVDocumentImpl::resumeLoading() {
 
63
}
 
64
 
 
65
void GVDocumentImpl::modify(GVImageUtils::Orientation) {
 
66
}
 
67
 
 
68
bool GVDocumentImpl::save(const KURL&, const char*) const {
 
69
        return false;
 
70
}