World: r3wp
[View] discuss view related issues
older newer | first last |
Anton 13-Sep-2006 [5484] | Henrik, maybe you can post us a cut-down example which shows the double-error bug, and we can try to handle it the best way. Sounds like it would be a useful technique in general. |
Henrik 13-Sep-2006 [5485x2] | if error? program-error: try [ view layout [ h3 "Avoid the console from popping up" box 500x100 "Hold down left mouse button and drag to create errors" feel [ engage: func [face act evt] [ if find [over away] probe act [ 2 / 0 ; error! ] ] ] ] do-events ] [ ; what to do here to block the events from the view window? error-obj: disarm program-error inform layout [ h3 "Program Error!" area 300x200 mold error-obj button "Close" ] ] |
that 'do-events should probably not be there... sorry | |
Volker 13-Sep-2006 [5487] | This is a working test-programm? |
Henrik 13-Sep-2006 [5488x2] | yes |
the view layout block is supposed to represent the application | |
Anton 13-Sep-2006 [5490] | My first suggestion (just PICKing all events) doesn't work. I don't see another way to clear the event port, so I'm going to try patching wake-event, which is where you can prevent DO EVENT from sending the event to engage. |
Volker 13-Sep-2006 [5491x2] | Hmm, seems it bypasses event-funcs. should that happen? |
rebol [title: "scratch"] if error? program-error: try [ view lay: layout [ h3 "Avoid the console from popping up" box 500x100 {Hold down left mouse button and drag to create errors} feel [ engage: func [face act evt] [ print ["engage" face/text] if find [over away] probe act [ 2 / 0 ] ] ] ] ] [ print "error" insert-event-func func [face event] [ print ["event-func" event/face/text event/type] either same? lay event/face [ prin "mjam" none ] [ event ] ] error-obj: disarm program-error inform layout [ h3 "Program Error!" area 300x200 mold error-obj button "Close" ] print "inform done" ] | |
Anton 13-Sep-2006 [5493x5] | Aha, what you have to do is catch errors around both instances of DO EVENT in wake-event. |
error-window: layout [ h3 "Program Error!" area 300x200 button "Close" [hide-popup] ] inform-on-error: func [code [block!]][ if error? set/any 'error try code [ error-obj: disarm error ?? error-obj error-window/pane/2/text: rejoin [ mold disarm error now/time/precise ] either viewed? error-window [ ; subsequent errors show error-window ][ ; first error print "INFORM" ;inform error-window ; Emulate INFORM but without WAIT error-window/text: "Dialog" error-window/feel: make system/view/window-feel [] show-popup center-face error-window ] ] ] system/view/wake-event: func [ port /local event no-btn error ; <-- added 'error ] bind [ event: pick port 1 if none? event [ if debug [print "Event port awoke, but no event was present."] return false ] either pop-face [ if in pop-face/feel 'pop-detect [event: pop-face/feel/pop-detect pop-face event] inform-on-error [do event] found? all [ pop-face <> pick pop-list length? pop-list (pop-face: pick pop-list length? pop-list true) ] ] [ inform-on-error [do event] empty? screen-face/pane ] ] system/view view/title layout [ h3 "Avoid the console from popping up" box 500x100 "Hold down left mouse button and drag to create errors" feel [ engage: func [face action event] [ print ["ENGAGE:" event/time event/type mold event/face/text] if find [over away] action [ 2 / 0 ; error! ] ] ] ] "Main Window" | |
Just got to figure out how best to continue waiting for events when the popup is closed... | |
Too sleepy now... | |
Actually, I don't see the benefit in making the error window a modal popup. What would be cool would be to have a gadget to show multiple error messages stacked on top of each other, with a couple of arrow buttons to cycle through them and a button to discard the currently viewed one. | |
Henrik 13-Sep-2006 [5498] | The goal of the error capture is to provide end users a means of reporting bugs to me over the internet in a uniform manner. Having them read me console output over the phone just doesn't work. To reach that goal I defined some rules: 1. The user must know what is going on when that window is popping up. Therefore it has to be very simple and clear that the program they were working in, has failed. 2. When I use the program, the error window must be useful to me as well, so I output the error object in that window. 3. The error window must pop up in front of the other windows and be modal. I've had way too many user cases with hidden new windows to great confusion of users. That's why I use an INFORM. 4. The program must stop dead in its tracks, because of two things: 4.1. The program saves to disk very often. If the program continues operating despite this error, there could be a risk of data corruption, which could be saved to disk, overwriting good data. 4.2. If the program crashes during receiving events from a moving mouse, the error log would become very big in no time, if the logging functions are triggered because of this mouse movement. It's important to see the first point where it breaks. I've got all bits working except the event blocking part. |
Anton 13-Sep-2006 [5499] | That's a pretty good logic. New windows can be brought to front (or if they are minimized, flashed in task bar) with: window/changes: [activate] show window which you could do insistently on new errors. But ok, you want to stop on the first error. Ok, so you're using a modal window. In that case, I would change inform-on-error [do event] to: filter-do event where the FILTER-DO function is the same as INFORM-ON-ERROR except it examines the event first. When event/face = error-window, then DO EVENT, else discard the event. |
Ladislav 14-Sep-2006 [5500] | why do you think the lines do not "meet" at "the corner"? view layout [box 600x600 effect [draw [line 490x473 490x8 line 45x8 490x8 polygon 45x473 156x357 490x8]]] |
Anton 14-Sep-2006 [5501x2] | Good question. I think it may be a deliberate offset added to the some edges of polygons, so polygons with common edges can be drawn in any order without any overlap. This is used in 3D modeling, where lots of triangles with common edges are drawn. |
I would check the AGG documentation to confirm that though. | |
Cyphre 14-Sep-2006 [5503x3] | Thi si because the defual mode for LINE-JOIN is MITER. It is enough for your case to change it to BEVEL,ROUND or MITER-BEVEL mode. For example: view layout [box black 600x600 effect [draw [line-join bevel line 490x473 490x8 line 45x8 490x8 polygon 45x473 156x357 490x8]]] |
You can see the effect of different LINE-CAP/JOIN modes in Rebol Desktop: REBOL/View Tests/Line Cap Join (or directly from console: do http://www.rebol.net/tests/line-cap-join.r) | |
Thi si because the defual mode...=This is because default mode... | |
Henrik 15-Sep-2006 [5506] | are there tutorials anywhere on writing your own style with stylize/master? |
Graham 15-Sep-2006 [5507] | I haven't seen it, but apparently Cyphre did one in at the last devcon .. so have a look at his presentation? |
Henrik 15-Sep-2006 [5508] | I know that one but was looking for one that would explain the different parts better. |
Anton 16-Sep-2006 [5509x2] | Ask all your questions here about any facets, then we can collect the answers into a document. |
Someone made a very nice colour-wheel requester (at least I think it was a requester) at one time. I've found Oldes' color-lab.r which is just awesome, but I'd like to also find any others. | |
Robert 17-Sep-2006 [5511] | This would be really a needed doc. I haven't done it myself yet, because the startup time to collect all information snippets is to high. |
Anton 17-Sep-2006 [5512] | It's a pretty huge task. |
Volker 17-Sep-2006 [5513x2] | There isnt much different to plain faces. There is a block /init which is called after all arguments are loaded by 'layout. Arguments are put in the appropriate facets, if there are some of the same type, they are put in a block instead. so two colors go into /colors. There is some magic with keywords, which needs more space to explain. but for quick things you can pass args in 'with. Styles have their own source in /facets, so you can look there. Best with deskop/tools/vid-style-tree. Start fresh things with 'image or 'box, examine things by with[probe self]. The rest is the same as plain faces, and there are some docs now. |
/init is a block so its extensible by appending own stuff to it, so text with[append init[ print "all args here" ]] | |
Anton 17-Sep-2006 [5515] | Henrik, are you wondering what stylize/master does or how to use it ? Or are you looking more for a style-creation guide ? Usage of stylize/master itself is pretty simple, it takes a style spec and adds the new styles in it to system/view/vid/vid-styles, where all the default styles are kept, eg: stylize/master [my-box: box blue "hello"] view layout [my-box] I often felt the need for an official document explaining all the things a style should satisfy to be "VID-compliant" and explaining each facet in detail, where and how facets are used by existing styles. But no such doc exists. I've been growing a pile of demos and text documents as I discover things. |
Henrik 17-Sep-2006 [5516] | I'm not wondering about it. I used Cyphre's video to kickstart LIST-VIEW development. :-) But I think this is an area of VID that remains a mystery to most users, as there is very little documentation around to explain how it works. Maybe that's why there isn't that many custom VID faces around. I seem to remember a ton of custom classes for MUI on the Amiga. |
Janeks 18-Sep-2006 [5517] | If I am calling (loading) a layout from web server script with http://someurl?some=cgivarsand then displaying, than I cannot it unview: info-resp: read browseUrl reduce load info-resp either viewed? infowin [ unview infowin ;Does not work!? view/options/title/new infowin [all-over] "Info:" ][ view/options/title/new infowin [all-over] "Info:" ] F.ex. I want that there does not appear new windows. But I need to use /new refinement, because I need possibility for user to go back (activate) on another window. Is it connected with Rebol scopes? And how to avoid new window? |
Graham 18-Sep-2006 [5518] | unview/only infowin .. is the syntax for closing a single named window |
Janeks 18-Sep-2006 [5519x2] | I alredy tried it but - no success! |
I solved it so that loaded just info win definition block: either value? 'infowin [ unview/only infowin ;Šitais nestrādā nezkāpēc infowin: layout info-layout view/options/title/new infowin [all-over] "Info:" ][ infowin: layout info-layout view/options/title/new infowin [all-over] "Info:" ] Than it works. But why it is so? | |
Anton 18-Sep-2006 [5521] | You must tell us what the value of INFOWIN is. |
Janeks 18-Sep-2006 [5522x2] | Info-win is block for layout definition. |
But in first case it was layout | |
Anton 18-Sep-2006 [5524x2] | Ok, there is confusion between the layout spec block and the resulting window face. A pattern I use very often: infospec: [ area button ... ] infowin: layout infospec either viewed? infowin [ ; bring the window to the front (or do the taskbar flash thing) infowin/changes: [restore activate] show infowin ][ view/new infowin ] |
In your first code, UNVIEW does not work because it does not take any arguments. As Graham said, to name the window to close, you must write: unview/ONLY your-window | |
Maxim 18-Sep-2006 [5526x3] | or even better |
unview/ONLY find-window face | |
which closes the window relative to an actual button... | |
Janeks 19-Sep-2006 [5529x2] | Anton, my first code unview does not wor also with /only. I tried it! |
The problem was that I could not unview (also with only) if I loded layout from remote script formed on web server. I can unview when I formed layout locally. | |
Anton 19-Sep-2006 [5531] | How does the remote script look ? How do you load the layout spec from the remote script ? |
Janeks 19-Sep-2006 [5532] | Remote script is mapserver template that returns map layer feature data based on coordinates: Something like: info-win: layout [ text "Fld:" text "[fldName]" ;this finaly looks just - text "value from table" etc ] |
Anton 19-Sep-2006 [5533] | Ok, so remote script looks like: -------------------------- rebol [] info-win: layout [ ...] -------------------------- Local script looks like: -------------------------- rebol [] info-win: do remote-script-url ; Now info-win is a FACE object ; Only do the above line once, otherwise you will create a *new* face and set 'info-win to it, forgetting the old one !! ; The following code is done more than once: either viewed? info-win [ info-win/changes: [restore activate] show info-win ][ view/new info-win ] |
older newer | first last |