Fix typos
parent
3d414a42a7
commit
291f79b412
|
@ -4,10 +4,8 @@
|
||||||
[ 1 2 3 4 5 6 7 8 9 10 10 10 10 10 10 10 10 10 10 11 11 11 113
|
[ 1 2 3 4 5 6 7 8 9 10 10 10 10 10 10 10 10 10 10 11 11 11 113
|
||||||
]
|
]
|
||||||
|
|
||||||
- x11: rollover highlight is not reliable
|
|
||||||
- x11: window positioning not reliable
|
|
||||||
- x11 title bars are funny
|
- x11 title bars are funny
|
||||||
|
- x11 mouse enter/leave events: update rollover
|
||||||
+ httpd:
|
+ httpd:
|
||||||
- outliners don't work
|
- outliners don't work
|
||||||
- browser responder doesn't work
|
- browser responder doesn't work
|
||||||
|
@ -22,7 +20,7 @@
|
||||||
- amd64 crash
|
- amd64 crash
|
||||||
- get factor running on mac intel
|
- get factor running on mac intel
|
||||||
- constant branch folding
|
- constant branch folding
|
||||||
- starting the UI with +foo switches opens them as files
|
- cocoa: starting the UI with +foo switches opens them as files
|
||||||
|
|
||||||
+ refactor style stack code so that nested styles are handled at a lower-level
|
+ refactor style stack code so that nested styles are handled at a lower-level
|
||||||
- in HTML, we can nest div tags, etc
|
- in HTML, we can nest div tags, etc
|
||||||
|
|
|
@ -31,14 +31,14 @@ USING: alien gadgets hashtables kernel math namespaces sequences ;
|
||||||
: set-size-hints ( window -- )
|
: set-size-hints ( window -- )
|
||||||
"XSizeHints" <c-object>
|
"XSizeHints" <c-object>
|
||||||
USPosition over set-XSizeHints-flags
|
USPosition over set-XSizeHints-flags
|
||||||
dpy get -rot XSetNormalWMHints ;
|
dpy get -rot XSetWMNormalHints ;
|
||||||
|
|
||||||
: create-window ( loc dim visinfo -- window )
|
: create-window ( loc dim visinfo -- window )
|
||||||
>r >r >r dpy get root get r> first2 r> first2 0 r>
|
>r >r >r dpy get root get r> first2 r> first2 0 r>
|
||||||
[ XVisualInfo-depth InputOutput ] keep
|
[ XVisualInfo-depth InputOutput ] keep
|
||||||
[ XVisualInfo-visual create-window-mask ] keep
|
[ XVisualInfo-visual create-window-mask ] keep
|
||||||
window-attributes XCreateWindow
|
window-attributes XCreateWindow
|
||||||
dup size-size-hints ;
|
dup set-size-hints ;
|
||||||
|
|
||||||
: glx-window ( loc dim -- window context )
|
: glx-window ( loc dim -- window context )
|
||||||
choose-visual
|
choose-visual
|
||||||
|
|
Loading…
Reference in New Issue