home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 066.lha / Zterm / termc.pw < prev    next >
Text File  |  1986-11-20  |  18KB  |  498 lines

  1.  
  2. struct IntuiText IText1 = {
  3.     3,1,COMPLEMENT,    /* front and back text pens and drawmode */
  4.     20,1,    /* XY origin relative to container TopLeft */
  5.     NULL,    /* font pointer or NULL for defaults */
  6.     "CRC-16",    /* pointer to text */
  7.     NULL    /* next IntuiText structure */
  8. };
  9.  
  10. struct MenuItem MenuItem4 = {
  11.     NULL,    /* next MenuItem structure */
  12.     0,33,    /* XY of Item hitbox relative to TopLeft of parent hitbox */
  13.     140,10,    /* hit box width and height */
  14.     CHECKIT+ITEMTEXT+ITEMENABLED+HIGHCOMP,    /* Item flags */
  15.     0,    /* each bit mutually-excludes a same-level Item */
  16.     (APTR)&IText1,    /* Item render  (IntuiText or Image or NULL) */
  17.     NULL,    /* Select render */
  18.     NULL,    /* alternate command-key */
  19.     NULL,    /* SubItem list */
  20.     0xFFFF    /* filled in by Intuition for drag selections */
  21. };
  22.  
  23. struct IntuiText IText2 = {
  24.     3,1,COMPLEMENT,    /* front and back text pens and drawmode */
  25.     20,1,    /* XY origin relative to container TopLeft */
  26.     NULL,    /* font pointer or NULL for defaults */
  27.     "Checksum",    /* pointer to text */
  28.     NULL    /* next IntuiText structure */
  29. };
  30.  
  31. struct MenuItem MenuItem3 = {
  32.     &MenuItem4,    /* next MenuItem structure */
  33.     0,22,    /* XY of Item hitbox relative to TopLeft of parent hitbox */
  34.     140,10,    /* hit box width and height */
  35.     CHECKIT+ITEMTEXT+ITEMENABLED+HIGHCOMP,    /* Item flags */
  36.     0,    /* each bit mutually-excludes a same-level Item */
  37.     (APTR)&IText2,    /* Item render  (IntuiText or Image or NULL) */
  38.     NULL,    /* Select render */
  39.     NULL,    /* alternate command-key */
  40.     NULL,    /* SubItem list */
  41.     0xFFFF    /* filled in by Intuition for drag selections */
  42. };
  43.  
  44. struct IntuiText IText3 = {
  45.     3,1,COMPLEMENT,    /* front and back text pens and drawmode */
  46.     20,1,    /* XY origin relative to container TopLeft */
  47.     NULL,    /* font pointer or NULL for defaults */
  48.     "1024 Byte Block",    /* pointer to text */
  49.     NULL    /* next IntuiText structure */
  50. };
  51.  
  52. struct MenuItem MenuItem2 = {
  53.     &MenuItem3,    /* next MenuItem structure */
  54.     0,11,    /* XY of Item hitbox relative to TopLeft of parent hitbox */
  55.     140,10,    /* hit box width and height */
  56.     CHECKIT+ITEMTEXT+ITEMENABLED+HIGHCOMP,    /* Item flags */
  57.     0,    /* each bit mutually-excludes a same-level Item */
  58.     (APTR)&IText3,    /* Item render  (IntuiText or Image or NULL) */
  59.     NULL,    /* Select render */
  60.     NULL,    /* alternate command-key */
  61.     NULL,    /* SubItem list */
  62.     0xFFFF    /* filled in by Intuition for drag selections */
  63. };
  64.  
  65. struct IntuiText IText4 = {
  66.     3,1,COMPLEMENT,    /* front and back text pens and drawmode */
  67.     20,1,    /* XY origin relative to container TopLeft */
  68.     NULL,    /* font pointer or NULL for defaults */
  69.     "128 Byte Block",    /* pointer to text */
  70.     NULL    /* next IntuiText structure */
  71. };
  72.  
  73. struct MenuItem MenuItem1 = {
  74.     &MenuItem2,    /* next MenuItem structure */
  75.     0,0,    /* XY of Item hitbox relative to TopLeft of parent hitbox */
  76.     140,10,    /* hit box width and height */
  77.     CHECKIT+ITEMTEXT+ITEMENABLED+HIGHCOMP,    /* Item flags */
  78.     0,    /* each bit mutually-excludes a same-level Item */
  79.     (APTR)&IText4,    /* Item render  (IntuiText or Image or NULL) */
  80.     NULL,    /* Select render */
  81.     NULL,    /* alternate command-key */
  82.     NULL,    /* SubItem list */
  83.     0xFFFF    /* filled in by Intuition for drag selections */
  84. };
  85.  
  86. struct Menu Menu4 = {
  87.     NULL,    /* next Menu structure */
  88.     297,0,    /* XY origin of Menu hit box relative to screen TopLeft */
  89.     120,0,    /* Menu hit box width and height */
  90.     MENUENABLED,    /* Menu flags */
  91.     "Xfer Options",    /* text of Menu name */
  92.     &MenuItem1    /* MenuItem linked list pointer */
  93. };
  94.  
  95. struct IntuiText IText5 = {
  96.     3,1,COMPLEMENT,    /* front and back text pens and drawmode */
  97.     1,1,    /* XY origin relative to container TopLeft */
  98.     NULL,    /* font pointer or NULL for defaults */
  99.     "Send Text",    /* pointer to text */
  100.     NULL    /* next IntuiText structure */
  101. };
  102.  
  103. struct MenuItem MenuItem11 = {
  104.     NULL,    /* next MenuItem structure */
  105.     0,66,    /* XY of Item hitbox relative to TopLeft of parent hitbox */
  106.     97,10,    /* hit box width and height */
  107.     ITEMTEXT+ITEMENABLED+HIGHCOMP,    /* Item flags */
  108.     0,    /* each bit mutually-excludes a same-level Item */
  109.     (APTR)&IText5,    /* Item render  (IntuiText or Image or NULL) */
  110.     NULL,    /* Select render */
  111.     NULL,    /* alternate command-key */
  112.     NULL,    /* SubItem list */
  113.     0xFFFF    /* filled in by Intuition for drag selections */
  114. };
  115.  
  116. struct IntuiText IText6 = {
  117.     3,1,COMPLEMENT,    /* front and back text pens and drawmode */
  118.     1,1,    /* XY origin relative to container TopLeft */
  119.     NULL,    /* font pointer or NULL for defaults */
  120.     "Capture End",    /* pointer to text */
  121.     NULL    /* next IntuiText structure */
  122. };
  123.  
  124. struct MenuItem MenuItem10 = {
  125.     &MenuItem11,    /* next MenuItem structure */
  126.     0,55,    /* XY of Item hitbox relative to TopLeft of parent hitbox */
  127.     97,10,    /* hit box width and height */
  128.     ITEMTEXT+ITEMENABLED+HIGHCOMP,    /* Item flags */
  129.     0,    /* each bit mutually-excludes a same-level Item */
  130.     (APTR)&IText6,    /* Item render  (IntuiText or Image or NULL) */
  131.     NULL,    /* Select render */
  132.     NULL,    /* alternate command-key */
  133.     NULL,    /* SubItem list */
  134.     0xFFFF    /* filled in by Intuition for drag selections */
  135. };
  136.  
  137. struct IntuiText IText7 = {
  138.     3,1,COMPLEMENT,    /* front and back text pens and drawmode */
  139.     1,1,    /* XY origin relative to container TopLeft */
  140.     NULL,    /* font pointer or NULL for defaults */
  141.     "Capture Text",    /* pointer to text */
  142.     NULL    /* next IntuiText structure */
  143. };
  144.  
  145. struct MenuItem MenuItem9 = {
  146.     &MenuItem10,    /* next MenuItem structure */
  147.     0,44,    /* XY of Item hitbox relative to TopLeft of parent hitbox */
  148.     97,10,    /* hit box width and height */
  149.     ITEMTEXT+ITEMENABLED+HIGHCOMP,    /* Item flags */
  150.     0,    /* each bit mutually-excludes a same-level Item */
  151.     (APTR)&IText7,    /* Item render  (IntuiText or Image or NULL) */
  152.     NULL,    /* Select render */
  153.     NULL,    /* alternate command-key */
  154.     NULL,    /* SubItem list */
  155.     0xFFFF    /* filled in by Intuition for drag selections */
  156. };
  157.  
  158. struct IntuiText IText8 = {
  159.     3,1,COMPLEMENT,    /* front and back text pens and drawmode */
  160.     1,1,    /* XY origin relative to container TopLeft */
  161.     NULL,    /* font pointer or NULL for defaults */
  162.     "Abort Xmodem",    /* pointer to text */
  163.     NULL    /* next IntuiText structure */
  164. };
  165.  
  166. struct MenuItem MenuItem8 = {
  167.     &MenuItem9,    /* next MenuItem structure */
  168.     0,33,    /* XY of Item hitbox relative to TopLeft of parent hitbox */
  169.     97,10,    /* hit box width and height */
  170.     ITEMTEXT+ITEMENABLED+HIGHCOMP,    /* Item flags */
  171.     0,    /* each bit mutually-excludes a same-level Item */
  172.     (APTR)&IText8,    /* Item render  (IntuiText or Image or NULL) */
  173.     NULL,    /* Select render */
  174.     NULL,    /* alternate command-key */
  175.     NULL,    /* SubItem list */
  176.     0xFFFF    /* filled in by Intuition for drag selections */
  177. };
  178.  
  179. struct IntuiText IText9 = {
  180.     3,1,COMPLEMENT,    /* front and back text pens and drawmode */
  181.     1,1,    /* XY origin relative to container TopLeft */
  182.     NULL,    /* font pointer or NULL for defaults */
  183.     "Recv Xmodem",    /* pointer to text */
  184.     NULL    /* next IntuiText structure */
  185. };
  186.  
  187. struct MenuItem MenuItem7 = {
  188.     &MenuItem8,    /* next MenuItem structure */
  189.     0,22,    /* XY of Item hitbox relative to TopLeft of parent hitbox */
  190.     97,10,    /* hit box width and height */
  191.     ITEMTEXT+ITEMENABLED+HIGHCOMP,    /* Item flags */
  192.     0,    /* each bit mutually-excludes a same-level Item */
  193.     (APTR)&IText9,    /* Item render  (IntuiText or Image or NULL) */
  194.     NULL,    /* Select render */
  195.     NULL,    /* alternate command-key */
  196.     NULL,    /* SubItem list */
  197.     0xFFFF    /* filled in by Intuition for drag selections */
  198. };
  199.  
  200. struct IntuiText IText10 = {
  201.     3,1,COMPLEMENT,    /* front and back text pens and drawmode */
  202.     1,1,    /* XY origin relative to container TopLeft */
  203.     NULL,    /* font pointer or NULL for defaults */
  204.     "Send Multi",    /* pointer to text */
  205.     NULL    /* next IntuiText structure */
  206. };
  207.  
  208. struct MenuItem MenuItem6 = {
  209.     &MenuItem7,    /* next MenuItem structure */
  210.     0,11,    /* XY of Item hitbox relative to TopLeft of parent hitbox */
  211.     97,10,    /* hit box width and height */
  212.     ITEMTEXT+ITEMENABLED+HIGHCOMP,    /* Item flags */
  213.     0,    /* each bit mutually-excludes a same-level Item */
  214.     (APTR)&IText10,    /* Item render  (IntuiText or Image or NULL) */
  215.     NULL,    /* Select render */
  216.     NULL,    /* alternate command-key */
  217.     NULL,    /* SubItem list */
  218.     0xFFFF    /* filled in by Intuition for drag selections */
  219. };
  220.  
  221. struct IntuiText IText11 = {
  222.     3,1,COMPLEMENT,    /* front and back text pens and drawmode */
  223.     1,1,    /* XY origin relative to container TopLeft */
  224.     NULL,    /* font pointer or NULL for defaults */
  225.     "Send Xmodem",    /* pointer to text */
  226.     NULL    /* next IntuiText structure */
  227. };
  228.  
  229. struct MenuItem MenuItem5 = {
  230.     &MenuItem6,    /* next MenuItem structure */
  231.     0,0,    /* XY of Item hitbox relative to TopLeft of parent hitbox */
  232.     97,10,    /* hit box width and height */
  233.     ITEMTEXT+ITEMENABLED+HIGHCOMP,    /* Item flags */
  234.     0,    /* each bit mutually-excludes a same-level Item */
  235.     (APTR)&IText11,    /* Item render  (IntuiText or Image or NULL) */
  236.     NULL,    /* Select render */
  237.     NULL,    /* alternate command-key */
  238.     NULL,    /* SubItem list */
  239.     0xFFFF    /* filled in by Intuition for drag selections */
  240. };
  241.  
  242. struct Menu Menu3 = {
  243.     &Menu4,    /* next Menu structure */
  244.     189,0,    /* XY origin of Menu hit box relative to screen TopLeft */
  245.     102,0,    /* Menu hit box width and height */
  246.     MENUENABLED,    /* Menu flags */
  247.     "File Stuff",    /* text of Menu name */
  248.     &MenuItem5    /* MenuItem linked list pointer */
  249. };
  250.  
  251. struct IntuiText IText12 = {
  252.     3,1,COMPLEMENT,    /* front and back text pens and drawmode */
  253.     20,1,    /* XY origin relative to container TopLeft */
  254.     NULL,    /* font pointer or NULL for defaults */
  255.     "31250 Baud",    /* pointer to text */
  256.     NULL    /* next IntuiText structure */
  257. };
  258.  
  259. struct MenuItem MenuItem19 = {
  260.     NULL,    /* next MenuItem structure */
  261.     0,77,    /* XY of Item hitbox relative to TopLeft of parent hitbox */
  262.     100,10,    /* hit box width and height */
  263.     CHECKIT+ITEMTEXT+ITEMENABLED+HIGHCOMP,    /* Item flags */
  264.     0,    /* each bit mutually-excludes a same-level Item */
  265.     (APTR)&IText12,    /* Item render  (IntuiText or Image or NULL) */
  266.     NULL,    /* Select render */
  267.     NULL,    /* alternate command-key */
  268.     NULL,    /* SubItem list */
  269.     0xFFFF    /* filled in by Intuition for drag selections */
  270. };
  271.  
  272. struct IntuiText IText13 = {
  273.     3,1,COMPLEMENT,    /* front and back text pens and drawmode */
  274.     20,1,    /* XY origin relative to container TopLeft */
  275.     NULL,    /* font pointer or NULL for defaults */
  276.     "19200 Baud",    /* pointer to text */
  277.     NULL    /* next IntuiText structure */
  278. };
  279.  
  280. struct MenuItem MenuItem18 = {
  281.     &MenuItem19,    /* next MenuItem structure */
  282.     0,66,    /* XY of Item hitbox relative to TopLeft of parent hitbox */
  283.     100,10,    /* hit box width and height */
  284.     CHECKIT+ITEMTEXT+ITEMENABLED+HIGHCOMP,    /* Item flags */
  285.     0,    /* each bit mutually-excludes a same-level Item */
  286.     (APTR)&IText13,    /* Item render  (IntuiText or Image or NULL) */
  287.     NULL,    /* Select render */
  288.     NULL,    /* alternate command-key */
  289.     NULL,    /* SubItem list */
  290.     0xFFFF    /* filled in by Intuition for drag selections */
  291. };
  292.  
  293. struct IntuiText IText14 = {
  294.     3,1,COMPLEMENT,    /* front and back text pens and drawmode */
  295.     20,1,    /* XY origin relative to container TopLeft */
  296.     NULL,    /* font pointer or NULL for defaults */
  297.     "9600 Baud",    /* pointer to text */
  298.     NULL    /* next IntuiText structure */
  299. };
  300.  
  301. struct MenuItem MenuItem17 = {
  302.     &MenuItem18,    /* next MenuItem structure */
  303.     0,55,    /* XY of Item hitbox relative to TopLeft of parent hitbox */
  304.     100,10,    /* hit box width and height */
  305.     CHECKIT+ITEMTEXT+ITEMENABLED+HIGHCOMP,    /* Item flags */
  306.     0,    /* each bit mutually-excludes a same-level Item */
  307.     (APTR)&IText14,    /* Item render  (IntuiText or Image or NULL) */
  308.     NULL,    /* Select render */
  309.     NULL,    /* alternate command-key */
  310.     NULL,    /* SubItem list */
  311.     0xFFFF    /* filled in by Intuition for drag selections */
  312. };
  313.  
  314. struct IntuiText IText15 = {
  315.     3,1,COMPLEMENT,    /* front and back text pens and drawmode */
  316.     20,1,    /* XY origin relative to container TopLeft */
  317.     NULL,    /* font pointer or NULL for defaults */
  318.     "4800 Baud",    /* pointer to text */
  319.     NULL    /* next IntuiText structure */
  320. };
  321.  
  322. struct MenuItem MenuItem16 = {
  323.     &MenuItem17,    /* next MenuItem structure */
  324.     0,44,    /* XY of Item hitbox relative to TopLeft of parent hitbox */
  325.     100,10,    /* hit box width and height */
  326.     CHECKIT+ITEMTEXT+ITEMENABLED+HIGHCOMP,    /* Item flags */
  327.     0,    /* each bit mutually-excludes a same-level Item */
  328.     (APTR)&IText15,    /* Item render  (IntuiText or Image or NULL) */
  329.     NULL,    /* Select render */
  330.     NULL,    /* alternate command-key */
  331.     NULL,    /* SubItem list */
  332.     0xFFFF    /* filled in by Intuition for drag selections */
  333. };
  334.  
  335. struct IntuiText IText16 = {
  336.     3,1,COMPLEMENT,    /* front and back text pens and drawmode */
  337.     20,1,    /* XY origin relative to container TopLeft */
  338.     NULL,    /* font pointer or NULL for defaults */
  339.     "2400 Baud",    /* pointer to text */
  340.     NULL    /* next IntuiText structure */
  341. };
  342.  
  343. struct MenuItem MenuItem15 = {
  344.     &MenuItem16,    /* next MenuItem structure */
  345.     0,33,    /* XY of Item hitbox relative to TopLeft of parent hitbox */
  346.     100,10,    /* hit box width and height */
  347.     CHECKIT+ITEMTEXT+ITEMENABLED+HIGHCOMP,    /* Item flags */
  348.     0,    /* each bit mutually-excludes a same-level Item */
  349.     (APTR)&IText16,    /* Item render  (IntuiText or Image or NULL) */
  350.     NULL,    /* Select render */
  351.     NULL,    /* alternate command-key */
  352.     NULL,    /* SubItem list */
  353.     0xFFFF    /* filled in by Intuition for drag selections */
  354. };
  355.  
  356. struct IntuiText IText17 = {
  357.     3,1,COMPLEMENT,    /* front and back text pens and drawmode */
  358.     20,1,    /* XY origin relative to container TopLeft */
  359.     NULL,    /* font pointer or NULL for defaults */
  360.     "1200 Baud",    /* pointer to text */
  361.     NULL    /* next IntuiText structure */
  362. };
  363.  
  364. struct MenuItem MenuItem14 = {
  365.     &MenuItem15,    /* next MenuItem structure */
  366.     0,22,    /* XY of Item hitbox relative to TopLeft of parent hitbox */
  367.     100,10,    /* hit box width and height */
  368.     CHECKIT+ITEMTEXT+ITEMENABLED+HIGHCOMP,    /* Item flags */
  369.     0,    /* each bit mutually-excludes a same-level Item */
  370.     (APTR)&IText17,    /* Item render  (IntuiText or Image or NULL) */
  371.     NULL,    /* Select render */
  372.     NULL,    /* alternate command-key */
  373.     NULL,    /* SubItem list */
  374.     0xFFFF    /* filled in by Intuition for drag selections */
  375. };
  376.  
  377. struct IntuiText IText18 = {
  378.     3,1,COMPLEMENT,    /* front and back text pens and drawmode */
  379.     20,1,    /* XY origin relative to container TopLeft */
  380.     NULL,    /* font pointer or NULL for defaults */
  381.     "300 Baud",    /* pointer to text */
  382.     NULL    /* next IntuiText structure */
  383. };
  384.  
  385. struct MenuItem MenuItem13 = {
  386.     &MenuItem14,    /* next MenuItem structure */
  387.     0,11,    /* XY of Item hitbox relative to TopLeft of parent hitbox */
  388.     100,10,    /* hit box width and height */
  389.     CHECKIT+ITEMTEXT+ITEMENABLED+HIGHCOMP,    /* Item flags */
  390.     0,    /* each bit mutually-excludes a same-level Item */
  391.     (APTR)&IText18,    /* Item render  (IntuiText or Image or NULL) */
  392.     NULL,    /* Select render */
  393.     NULL,    /* alternate command-key */
  394.     NULL,    /* SubItem list */
  395.     0xFFFF    /* filled in by Intuition for drag selections */
  396. };
  397.  
  398. struct IntuiText IText19 = {
  399.     3,1,COMPLEMENT,    /* front and back text pens and drawmode */
  400.     20,1,    /* XY origin relative to container TopLeft */
  401.     NULL,    /* font pointer or NULL for defaults */
  402.     "110 Baud",    /* pointer to text */
  403.     NULL    /* next IntuiText structure */
  404. };
  405.  
  406. struct MenuItem MenuItem12 = {
  407.     &MenuItem13,    /* next MenuItem structure */
  408.     0,0,    /* XY of Item hitbox relative to TopLeft of parent hitbox */
  409.     100,10,    /* hit box width and height */
  410.     CHECKIT+ITEMTEXT+ITEMENABLED+HIGHCOMP,    /* Item flags */
  411.     0,    /* each bit mutually-excludes a same-level Item */
  412.     (APTR)&IText19,    /* Item render  (IntuiText or Image or NULL) */
  413.     NULL,    /* Select render */
  414.     NULL,    /* alternate command-key */
  415.     NULL,    /* SubItem list */
  416.     0xFFFF    /* filled in by Intuition for drag selections */
  417. };
  418.  
  419. struct Menu Menu2 = {
  420.     &Menu3,    /* next Menu structure */
  421.     81,0,    /* XY origin of Menu hit box relative to screen TopLeft */
  422.     102,0,    /* Menu hit box width and height */
  423.     MENUENABLED,    /* Menu flags */
  424.     "Modem Baud",    /* text of Menu name */
  425.     &MenuItem12    /* MenuItem linked list pointer */
  426. };
  427.  
  428. struct IntuiText IText20 = {
  429.     3,1,COMPLEMENT,    /* front and back text pens and drawmode */
  430.     1,1,    /* XY origin relative to container TopLeft */
  431.     NULL,    /* font pointer or NULL for defaults */
  432.     "Quit",    /* pointer to text */
  433.     NULL    /* next IntuiText structure */
  434. };
  435.  
  436. struct MenuItem MenuItem21 = {
  437.     NULL,    /* next MenuItem structure */
  438.     0,11,    /* XY of Item hitbox relative to TopLeft of parent hitbox */
  439.     41,10,    /* hit box width and height */
  440.     ITEMTEXT+ITEMENABLED+HIGHCOMP,    /* Item flags */
  441.     0,    /* each bit mutually-excludes a same-level Item */
  442.     (APTR)&IText20,    /* Item render  (IntuiText or Image or NULL) */
  443.     NULL,    /* Select render */
  444.     NULL,    /* alternate command-key */
  445.     NULL,    /* SubItem list */
  446.     0xFFFF    /* filled in by Intuition for drag selections */
  447. };
  448.  
  449. struct IntuiText IText21 = {
  450.     3,1,COMPLEMENT,    /* front and back text pens and drawmode */
  451.     1,1,    /* XY origin relative to container TopLeft */
  452.     NULL,    /* font pointer or NULL for defaults */
  453.     "About",    /* pointer to text */
  454.     NULL    /* next IntuiText structure */
  455. };
  456.  
  457. struct MenuItem MenuItem20 = {
  458.     &MenuItem21,    /* next MenuItem structure */
  459.     0,0,    /* XY of Item hitbox relative to TopLeft of parent hitbox */
  460.     41,10,    /* hit box width and height */
  461.     ITEMTEXT+ITEMENABLED+HIGHCOMP,    /* Item flags */
  462.     0,    /* each bit mutually-excludes a same-level Item */
  463.     (APTR)&IText21,    /* Item render  (IntuiText or Image or NULL) */
  464.     NULL,    /* Select render */
  465.     NULL,    /* alternate command-key */
  466.     NULL,    /* SubItem list */
  467.     0xFFFF    /* filled in by Intuition for drag selections */
  468. };
  469.  
  470. struct Menu Menu1 = {
  471.     &Menu2,    /* next Menu structure */
  472.     0,0,    /* XY origin of Menu hit box relative to screen TopLeft */
  473.     75,0,    /* Menu hit box width and height */
  474.     MENUENABLED,    /* Menu flags */
  475.     "Project",    /* text of Menu name */
  476.     &MenuItem20    /* MenuItem linked list pointer */
  477. };
  478.  
  479. #define MenuList Menu1
  480.  
  481. struct NewWindow NewWindowStructure = {
  482.     0,10,    /* window XY origin relative to TopLeft of screen */
  483.     640,190,    /* window width and height */
  484.     0,1,    /* detail and block pens */
  485.     MENUPICK+CLOSEWINDOW,    /* IDCMP flags */
  486.     WINDOWSIZING+WINDOWDRAG+WINDOWDEPTH+WINDOWCLOSE+ACTIVATE,    /* other window flags */
  487.     NULL,    /* first gadget in gadget list */
  488.     NULL,    /* custom CHECKMARK imagery */
  489.     "Terminal v2.0",    /* window title */
  490.     NULL,    /* custom screen */
  491.     NULL,    /* custom bitmap */
  492.     5,5,    /* minimum width and height */
  493.     640,200,    /* maximum width and height */
  494.     WBENCHSCREEN    /* destination screen type */
  495. };
  496.  
  497. /* end of PowerWindows source generation */
  498.