
USHORT BorderVectors1[] = {0,0,56,0,56,11,0,11,0,0};
struct Border Border1 = {
	-2,-1,	/* border XY origin relative to container TopLeft */
	2,0,JAM1,	/* front pen, back pen and drawmode */
	5,	/* number of XY vectors */
	BorderVectors1,	/* pointer to XY vectors */
	NULL	/* next border in list */
};

struct IntuiText IText1 = {
	3,0,JAM2,	/* front and back text pens and drawmode */
	18,1,	/* XY origin relative to container TopLeft */
	NULL,	/* font pointer or NULL for defaults */
	"LF",	/* pointer to text */
	NULL	/* next IntuiText structure */
};

struct Gadget Gadget5 = {
	NULL,	/* next gadget */
	82,15,	/* origin XY of hit box relative to window TopLeft */
	53,10,	/* hit box width and height */
	GADGHCOMP,	/* gadget flags */
	RELVERIFY,	/* activation flags */
	BOOLGADGET,	/* gadget type */
	(APTR)&Border1,	/* gadget border or image to be rendered */
	NULL,	/* alternate imagery for selection */
	&IText1,	/* first IntuiText structure */
	0,	/* gadget mutual-exclude long word */
	NULL,	/* SpecialInfo structure for string gadgets */
	5,	/* user-definable data (ordinal gadget number) */
	NULL	/* pointer to user-definable data */
};

USHORT BorderVectors2[] = {0,0,56,0,56,11,0,11,0,0};
struct Border Border2 = {
	-2,-1,	/* border XY origin relative to container TopLeft */
	2,0,JAM1,	/* front pen, back pen and drawmode */
	5,	/* number of XY vectors */
	BorderVectors2,	/* pointer to XY vectors */
	NULL	/* next border in list */
};

struct TextAttr TOPAZ60 = {
	(STRPTR)"topaz.font",
	TOPAZ_SIXTY,0,0
};
struct IntuiText IText2 = {
	3,0,JAM2,	/* front and back text pens and drawmode */
	18,1,	/* XY origin relative to container TopLeft */
	&TOPAZ60,	/* font pointer or NULL for defaults */
	"FF",	/* pointer to text */
	NULL	/* next IntuiText structure */
};

struct Gadget Gadget4 = {
	&Gadget5,	/* next gadget */
	15,15,	/* origin XY of hit box relative to window TopLeft */
	53,10,	/* hit box width and height */
	GADGHCOMP,	/* gadget flags */
	RELVERIFY,	/* activation flags */
	BOOLGADGET,	/* gadget type */
	(APTR)&Border2,	/* gadget border or image to be rendered */
	NULL,	/* alternate imagery for selection */
	&IText2,	/* first IntuiText structure */
	0,	/* gadget mutual-exclude long word */
	NULL,	/* SpecialInfo structure for string gadgets */
	4,	/* user-definable data (ordinal gadget number) */
	NULL	/* pointer to user-definable data */
};

/* Gadget list */

struct NewWindow NewWindowStructure = {
	405,0,	/* window XY origin relative to TopLeft of screen */
	149,31,	/* window width and height */
	2,1,	/* detail and block pens */
	GADGETDOWN+GADGETUP+CLOSEWINDOW,	/* IDCMP flags */
	WINDOWDRAG+WINDOWDEPTH+WINDOWCLOSE,	/* other window flags */
	&Gadget4,	/* first gadget in gadget list */
	NULL,	/* custom CHECKMARK imagery */
	"Printer",	/* window title */
	NULL,	/* custom screen */
	NULL,	/* custom bitmap */
	5,5,	/* minimum width and height */
	640,200,	/* maximum width and height */
	WBENCHSCREEN	/* destination screen type */
};

/* end of PowerWindows source generation */
