2003-10-15 13:44:37 +00:00
|
|
|
|
/*************************************************************************
|
|
|
|
|
*
|
2005-09-07 15:30:11 +00:00
|
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2003-10-15 13:44:37 +00:00
|
|
|
|
*
|
2005-09-07 15:30:11 +00:00
|
|
|
|
* $RCSfile: drawdef.h,v $
|
2003-10-15 13:44:37 +00:00
|
|
|
|
*
|
2005-09-07 15:30:11 +00:00
|
|
|
|
* $Revision: 1.4 $
|
2003-10-15 13:44:37 +00:00
|
|
|
|
*
|
2005-09-07 15:30:11 +00:00
|
|
|
|
* last change: $Author: rt $ $Date: 2005-09-07 16:30:11 $
|
2003-10-15 13:44:37 +00:00
|
|
|
|
*
|
2005-09-07 15:30:11 +00:00
|
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2003-10-15 13:44:37 +00:00
|
|
|
|
*
|
|
|
|
|
*
|
2005-09-07 15:30:11 +00:00
|
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
|
* =============================================
|
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2003-10-15 13:44:37 +00:00
|
|
|
|
*
|
2005-09-07 15:30:11 +00:00
|
|
|
|
* 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.
|
2003-10-15 13:44:37 +00:00
|
|
|
|
*
|
2005-09-07 15:30:11 +00:00
|
|
|
|
* 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.
|
2003-10-15 13:44:37 +00:00
|
|
|
|
*
|
2005-09-07 15:30:11 +00:00
|
|
|
|
* 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
|
2003-10-15 13:44:37 +00:00
|
|
|
|
*
|
|
|
|
|
************************************************************************/
|
|
|
|
|
|
2005-09-07 15:30:11 +00:00
|
|
|
|
/* NAME $Id: drawdef.h,v 1.4 2005-09-07 16:30:11 rt Exp $
|
2003-10-15 13:44:37 +00:00
|
|
|
|
*
|
|
|
|
|
* HISTORY
|
|
|
|
|
* frog - Jan 11, 1999: Created.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef _DRAWDEF_H_
|
|
|
|
|
#define _DRAWDEF_H_
|
|
|
|
|
|
|
|
|
|
#include "hwplib.h"
|
|
|
|
|
|
|
|
|
|
class HWPPara;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Constant for drawing objects
|
|
|
|
|
*/
|
2005-04-04 06:55:49 +00:00
|
|
|
|
enum objtype
|
2003-10-15 13:44:37 +00:00
|
|
|
|
{
|
|
|
|
|
HWPDO_CONTAINER,
|
|
|
|
|
HWPDO_LINE,
|
|
|
|
|
HWPDO_RECT,
|
|
|
|
|
HWPDO_ELLIPSE,
|
|
|
|
|
HWPDO_ARC,
|
|
|
|
|
HWPDO_FREEFORM,
|
|
|
|
|
HWPDO_TEXTBOX,
|
|
|
|
|
HWPDO_CURVE,
|
|
|
|
|
HWPDO_ADVANCED_ELLIPSE,
|
|
|
|
|
HWPDO_ADVANCED_ARC,
|
|
|
|
|
HWPDO_CLOSED_FREEFORM,
|
|
|
|
|
HWPDO_NITEMS
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define HWPDO_PAT_TYPE_BITS 0xFF000000
|
|
|
|
|
#define HWPDO_PAT_STYLE_BITS 0x00FFFFFF
|
|
|
|
|
|
|
|
|
|
#define HWPDO_PAT_SOLID 0x00000000
|
|
|
|
|
#define HWPDO_PAT_WIN_HATCHED 0x01000000
|
|
|
|
|
#define HWPDO_PAT_BITMAP 0x02000000
|
|
|
|
|
|
|
|
|
|
#define HWPDO_COLOR_NONE 0x10000000
|
|
|
|
|
|
|
|
|
|
#define HWPDO_FLAG_ROUND_CORNER 0x00000001
|
|
|
|
|
#define HWPDO_FLAG_DRAW_PIE 0x00000002
|
|
|
|
|
#define HWPDO_FLAG_SEMICIRCLE 0x00000004
|
|
|
|
|
#define HWPDO_FLAG_SCALE_BITMAP 0x00000008
|
|
|
|
|
|
|
|
|
|
#define HWPDO_FLAG_LOCAL_BITS 0x0000ffff
|
|
|
|
|
#define HWPDO_FLAG_PROPERTY_BITS 0x00ff0000
|
|
|
|
|
|
|
|
|
|
#define HWPDO_FLAG_GRADATION 0x00010000
|
|
|
|
|
#define HWPDO_FLAG_ROTATION 0x00020000
|
|
|
|
|
#define HWPDO_FLAG_BITMAP 0x00040000
|
|
|
|
|
#define HWPDO_FLAG_AS_TEXTBOX 0x00080000
|
|
|
|
|
#define HWPDO_FLAG_WATERMARK 0x00100000
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @short Basic properties for drawing objects
|
|
|
|
|
*
|
|
|
|
|
* The order of pstyle, hstyle and tstyle is important.
|
|
|
|
|
* @see LineObject
|
|
|
|
|
*/
|
|
|
|
|
struct BAREHWPDOProperty
|
|
|
|
|
{
|
|
|
|
|
int line_pstyle;
|
|
|
|
|
int line_hstyle;
|
|
|
|
|
int line_tstyle;
|
|
|
|
|
DWORD line_color;
|
|
|
|
|
hunit line_width;
|
|
|
|
|
DWORD fill_color;
|
|
|
|
|
uint pattern_type;
|
|
|
|
|
DWORD pattern_color;
|
|
|
|
|
hunit hmargin;
|
|
|
|
|
hunit vmargin;
|
|
|
|
|
uint flag;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @short Gradation properties for drawing object
|
|
|
|
|
*/
|
|
|
|
|
struct GradationProperty
|
|
|
|
|
{
|
|
|
|
|
int fromcolor;
|
|
|
|
|
int tocolor;
|
|
|
|
|
int gstyle;
|
|
|
|
|
int angle;
|
|
|
|
|
int center_x;
|
|
|
|
|
int center_y;
|
|
|
|
|
int nstep;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @short Bitmap properties for drawing object
|
|
|
|
|
*/
|
|
|
|
|
struct BitmapProperty
|
|
|
|
|
{
|
|
|
|
|
ZZPoint offset1;
|
|
|
|
|
ZZPoint offset2;
|
|
|
|
|
char szPatternFile[260 + 1];
|
|
|
|
|
char pictype;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @short Rotation properties for drawing object
|
|
|
|
|
*/
|
|
|
|
|
struct RotationProperty
|
|
|
|
|
{
|
|
|
|
|
int rot_originx;
|
|
|
|
|
int rot_originy;
|
|
|
|
|
ZZParall parall;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @short All properties for drawing object
|
|
|
|
|
*/
|
|
|
|
|
struct HWPDOProperty
|
|
|
|
|
{
|
2005-02-16 17:13:50 +00:00
|
|
|
|
int line_pstyle; /* <20><> <20>߰<EFBFBD> <20><><EFBFBD><EFBFBD> */
|
|
|
|
|
int line_hstyle; /* <20><> ȭ<><C8AD>ǥ <20><><EFBFBD><EFBFBD> */
|
|
|
|
|
int line_tstyle; /* <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> */
|
2003-10-15 13:44:37 +00:00
|
|
|
|
DWORD line_color;
|
|
|
|
|
hunit line_width;
|
|
|
|
|
DWORD fill_color;
|
|
|
|
|
uint pattern_type;
|
|
|
|
|
DWORD pattern_color;
|
|
|
|
|
hunit hmargin;
|
|
|
|
|
hunit vmargin;
|
|
|
|
|
uint flag;
|
|
|
|
|
|
|
|
|
|
/* Lotation properties */
|
|
|
|
|
int rot_originx;
|
|
|
|
|
int rot_originy;
|
|
|
|
|
ZZParall parall;
|
|
|
|
|
|
|
|
|
|
/* Gradation properties */
|
|
|
|
|
|
|
|
|
|
int fromcolor;
|
|
|
|
|
int tocolor;
|
|
|
|
|
int gstyle;
|
|
|
|
|
int angle;
|
|
|
|
|
int center_x;
|
|
|
|
|
int center_y;
|
|
|
|
|
int nstep;
|
|
|
|
|
|
|
|
|
|
/* Watermark */
|
|
|
|
|
int luminance;
|
|
|
|
|
int contrast;
|
|
|
|
|
int greyscale;
|
|
|
|
|
|
|
|
|
|
/* As TextBox */
|
|
|
|
|
HWPPara *pPara;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ZZPoint offset1;
|
|
|
|
|
ZZPoint offset2;
|
|
|
|
|
char szPatternFile[MAX_PATH + 1];
|
|
|
|
|
char pictype;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @short Line Object
|
|
|
|
|
*/
|
|
|
|
|
struct HWPDOLine
|
|
|
|
|
{
|
|
|
|
|
uint flip;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @short Polygon or Polyline Object
|
|
|
|
|
*/
|
|
|
|
|
struct HWPDOFreeForm
|
|
|
|
|
{
|
|
|
|
|
int npt;
|
|
|
|
|
ZZPoint *pt;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @short Textbox Object
|
|
|
|
|
*/
|
|
|
|
|
struct HWPDOTextBox
|
|
|
|
|
{
|
|
|
|
|
HWPPara *h;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @short Arc Object
|
|
|
|
|
*/
|
|
|
|
|
struct HWPDOArc
|
|
|
|
|
{
|
|
|
|
|
ZZPoint radial[2];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @short Common header for drawing object
|
|
|
|
|
*/
|
|
|
|
|
struct HWPDrawingObject
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* type of drawing object
|
|
|
|
|
*/
|
|
|
|
|
int type;
|
|
|
|
|
/**
|
|
|
|
|
* offset from origin of current group
|
|
|
|
|
*/
|
|
|
|
|
ZZPoint offset;
|
|
|
|
|
/**
|
|
|
|
|
* offset from origin of drawing object
|
|
|
|
|
*/
|
|
|
|
|
ZZPoint offset2;
|
|
|
|
|
ZZSize extent;
|
|
|
|
|
/**
|
|
|
|
|
* rectangle with consideration of line width
|
|
|
|
|
*/
|
|
|
|
|
ZZRect vrect;
|
|
|
|
|
HWPDOProperty property;
|
|
|
|
|
union
|
|
|
|
|
{
|
|
|
|
|
HWPDOLine line_arc;
|
|
|
|
|
HWPDOFreeForm freeform;
|
|
|
|
|
HWPDOTextBox textbox;
|
|
|
|
|
/**
|
|
|
|
|
* extended from hwpw96
|
|
|
|
|
*/
|
|
|
|
|
HWPDOArc arc;
|
|
|
|
|
}
|
|
|
|
|
u;
|
|
|
|
|
struct HWPDrawingObject *next;
|
|
|
|
|
/**
|
|
|
|
|
* This exists for container object
|
|
|
|
|
*/
|
|
|
|
|
struct HWPDrawingObject *child;
|
|
|
|
|
int index;
|
|
|
|
|
HWPDrawingObject();
|
|
|
|
|
~HWPDrawingObject();
|
|
|
|
|
};
|
|
|
|
|
#endif /* _DRAWDEF_H_ */
|