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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
/* This file is part of the KDE libraries
Copyright (c) 2003 thierry lorthiois (lorthioist@wanadoo.fr)
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef _KOWMFREAD_H_
#define _KOWMFREAD_H_
#include <tqpen.h>
#include <tqbrush.h>
#include <tqfont.h>
#include <tqcolor.h>
#include <tqrect.h>
#include <tqregion.h>
#include <tqimage.h>
#include <tqwmatrix.h>
#include <tqstring.h>
#include <tqptrlist.h>
#include <tqpointarray.h>
#include <../kofficecore/koffice_export.h>
class KoWmfReadPrivate;
/**
* KoWmfRead allows the redirection of the actions stored in a WMF file.
* Most of the virtuals functions are compatible with TQPainter format.
*
* How to use :
* inherit this class and define abstract functions
* then create an object and call @ref load() and @ref play()
*
*/
class KOWMF_EXPORT KoWmfRead
{
public:
KoWmfRead();
virtual ~KoWmfRead();
/**
* Load WMF file. Returns true on success.
*/
virtual bool load( const TQString& fileName );
virtual bool load( const TQByteArray& array );
/**
* play the WMF file => call virtuals functions
*/
virtual bool play( );
/**
* Returns true if the metafile is standard / placeable / enhanced / valid
*/
bool isStandard( void ) const;
bool isPlaceable( void ) const;
bool isEnhanced( void ) const;
bool isValid( void ) const;
/**
* Returns the bounding rectangle
* Standard Meta File : return the bounding box from setWindowOrg and setWindowExt (slow)
* Placeable Meta File : return the bounding box from header
* always in logical coordinate
*/
virtual TQRect boundingRect( void ) const;
/**
* Returns the default DotPerInch for placeable meta file,
* return 0 for Standard meta file
*/
int defaultDpi( void ) const;
/**
* Activate debug mode.
* nbFunc : number of functions to draw
* nbFunc!=0 switch to debug mode with trace
*/
void setDebug( int nbFunc );
// -------------------------------------------------------------------------
// A virtual TQPainter : inherit those virtuals functions
// for a good documentation : check TQPainter documentation
virtual bool begin() = 0;
virtual bool end() = 0;
virtual void save() = 0;
virtual void restore() = 0;
// Drawing tools
virtual void setFont( const TQFont & ) = 0;
// the pen : the width of the pen is in logical coordinate
virtual void setPen( const TQPen &p ) = 0;
virtual const TQPen &pen() const = 0;
virtual void setBrush( const TQBrush & ) = 0;
// Drawing attributes/modes
virtual void setBackgroundColor( const TQColor & ) = 0;
virtual void setBackgroundMode( Qt::BGMode ) = 0;
virtual void setRasterOp( TQt::RasterOp ) = 0;
// Change logical Coordinate
// some wmf files call those functions several times in the middle of a drawing
// others doesn't call setWindow* at all
virtual void setWindowOrg( int left, int top ) = 0;
virtual void setWindowExt( int width, int height ) = 0;
// Clipping
// the 'CoordinateMode' parameter is ommitted : always CoordPainter in wmf
// setClipRegion() is often used with save() and restore() => implement all or none
virtual void setClipRegion( const TQRegion & ) = 0;
virtual TQRegion clipRegion() = 0;
// Graphics drawing functions
virtual void moveTo( int x, int y ) = 0;
virtual void lineTo( int x, int y ) = 0;
virtual void drawRect( int x, int y, int w, int h ) = 0;
virtual void drawRoundRect( int x, int y, int w, int h, int = 25, int = 25 ) = 0;
virtual void drawEllipse( int x, int y, int w, int h ) = 0;
virtual void drawArc( int x, int y, int w, int h, int a, int alen ) = 0;
virtual void drawPie( int x, int y, int w, int h, int a, int alen ) = 0;
virtual void drawChord( int x, int y, int w, int h, int a, int alen ) = 0;
virtual void drawPolyline( const TQPointArray &pa ) = 0;
virtual void drawPolygon( const TQPointArray &pa, bool winding=FALSE ) = 0;
// drawPolyPolygon draw the XOR of a list of polygons
// listPa : list of polygons
virtual void drawPolyPolygon( TQPtrList<TQPointArray>& listPa, bool winding=FALSE ) = 0;
virtual void drawImage( int x, int y, const TQImage &, int sx = 0, int sy = 0, int sw = -1, int sh = -1 ) = 0;
// Text drawing functions
// rotation = the degrees of rotation in counterclockwise
// not yet implemented in KWinMetaFile
virtual void drawText( int x, int y, int w, int h, int flags, const TQString &s, double rotation ) = 0;
// matrix transformation : only used for bitmap manipulation
virtual void setWorldMatrix( const TQWMatrix &, bool combine=FALSE ) = 0;
private:
KoWmfReadPrivate *mKwmf;
};
#endif
|