From 509869ca70e08504045cf1cc0d0e2558d00eaa6a Mon Sep 17 00:00:00 2001 From: slava Date: Fri, 10 Apr 2009 13:29:07 -0400 Subject: [PATCH] X11 UI: Fix resize flicker, exception when closing window, unsuccessful attempt at fixing raise-window --- basis/ui/backend/x11/x11.factor | 12 ++++++++++-- basis/ui/ui.factor | 7 ++----- basis/x11/windows/windows.factor | 6 ++---- 3 files changed, 14 insertions(+), 11 deletions(-) diff --git a/basis/ui/backend/x11/x11.factor b/basis/ui/backend/x11/x11.factor index 422efbd188..5a2a8974e7 100755 --- a/basis/ui/backend/x11/x11.factor +++ b/basis/ui/backend/x11/x11.factor @@ -224,6 +224,10 @@ M: x-clipboard paste-clipboard [ XA_NET_WM_NAME XA_UTF8_STRING 8 PropModeReplace ] dip utf8 encode dup length XChangeProperty drop ; +: set-class ( dpy window -- ) + XA_WM_CLASS XA_STRING 8 PropModeReplace "Factor" + utf8 encode dup length XChangeProperty drop ; + M: x11-ui-backend set-title ( string world -- ) handle>> window>> swap [ dpy get ] 2dip [ set-title-old ] [ set-title-new ] 3bi ; @@ -242,11 +246,15 @@ M: x11-ui-backend set-fullscreen* ( ? world -- ) M: x11-ui-backend (open-window) ( world -- ) dup gadget-window - handle>> window>> dup set-closable map-window ; + handle>> window>> + [ set-closable ] [ dpy get swap set-class ] [ map-window ] tri ; M: x11-ui-backend raise-window* ( world -- ) handle>> [ - dpy get swap window>> XRaiseWindow drop + dpy get swap window>> + [ RevertToPointerRoot CurrentTime XSetInputFocus drop ] + [ XRaiseWindow drop ] + 2bi ] when* ; M: x11-handle select-gl-context ( handle -- ) diff --git a/basis/ui/ui.factor b/basis/ui/ui.factor index 1de3912f28..8be486cb1a 100644 --- a/basis/ui/ui.factor +++ b/basis/ui/ui.factor @@ -12,10 +12,7 @@ IN: ui ! Assoc mapping aliens to gadgets SYMBOL: windows -ERROR: no-window handle ; - -: window ( handle -- world ) - windows get-global ?at [ no-window ] unless ; +: window ( handle -- world ) windows get-global at ; : window-focus ( handle -- gadget ) window world-focus ; @@ -199,4 +196,4 @@ M: object close-window : with-ui ( quot -- ) ui-running? [ call( -- ) ] [ '[ init-ui @ ] (with-ui) ] if ; -HOOK: beep ui-backend ( -- ) \ No newline at end of file +HOOK: beep ui-backend ( -- ) diff --git a/basis/x11/windows/windows.factor b/basis/x11/windows/windows.factor index 9619ae0bee..8085907bef 100644 --- a/basis/x11/windows/windows.factor +++ b/basis/x11/windows/windows.factor @@ -6,10 +6,10 @@ arrays fry ; IN: x11.windows : create-window-mask ( -- n ) - { CWBackPixel CWBorderPixel CWColormap CWEventMask } flags ; + { CWColormap CWEventMask } flags ; : create-colormap ( visinfo -- colormap ) - dpy get root get rot XVisualInfo-visual AllocNone + [ dpy get root get ] dip XVisualInfo-visual AllocNone XCreateColormap ; : event-mask ( -- n ) @@ -29,8 +29,6 @@ IN: x11.windows : window-attributes ( visinfo -- attributes ) "XSetWindowAttributes" - 0 over set-XSetWindowAttributes-background_pixel - 0 over set-XSetWindowAttributes-border_pixel [ [ create-colormap ] dip set-XSetWindowAttributes-colormap ] keep event-mask over set-XSetWindowAttributes-event_mask ;