summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwpsdwdrawheader.hxx
blob: 13696f453a74205f030862e62091e46dc9d11cbd (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
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
 *
 *  The Contents of this file are made available subject to the terms of
 *  either of the following licenses
 *
 *         - GNU Lesser General Public License Version 2.1
 *         - Sun Industry Standards Source License Version 1.1
 *
 *  Sun Microsystems Inc., October, 2000
 *
 *  GNU Lesser General Public License Version 2.1
 *  =============================================
 *  Copyright 2000 by Sun Microsystems, Inc.
 *  901 San Antonio Road, Palo Alto, CA 94303, USA
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License version 2.1, 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
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 *  MA  02111-1307  USA
 *
 *
 *  Sun Industry Standards Source License Version 1.1
 *  =================================================
 *  The contents of this file are subject to the Sun Industry Standards
 *  Source License Version 1.1 (the "License"); You may not use this file
 *  except in compliance with the License. You may obtain a copy of the
 *  License at http://www.openoffice.org/license.html.
 *
 *  Software provided under this License is provided on an "AS IS" basis,
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 *  See the License for the specific provisions governing your rights and
 *  obligations concerning the Software.
 *
 *  The Initial Developer of the Original Code is: IBM Corporation
 *
 *  Copyright: 2008 by IBM Corporation
 *
 *  All Rights Reserved.
 *
 *  Contributor(s): _______________________________________
 *
 *
 ************************************************************************/
/**
 * @file
 * For LWP filter architecture prototype
 * The file declares structures and enums used by Lwp-Drawing-Module
 */

#ifndef INCLUDED_LOTUSWORDPRO_SOURCE_FILTER_LWPSDWDRAWHEADER_HXX
#define INCLUDED_LOTUSWORDPRO_SOURCE_FILTER_LWPSDWDRAWHEADER_HXX

#include <config_lgpl.h>
#include <sal/types.h>

const sal_uInt8 DRAW_FACESIZE = 32;
const double THRESHOLD = 0.0001;

enum DrawObjectType
{
    OT_UNDEFINED   = 0,

    OT_SELECT      = 0,
    OT_HAND        = 1,
    OT_LINE        = 2,
    OT_PERPLINE    = 3,
    OT_POLYLINE    = 4,
    OT_POLYGON     = 5,
    OT_RECT        = 6,
    OT_SQUARE      = 7,
    OT_RNDRECT     = 8,
    OT_RNDSQUARE   = 9,
    OT_OVAL        = 10,
    OT_CIRCLE      = 11,
    OT_ARC         = 12,
    OT_TEXT        = 13,
    OT_GROUP       = 14,
    OT_CHART       = 15,
    OT_METAFILE    = 16,
    OT_METAFILEIMG = 17,
    OT_BITMAP      = 18,
    OT_TEXTART     = 19,
    OT_BIGBITMAP   = 20
};

enum DrawFillType
{
    FT_TRANSPARENT    = 0,
    FT_VLTGRAY        = 1,
    FT_LTGRAY         = 2,
    FT_GRAY           = 3,
    FT_DKGRAY         = 4,
    FT_SOLID          = 5,
    FT_HORZHATCH      = 6,
    FT_VERTHATCH      = 7,
    FT_FDIAGHATCH     = 8,
    FT_BDIAGHATCH     = 9,
    FT_CROSSHATCH     = 10,
    FT_DIAGCROSSHATCH = 11,
    FT_PATTERN        = 12
};

enum DrawLineStyle
{
    LS_SOLID       = 0,
    LS_DASH        = 1,
    LS_DOT         = 2,
    LS_DASHDOT     = 3,
    LS_DASHDOTDOT  = 4,
    LS_NULL        = 5,
    LS_INSIDEFRAME = 6
};

// Text Attributes as stored in Draw files V1.2 and earlier
enum DrawTextAttribute
{
    TA_BOLD           = 0x0001, /* bolded font */
    TA_ITALIC         = 0x0002, /* italic font */
    TA_UNDERLINE      = 0x0004, /* underlined font */
    TA_WORDUNDERLINE  = 0x0008, /* broken underline */
    TA_ALLCAPS        = 0x0010, /* capitalized font */
    TA_SMALLCAPS      = 0x0020, /* all small capital letters */
    TA_DOUBLEUNDER    = 0x0040, /* double underline */
    TA_STRIKETHRU     = 0x0080, /* strikethru */
    TA_SUPERSCRIPT    = 0x0100, /* superscript */
    TA_SUBSCRIPT      = 0x0200  /* subscript */
};

enum DrawArrowHead
{
    AH_ARROW_NONE = 0,
    AH_ARROW_FULLARROW = 1,
    AH_ARROW_HALFARROW = 2,
    AH_ARROW_LINEARROW = 3,
    AH_ARROW_INVFULLARROW = 4,
    AH_ARROW_INVHALFARROW = 5,
    AH_ARROW_INVLINEARROW = 6,
    AH_ARROW_TEE = 7,
    AH_ARROW_SQUARE = 8,
    AH_ARROW_CIRCLE = 9
};

struct SdwPoint
{
    sal_Int16 x;
    sal_Int16 y;
    SdwPoint()
        : x(0)
        , y(0)
    {
    }
};

struct SdwColor
{
    sal_uInt8 nR;
    sal_uInt8 nG;
    sal_uInt8 nB;
    sal_uInt8 unused;
    SdwColor()
        : nR(0)
        , nG(0)
        , nB(0)
        , unused(0)
    {
    }
};

struct SdwClosedObjStyleRec
{
    sal_uInt8 nLineWidth = 0;
    sal_uInt8 nLineStyle = 0;
    SdwColor aPenColor;
    SdwColor aForeColor;
    SdwColor aBackColor;
    sal_uInt16 nFillType = 0;
    sal_uInt8 pFillPattern[8] = {};
    SdwClosedObjStyleRec() = default;
};

struct SdwDrawObjHeader
{
    sal_uInt16 nRecLen;
    sal_Int16 nLeft;
    sal_Int16 nTop;
    sal_Int16 nRight;
    sal_Int16 nBottom;
    SdwDrawObjHeader()
        : nRecLen(0)
        , nLeft(0)
        , nTop(0)
        , nRight(0)
        , nBottom(0)
    {
    }
};

struct SdwLineRecord
{
    sal_Int16 nStartX;
    sal_Int16 nStartY;
    sal_Int16 nEndX;
    sal_Int16 nEndY;
    sal_uInt8 nLineWidth;
    sal_uInt8 nLineEnd;
    sal_uInt8 nLineStyle;
    SdwColor aPenColor;
    SdwLineRecord()
        : nStartX(0)
        , nStartY(0)
        , nEndX(0)
        , nEndY(0)
        , nLineWidth(0)
        , nLineEnd(0)
        , nLineStyle(0)
    {
    }
};

struct SdwPolyLineRecord
{
    sal_uInt8 nLineWidth;
    sal_uInt8 nLineEnd;
    sal_uInt8 nLineStyle;
    SdwColor aPenColor;
    sal_uInt16 nNumPoints;
    SdwPolyLineRecord()
        : nLineWidth(0)
        , nLineEnd(0)
        , nLineStyle(0)
        , nNumPoints(0)
    {
    }
};

struct SdwArcRecord
{
    sal_uInt8 nLineWidth;
    sal_uInt8 nLineEnd;
    sal_uInt8 nLineStyle;
    SdwColor aPenColor;
    SdwArcRecord()
        : nLineWidth(0)
        , nLineEnd(0)
        , nLineStyle(0)
    {
    }
};

struct SdwTextBoxRecord
{
    sal_Int16 nTextWidth;
    sal_Int16 nTextHeight;
    sal_Int16 nTextSize;
    SdwColor aTextColor;
    sal_uInt8 tmpTextFaceName[DRAW_FACESIZE];
    sal_uInt16 nTextAttrs;
    sal_uInt16 nTextCharacterSet;
    sal_Int16 nTextRotation;
    sal_Int16 nTextExtraSpacing;
    sal_uInt8* pTextString;
    SdwTextBoxRecord()
        : nTextWidth(0)
        , nTextHeight(0)
        , nTextSize(0)
        , tmpTextFaceName{}
        , nTextAttrs(0)
        , nTextCharacterSet(0)
        , nTextRotation(0)
        , nTextExtraSpacing(0)
        , pTextString(nullptr)
    {
    }
};

struct SdwFMPATH
{
    sal_uInt16 n;
    SdwPoint* pPts;
    SdwFMPATH()
        : n(0)
        , pPts(nullptr)
    {
    }
};

struct SdwTextArt : public SdwTextBoxRecord
{
    sal_uInt8 nIndex;
    sal_Int16 nRotation;
    sal_uInt16 nTextLen;
    SdwFMPATH aPath[2];
    SdwTextArt()
        : nIndex(0)
        , nRotation(0)
        , nTextLen(0)
    {
    }
};

struct SdwBmpRecord
{
    sal_uInt16 nTranslation;
    sal_uInt16 nRotation;
    sal_uInt32 nFileSize;
    SdwBmpRecord()
        : nTranslation(0)
        , nRotation(0)
        , nFileSize(0)
    {
    }
};

struct BmpInfoHeader
{
    sal_uInt32 nHeaderLen;
    sal_uInt16 nWidth;
    sal_uInt16 nHeight;
    sal_uInt16 nPlanes;
    sal_uInt16 nBitCount;
};

struct BmpInfoHeader2
{
    sal_uInt32 nHeaderLen;
    sal_uInt32 nWidth;
    sal_uInt32 nHeight;
    sal_uInt16 nPlanes;
    sal_uInt16 nBitCount;
};

struct DrawingOffsetAndScale
{
    double fOffsetX;
    double fOffsetY;
    double fScaleX;
    double fScaleY;
    double fLeftMargin;
    double fTopMargin;

    DrawingOffsetAndScale()
    {
        fOffsetX = 0.00;
        fOffsetY = 0.00;
        fScaleX = 1.00;
        fScaleY = 1.00;
        fLeftMargin = 0.00;
        fTopMargin = 0.00;
    }
};

#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */