TITLE "MP5 test data by Douglas Jones" INT ITEM1 USE "hawk.macs" USE "boxortext.h" USE "box.h" USE "text.h" ; ----- The items in the following list should form this display ------ ; +---------------+ +---+ + ; | text in a box |------+ | A | | ; 2---------------+ | | B | 5-----------+ ; | | | C | | ; 1-------------------+ 3---+ 4 ; note that, in the above, the lower left plus in the rendering ; of the item has been replaced with the item number. ; ----- Item data structures ----- ITEM1: MAKEBOX ITEM2, 8, 2, 20, 3, NULL ITEM2: MAKEBOX ITEM3, 5, 1, 16, 2, ITEM2A ITEM2A: MAKETEXT NULL, 2, 1, "text in a box" ITEM3: MAKEBOX ITEM4, 33, 1, 4, 4, ITEM3A ITEM3A: MAKETEXT ITEM3B, 2, 1, "A" ITEM3B: MAKETEXT NULL, 2, 2, "B" ITEM4: MAKEBOX ITEM5, 42, 1, 0, 4, NULL ITEM5: MAKEBOX NULL, 39, 3, 12, 0, NULL END