You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
810 B
29 lines
810 B
#ifndef DISPI_DEFINED
|
|
#define DISPI_DEFINED
|
|
|
|
#include "lsdefs.h"
|
|
#include "pdispi.h"
|
|
#include "plsrun.h"
|
|
#include "plschp.h"
|
|
#include "heights.h"
|
|
#include "lstflow.h"
|
|
|
|
typedef struct dispin
|
|
{
|
|
POINT ptPen; /* starting pen position (x,y) */
|
|
PCLSCHP plschp; /* CHP for this display object */
|
|
PLSRUN plsrun; /* client pointer to run */
|
|
|
|
UINT kDispMode; /* display mode, opaque, etc */
|
|
LSTFLOW lstflow; /* text direction and orientation */
|
|
RECT* prcClip; /* clip rectangle (x,y) */
|
|
|
|
BOOL fDrawUnderline; /* Draw underline while displaying */
|
|
BOOL fDrawStrikethrough; /* Draw strikethrough while Displaying */
|
|
|
|
HEIGHTS heightsPres;
|
|
long dup;
|
|
long dupLimUnderline; /* less than dup if trailing spaces */
|
|
} DISPIN;
|
|
|
|
#endif /* !DISPI_DEFINED */
|