home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-09-27 | 14.0 KB | 165 lines | [TEXT/YHS2] |
- module Gobang where
-
- import Xlib
- import Utilities
- import Redraw
- import Weights
-
- getXInfo :: String -> IO XInfo
- getXInfo host =
- xOpenDisplay host >>= \ display ->
- let (screen:_) = xDisplayRoots display
- fg_pixel = xScreenBlackPixel screen
- bg_pixel = xScreenWhitePixel screen
- root = xScreenRoot screen
- in
- xCreateWindow root
- (XRect 0 0 900 600)
- [XWinBackground bg_pixel,
- XWinEventMask (XEventMask [XButtonPress,
-