World: r3wp
[View] discuss view related issues
older newer | first last |
eFishAnt 19-Feb-2010 [9607] | I did, so no answer, eh? |
Graham 19-Feb-2010 [9608] | well, I found this post from Dec from Luis http://pastebin.ca/1718241 but I guess it should have been posted to stackoverflow instread |
eFishAnt 19-Feb-2010 [9609] | activate-on-show is mentioned in http://www.rebol.com/docs/view-face-funcs.html#section-1 now I am remembering some old hack I did where I had two windows that played hide-and-seek...but right now the app is hiding... |
Graham 19-Feb-2010 [9610x2] | user32: context [ dll: load/library %user32.dll HWND_BOTTOM: 1 HWND_TOPMOST: -1 HWND_NOTOPMOST: -2 HWND_TOP: 0 SWP_SHOWWINDOW: to integer! #{0040} ;&H40 SWP_NOSIZE: to integer! #{0001} ;&H1 SWP_NOMOVE: to integer! #{0002} ;&H2 GetActiveWindow: make routine! [return: [integer!]] dll "GetActiveWindow" SetWindowPos: make routine! [ hWnd [integer!] hWndInsertAfter [integer!] X [integer!] Y [integer!] cx [integer!] cy [integer!] uFlags [integer!] return: [integer!] ] dll "SetWindowPos" set 'arrange-window func [ "Arrange window z-order." window [object!] mode [word!] "One of BOTTOM, NORMAL, TOP or TOP-MOST" /local hWnd ][ window/changes: 'activate show window hWnd: GetActiveWindow SetWindowPos hWnd do select [bottom HWND_BOTTOM top HWND_TOP top-most HWND_TOPMOST normal HWND_NOTOPMOST] mode 0 0 0 0 to integer! to-hex SWP_SHOWWINDOW or SWP_NOSIZE or SWP_NOMOVE ] SetWindowText: make routine! [ handle [integer!] Title [string!] return: [integer!] ] dll "SetWindowTextA" set 'WindowTitle func [ Title [string!] ] [ SetWindowText get-modes system/ports/system 'window Title ] ] |
I hope you meant on windows .... | |
eFishAnt 19-Feb-2010 [9612] | ...yeah...thanks! |
Graham 20-Feb-2010 [9613] | WIP on a tiff viewer for r2 http://www.digicamsoft.com/cgi-bin/rebelBB.cgi?thread=%3C19Feb2010232555055824100%3E |
Maxim 20-Feb-2010 [9614x7] | use Show popup. |
show-popup.... sorry. | |
if you don't do a call to do-events, it won't be modal (blocking events to the main window) | |
if you feel like it, you can just look at the show-popup and hide-popup mezz source code and improve it to let it do what you need. | |
the only issue here is that if you try to do use a title'less window, it won't obay the "stay in front" property... strange. | |
the only thing to know is that the default wake-event is pretty dumb in how it manages the exit application condition when a windows is closed. | |
so if you do play around or make your own show-popup style commands, you will probably have to insert a line or two into the main wake-event so it knows not to close the whole event port when you close your custom stay-in-front windows. note that these windows CAN resize... VID 2 just never allowed us to control it in the popup code. | |
Graham 20-Feb-2010 [9621] | that creates a modal window |
Maxim 20-Feb-2010 [9622x5] | no. |
I have to fix view everytime I use my own requestors... its pretty quickly designed code which was patched by Gabriele in later VID, but even those changes, break up pretty quickly. | |
for a window to be modal, a new call to wait must be done at some point. | |
part of the modality is managed in wake-event IIRC. | |
but for a fact, just looking at the wake-event function for view, show-popup and hide-popup you have ALL of what you need to make View manage windows the way you want it. (I've had to play in there countless number of times... GLayout completely removes show-popup, for example. and adds a /modal refinement to its 'view command instead) | |
Nicolas 21-Feb-2010 [9627x2] | When a mouse button is held down and the mouse is moved it triggers "over" events, during which a right mouse button event is ignored. In windows, either mouse button being pressed will cause the system to stop triggering "over" events. Does anyone know how I could get this kind of behaviour? |
Sorry, that should be "when the left mouse button is held down" | |
Maxim 21-Feb-2010 [9629] | the over are sent to allow you to do drag events. |
Nicolas 21-Feb-2010 [9630x2] | Yes, I know, but I wish to receive a right mouse button down while receiving left mouse over events. |
I have to go to work. | |
Graham 21-Feb-2010 [9632] | How to determine if a font is installed? |
Ashley 22-Feb-2010 [9633] | This is the code I use for RebGUI: get-fonts: make function! [ "Obtain list of fonts on supported platforms." /cache file [file!] "Obtain fonts from file" /local s ] [ all [cache exists? file] [insert clear fonts unique load file] if empty? fonts [ either OS = 'Win [ call/output {reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts"} s: copy "" s: skip parse/all s "^-^/" 4 request-progress/title (length? s) / 3 [ foreach [fn reg style] s [ fn: trim first parse/all fn "(" all [ not find fonts fn not find ["Estrangelo Edessa" "Gautami" "Latha" "Mangal" "Mv Boli" "Raavi" "Shruti" "Tunga"] fn not find fn " Bold" not find fn " Italic" not find fn " Black" not find fn "WST_" insert tail fonts fn ] wait .01 step ] ] "Loading fonts ..." ] [ call/output "fc-list" s: copy "" s: parse/all s ":^/" request-progress/title (length? s) / 2 [ foreach [fn style] s [ all [ not find fonts fn (size-text make widgets/gradface [text: "A" font: make font [name: fn size: 10]]) <> size-text make widgets/gradface [text: "A" font: make font [name: fn size: 12 style: 'bold]] insert tail fonts fn ] wait .01 step ] ] "Loading fonts ..." ] ] sort fonts ] |
Graham 22-Feb-2010 [9634] | thanks ... I knew that you had done something but a google search failed to find anything |
Maxim 24-Feb-2010 [9635] | MESSAGE TO ALL :-) I've finally found the way to drastically improve the overzealous mouse event handling within the lowest level of view directly without causing any noticeable side-effects in the normal face event handling. its a small patch in view's wake-event function. the only requirement is that you have at least one face (usually the window, if you can) which has a rate set to the response you need... usually around 15 -20 is enough. this makes face scrolling based on mouse mouse VERY smooth as there is no more lag ... which occurs because we can receive 2 to 3 times more events than view/AGG can refresh itself. if you need this, please speak up, I'll gladly offer the recipe. |
Cyphre 24-Feb-2010 [9636] | Maxim, why you aren't using the event compression technique from Gariele+Romano? |
Maxim 24-Feb-2010 [9637x2] | cause I don't know about it :-) and any I've tried before (which might include this one, I don't recall) created problems which forced me to adapt my code. |
using the rate, I can with almost perfect precision measure that there will never be more mouse events than the rate which is set. | |
Cyphre 24-Feb-2010 [9639] | check this one: http://www.rebol.org/view-script.r?script=eat.rnot sure if the script is up-to-date but the technique described in it works pretty well. |
Maxim 24-Feb-2010 [9640x5] | and because the rate IS NOT triggered when REBOL is busy, it will actually send Less events on its own, making the trick scalable in real-time. |
I will thanks. | |
tested... in 2.7.6, at least, the example windows break up, the moment we touch some of the sliders . ' :-/ we might need to update the eat-event example for later view releases. | |
will try something... | |
no success... still causes errors. | |
Gregg 24-Feb-2010 [9645] | Max, if the patch is small, can you post it for review? |
Graham 21-Mar-2010 [9646] | Anyone know the reasons http://synapse-ehr.com/forums/showthread.php?31-Vid&p=237&viewfull=1#post237 |
Steeve 21-Mar-2010 [9647x3] | hide is discarded, because after having done the action, view do a show on the face, uhuhuhu. try this instead. >>view layout [ mbutton: button "hello" [face/size: 0x0] ] but you have to remember the size indeed, for further showings of the button. |
Because the problem may exist with other styles. i suggest these 2 small mezz in replacement of hide and show. vanish: func [face][face/size: negate abs face/size show face] spook: func [face][face/size: abs face/size show face] >> view layout [ mbutton: button "hello" [vanish mbutton] ] | |
enjoy :) | |
Graham 21-Mar-2010 [9650] | Nice .. rebgui doesn't have these issues |
Henrik 21-Mar-2010 [9651] | because SHOW is not native in RebGUI. |
Ashley 21-Mar-2010 [9652] | It is actually. |
Anton 21-Mar-2010 [9653] | Steeve is not quite correct to say that "view do a show on the face". It is VID which does the SHOW, which you can see here. >> print mold get in svv/vid-styles/button/feel 'engage RebGUI probably does not use this code. |
Ashley 21-Mar-2010 [9654] | Correct. |
Steeve 22-Mar-2010 [9655] | Right Anton, but I am perjured myself later, saying (the problem may exist in other styles). :) |
Henrik 22-Mar-2010 [9656] | Ashley, sorry, I'm working from the RM-Asset version. :-) |
older newer | first last |