TweetFollow Us on Twitter

Light thru Windows
Volume Number:1
Issue Number:4
Column Tag:Basic school

Light thru the Windows

By Dave Kelly

Let’s put some light on the subject of windows. Almost everything you write in Microsoft BASIC 2.0 requires some window programming. This is especially true if you want your program to conform to the Macintosh user interface. First, a rundown on the commands we have available to program our windows:

WINDOW window-id [title ]
                [,[rectangle ][, type ]]]
WINDOW CLOSE window-id
WINDOW OUTPUT window-id
WINDOW OUTPUT #file-number

The window-id identifies the output window. Window-id is a number from 1 to 4. This means that you may only have up to 4 windows open at any one time. BASIC opens up Window 1 when BASIC starts. If this window gets closed you can select the output window from the Windows menu in BASIC or type WINDOW 1 from the command window. A window must be open and specified as the output window before anything can be printed in the window.

The title is the name displayed in the title bar of a document window if the window has a title bar.

The rectangle specifies the location of the window on the Macintosh screen. It is given in the form (x1,y1)-(x2,y2) where (x1,y1) is the upper left corner of the window and (x2,y2) is the lower right corner of the window. This sounds easy but someone out there will probably be confused. The entire Macintosh screen has a resolution of 512 X 342. To open a window which fills the entire screen you could use (0,0)-(512,342). However, you’ll find that the desktop border (for pull down menus will cover the title bar of your document window. The desktop border on the top of the screen is about 40 pixels down from the top. By using (2,40) as the top corner and (510,340) as the bottom corner your window will fill the screen except for the desktop border. A couple of pixels are allowed at the edge of the screen to make it look a little better. So much for filling the entire screen with a window. It can require some trial and error to get your window positioned where you want when you try to center a smaller window on the screen. Other BASIC commands use the rectangle format to specify the location relative to the upper-left corner of the window. The rectangle format in the WINDOW command specifies the location of the window relative to the upper-left corner of the screen.

There are 4 types of windows that are available with type. They are (for type =1-4) :

1. Document window

2. Dialog box with two line border

3. Window with simple one-line border

4. Window with a shadow

Only type 1, the document window, has a size box and a title bar. Also, only type 1 can be moved with the mouse. The other types will not change position on the screen without redefining the window with the WINDOW command. A negative type number is called a modal dialog box. In this case any attempt to select outside of the window results in a beep.

The WINDOW CLOSE statement closes the indicated window. WINDOW OUTPUT indicates which window will be the window used for output when there are multiple windows. This allows you to send output to another window without changing the active window. If a file-number is indicated instead of a window-id, the output will be sent to the indicated file. Currently, only files opened to LPT1: are valid with this statement. As other devices which support graphics are made available, this will change.

Info About Windows

The window function WINDOW(n) returns information about the windows. If n = 0, the function returns the window-id of the active output window. n = 1 returns the window-id of the current output window. This is the window where output will be sent. n = 2 gives the width of the current output window and n = 3 returns the height of the current output window. n = 4 and n = 5 returns the x and y coordinate (respectively) in the current output window where the next character will be drawn. This function may be used to determine where the next character or section of a drawing should continue.

Our sample window shows how these commands are used to control windows. The program sets up all four windows as type 1 (document with size box and title). Information about each window is printed in the window. The information about the width and height might be used when trying to get just the right sized window for your program.

An important thing to note when working with windows is that everything does not happen automatically as you may be used to when moving, opening, or closing windows in application programs you may have run. You have to do everything which you took for granted before. For some people this may be hard to figure out, but just try to imitate the way the commercial applications are supposed to use the Macintosh user interface. Try this with my sample program: move one of the windows on top of another and then back again. The printed information which may have been destroyed by overlaying a window over another needs to be refreshed. Changing the size box has the same effect.

REFRESHING WINDOWS

The DIALOG(5) function returns the window-id of the window which needs to be refreshed. Updating a window is not automatically performed but must be done by the program. In the Event: subroutine when DIALOG(0) sets d=5, the output window is set to the window indicated by DIALOG(5) and the window is printed again. It would be desirable to setup a subroutine to refresh windows if this feature is desired. Just for fun, delete the line that starts with IF d=5 THEN WINDOW OUTPUT DIALOG(5) and then run the program. You can see that the window will not be automatically refreshed without this event trapping. In some programs you may not want to refresh all (or even any) of the windows.

The printwindowinfo: subroutine prints the information on the current output window. You can change this and print your own message if you like. Try changing the window type just to see what it will do.

The command LOCATE[row][,column] positions the pen at a specified row and column in the output window. This position is with respect to the upper-left corner of the current output window. Since most fonts are proportionally spaced, the spacing is that of the letter “0”, because it is an average width for most fonts. Another way to control the location of the pen is the use of CALL GETPEN, CALL MOVETO(x,y) or CALL MOVE(xdelta,ydelta). (Note: MSBASIC 2.0 allows you to optionally leave off the word CALL and just use the routine name-useful for creating your own basic commands by calling machine language routines).

Notice that by selecting the active window from the pull down menu causes a different result than clicking on the window. When the window is clicked it is selected as both the active and output window. By selecting from the menus, one window can be active while output is going to another. This is exactly the same procedure used when refreshing the screen. This is observed by changing the output window from the menu. To return to BASIC, use the quit menu.

You now have an introduction to windows. The important thing to remember is that you must control where windows are opened, and which windows are selected or deselected, and which window is the output window. For simple programs which only need a place to print, the statement WINDOW creates an output window if none currently exsists and makes it active. Your program will have to do the work of deciding what should be done with each window, as it is not automatic. Do you have some questions or programming tips to share with MacTutor’s reader’s? Send your questions or contributions to BASIC SCHOOL care of MacTutor, P.O. Box 846, Placentia, CA. 92670.


‘   Window Demo
‘   by Dave Kelly
‘   MACTUTOR   March 1985

‘SET UP MENUS
MENU 4,0,1,”Quit”
MENU 4,1,1,”Return to BASIC”
MENU 5,0,1,”Output Window”
MENU 5,1,1,”Window 1"
MENU 5,2,0, “-” ‘MENU DASH LINE
MENU 5,3,1,”Window 2"
MENU 5,4,0, “-”
MENU 5,5,1,”Window 3"
MENU 5,6,0, “-”
MENU 5,7,1,”Window 4"
MENU 6,0,1,”Active Window”
MENU 6,1,1,”Window 1"
MENU 6,2,0, “-”
MENU 6,3,1,”Window 2"
MENU 6,4,0, “-”
MENU 6,5,1,”Window 3"
MENU 6,6,0, “-”
MENU 6,7,1,”Window 4"

‘TURN ON MENU SELECT TRAP
ON MENU GOSUB menus:MENU ON

‘SET UP WINDOWS and PRINT INFO

WINDOW 1,”Window 1",(2,40)-(252,190)
GOSUB printwindowinfo
WINDOW 2,”Window 2",
                  (260,40)-(510,190)
GOSUB printwindowinfo
WINDOW 3,”Window 3",
                  (2,195)-(252,345)
GOSUB printwindowinfo
WINDOW 4,”Window 4",
                  (260,195)-(510,345)
GOSUB printwindowinfo
DIALOG ON

‘ENABLE EVENT TRAP

ON DIALOG GOSUB Event
pause:GOTO pause

Event:
    
d=DIALOG(0)    ‘EVENT OCCURED
    ‘d=3  USER CLICKED INACTIVE WINDOW
    IF d=3 THEN window.picked=
        DIALOG(3):WINDOW window.picked
    ‘d=4  USER CLICKED GO-AWAY BOX
    IF d=4 THEN window.closed=
        DIALOG(4):WINDOW CLOSE
        window.closed
    ‘d=5  WINDOW NEEDS TO BE REFRESHED
    IF d=5 THEN WINDOW OUTPUT
          DIALOG(5):GOSUB printwindowinfo
RETURN

menus: 

‘THIS HANDLES MENUS

menunumber=MENU(0)
menuitem=MENU(1):MENU
IF menunumber<>4 THEN menu5
‘MENU 4 QUITS
MENU RESET:END
menu5:IF menunumber<>5 THEN menu6    ‘MENU 5 SELECTS OUTPUT WINDOW

IF menuitem=1 THEN WINDOW OUTPUT 1
IF menuitem=3 THEN WINDOW OUTPUT 2
IF menuitem=5 THEN WINDOW OUTPUT 3
IF menuitem=7 THEN WINDOW OUTPUT 4
GOSUB printwindowinfo
RETURN

menu6:

IF menunumber<>6 THEN RETURN    ‘MENU 6 SELECTS ACTIVE WINDOW
menuitem=MENU(1):MENU
IF menuitem=1 THEN WINDOW  1
IF menuitem=3 THEN WINDOW  2
IF menuitem=5 THEN WINDOW  3
IF menuitem=7 THEN WINDOW  4
GOSUB printwindowinfo
RETURN

printwindowinfo:

LOCATE 1,1
PRINT”Current active window is “;
           WINDOW(0)
PRINT”Current output window is “;
           WINDOW(1)
PRINT”Window width is “;WINDOW(2)
PRINT”Window height is “;WINDOW(3)
RETURN
 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Fresh From the Land Down Under – The Tou...
After a two week hiatus, we are back with another episode of The TouchArcade Show. Eli is fresh off his trip to Australia, which according to him is very similar to America but more upside down. Also kangaroos all over. Other topics this week... | Read more »
TouchArcade Game of the Week: ‘Dungeon T...
I’m a little conflicted on this week’s pick. Pretty much everyone knows the legend of Dungeon Raid, the match-3 RPG hybrid that took the world by storm way back in 2011. Everyone at the time was obsessed with it, but for whatever reason the... | Read more »
SwitchArcade Round-Up: Reviews Featuring...
Hello gentle readers, and welcome to the SwitchArcade Round-Up for July 19th, 2024. In today’s article, we finish up the week with the unusual appearance of a review. I’ve spent my time with Hot Lap Racing, and I’m ready to give my verdict. After... | Read more »
Draknek Interview: Alan Hazelden on Thin...
Ever since I played my first release from Draknek & Friends years ago, I knew I wanted to sit down with Alan Hazelden and chat about the team, puzzle games, and much more. | Read more »
The Latest ‘Marvel Snap’ OTA Update Buff...
I don’t know about all of you, my fellow Marvel Snap (Free) players, but these days when I see a balance update I find myself clenching my… teeth and bracing for the impact to my decks. They’ve been pretty spicy of late, after all. How will the... | Read more »
‘Honkai Star Rail’ Version 2.4 “Finest D...
HoYoverse just announced the Honkai Star Rail (Free) version 2.4 “Finest Duel Under the Pristine Blue" update alongside a surprising collaboration. Honkai Star Rail 2.4 follows the 2.3 “Farewell, Penacony" update. Read about that here. | Read more »
‘Vampire Survivors+’ on Apple Arcade Wil...
Earlier this month, Apple revealed that poncle’s excellent Vampire Survivors+ () would be heading to Apple Arcade as a new App Store Great. I reached out to poncle to check in on the DLC for Vampire Survivors+ because only the first two DLCs were... | Read more »
Homerun Clash 2: Legends Derby opens for...
Since launching in 2018, Homerun Clash has performed admirably for HAEGIN, racking up 12 million players all eager to prove they could be the next baseball champions. Well, the title will soon be up for grabs again, as Homerun Clash 2: Legends... | Read more »
‘Neverness to Everness’ Is a Free To Pla...
Perfect World Games and Hotta Studio (Tower of Fantasy) announced a new free to play open world RPG in the form of Neverness to Everness a few days ago (via Gematsu). Neverness to Everness has an urban setting, and the two reveal trailers for it... | Read more »
Meditative Puzzler ‘Ouros’ Coming to iOS...
Ouros is a mediative puzzle game from developer Michael Kamm that launched on PC just a couple of months back, and today it has been revealed that the title is now heading to iOS and Android devices next month. Which is good news I say because this... | Read more »

Price Scanner via MacPrices.net

Amazon is still selling 16-inch MacBook Pros...
Prime Day in July is over, but Amazon is still selling 16-inch Apple MacBook Pros for $500-$600 off MSRP. Shipping is free. These are the lowest prices available this weekend for new 16″ Apple... Read more
Walmart continues to sell clearance 13-inch M...
Walmart continues to offer clearance, but new, Apple 13″ M1 MacBook Airs (8GB RAM, 256GB SSD) online for $699, $300 off original MSRP, in Space Gray, Silver, and Gold colors. These are new MacBooks... Read more
Apple is offering steep discounts, up to $600...
Apple has standard-configuration 16″ M3 Max MacBook Pros available, Certified Refurbished, starting at $2969 and ranging up to $600 off MSRP. Each model features a new outer case, shipping is free,... Read more
Save up to $480 with these 14-inch M3 Pro/M3...
Apple has 14″ M3 Pro and M3 Max MacBook Pros in stock today and available, Certified Refurbished, starting at $1699 and ranging up to $480 off MSRP. Each model features a new outer case, shipping is... Read more
Amazon has clearance 9th-generation WiFi iPad...
Amazon has Apple’s 9th generation 10.2″ WiFi iPads on sale for $80-$100 off MSRP, starting only $249. Their prices are the lowest available for new iPads anywhere: – 10″ 64GB WiFi iPad (Space Gray or... Read more
Apple is offering a $50 discount on 2nd-gener...
Apple has Certified Refurbished White and Midnight HomePods available for $249, Certified Refurbished. That’s $50 off MSRP and the lowest price currently available for a full-size Apple HomePod today... Read more
The latest MacBook Pro sale at Amazon: 16-inc...
Amazon is offering instant discounts on 16″ M3 Pro and 16″ M3 Max MacBook Pros ranging up to $400 off MSRP as part of their early July 4th sale. Shipping is free. These are the lowest prices... Read more
14-inch M3 Pro MacBook Pros with 36GB of RAM...
B&H Photo has 14″ M3 Pro MacBook Pros with 36GB of RAM and 512GB or 1TB SSDs in stock today and on sale for $200 off Apple’s MSRP, each including free 1-2 day shipping: – 14″ M3 Pro MacBook Pro (... Read more
14-inch M3 MacBook Pros with 16GB of RAM on s...
B&H Photo has 14″ M3 MacBook Pros with 16GB of RAM and 512GB or 1TB SSDs in stock today and on sale for $150-$200 off Apple’s MSRP, each including free 1-2 day shipping: – 14″ M3 MacBook Pro (... Read more
Amazon is offering $170-$200 discounts on new...
Amazon is offering a $170-$200 discount on every configuration and color of Apple’s M3-powered 15″ MacBook Airs. Prices start at $1129 for models with 8GB of RAM and 256GB of storage: – 15″ M3... Read more

Jobs Board

*Apple* Systems Engineer - Chenega Corporati...
…LLC,** a **Chenega Professional Services** ' company, is looking for a ** Apple Systems Engineer** to support the Information Technology Operations and Maintenance Read more
Solutions Engineer - *Apple* - SHI (United...
**Job Summary** An Apple Solution Engineer's primary role is tosupport SHI customers in their efforts to select, deploy, and manage Apple operating systems and Read more
*Apple* / Mac Administrator - JAMF Pro - Ame...
Amentum is seeking an ** Apple / Mac Administrator - JAMF Pro** to provide support with the Apple Ecosystem to include hardware and software to join our team and Read more
Operations Associate - *Apple* Blossom Mall...
Operations Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Cashier - *Apple* Blossom Mall - JCPenney (...
Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Mall Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.