home *** CD-ROM | disk | FTP | other *** search
- /*
- wintest.prg
-
- Test program for windows class. Demonstrates some of the key
- capabilities of the class.
- */
-
- #include "class(y).ch"
- #include "win.ch"
-
-
- procedure main
- local hWin1 := window():new(5, 5, 15, 35, , "R+/W", "RB+/BG")
- local hWin2 := window():new(7, 7, 20, 40)
-
- // note window-relative @...SAYs achieved with preprocessor (win.ch)
- @ 2, 2 say "This text is in a window"
- @ 3, 2 say "Press a key..."
- inkey(0)
-
- // hWin1 is not selected, but accessing it as follows selects it
- hWin1:title("A Title", wTC)
- inkey(0)
-
- // hide the unselected window
- hWin2:hide()
-
- @ 2, 2 say "This sentence is truncated because it is too long"
- @ 3, 2 say "Press a key"
- inkey(0)
-
- // print out the instance variables - a bit messy, since '?' is not
- // window relative. Better demos will be developed over time.
- printInstVars(hWin1)
-
- hWin2:show()
- inkey(0)
-
- window():hideAll()
-
- ? 'WOW!'
- return
-
-
- static procedure printInstVars(obj)
- local i
- local aMsgs := instvarlist(obj)
- for i := 1 to len(aMsgs)
- ? aMsgs[i]
- next
- wait
- return
-
-
- // eof wintest.prg
-