/* window.h (ProjMot)
 * ~~~~~~~~~~~~~~~~~~
 * This is struct for main graph window (Win)
 * © Copyright 1991 Christian E. Hopps (can you legally copyright
 * a NewWindow structure :-) )
*/ 


struct NewWindow NewWindowStructure1 = {
	0,0,	/* window XY origin relative to TopLeft of screen */
	640,200,	/* window width and height */
	0,1,	/* detail and block pens */
	CLOSEWINDOW+NEWSIZE+MOUSEBUTTONS,	/* IDCMP flags */
	RMBTRAP+WINDOWDRAG+WINDOWSIZING+WINDOWDEPTH+WINDOWCLOSE+GIMMEZEROZERO+ACTIVATE+SMART_REFRESH,	/* other window flags */
	NULL,	/* first gadget in gadget list */
	NULL,	/* custom CHECKMARK imagery */
	"Graph",	/* window title */
	NULL,	/* custom screen pointer */
	NULL,	/* custom bitmap */
	50,30,	/* minimum width and height */
	-1,-1,	/* maximum width and height */
	WBENCHSCREEN	/* destination screen type */
};
