home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fish 'n' More 2
/
fishmore-publicdomainlibraryvol.ii1991xetec.iso
/
dirs
/
projmot_453.lzh
/
ProjMot
/
src
/
window.h
< prev
next >
Wrap
C/C++ Source or Header
|
1991-02-18
|
835b
|
24 lines
/* 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 */
};