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
|
/************************************************************************/
/* */
/* Drawing of metafiles (WMF,PICT) */
/* */
/************************************************************************/
# include <appGuiBase.h>
# include <bitmap.h>
# include <utilDocFont.h>
# include <utilPostscriptFace.h>
# include <appDraw.h>
# include <appImage.h>
/************************************************************************/
/* */
/* Routine declarations. */
/* */
/************************************************************************/
extern int appMetafileDrawRoundRectX11( AppDrawingData * add,
int x0,
int y0,
int x1,
int y1,
int w,
int h,
int fill,
int borders,
APP_COLOR_RGB * fillColor,
APP_COLOR_RGB * borderColor );
extern void appMetafilePolygonPathPs( SimpleOutputStream * sos,
const APP_POINT * points,
int count );
extern void appMetafileRoundRectPathPs( SimpleOutputStream * sos,
int x0,
int y0,
int x1,
int y1,
int w,
int h );
extern void appMetafileRectPathPs( SimpleOutputStream * sos,
int x0,
int y0,
int x1,
int y1 );
extern int appMetafileStartPatternFillPs( SimpleOutputStream * sos,
const AppBitmapImage * abi );
|