blob: 531c2bf520424d04fb12c7ddbdd63c7ac30acb07 (
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
|
/* This file is part of the KDE project
Copyright (C) 2001, 2002, 2003 The Karbon Developers
*/
#ifndef __VIMAGE_H__
#define __VIMAGE_H__
#include "vobject.h"
#include <koffice_export.h>
class TQImage;
// all vobjects exist inside a layer.
class KARBONBASE_EXPORT VImage : public VObject
{
public:
VImage( VObject *parent, const TQString &fname = "" );
VImage( const VImage & );
virtual ~VImage();
virtual void draw( VPainter *painter, const KoRect *rect ) const;
virtual void transform( const TQWMatrix& m );
virtual VObject* clone() const;
virtual void save( TQDomElement& element ) const;
virtual void load( const TQDomElement& element );
virtual void accept( VVisitor& visitor );
private:
TQImage *m_image;
TQString m_fname;
TQWMatrix m_matrix;
};
#endif
|