World: r3wp
[View] discuss view related issues
older newer | first last |
Volker 14-Apr-2005 [889] | no idea about minimizing. crash maybe, but minimize? |
Anton 14-Apr-2005 [890x2] | You had me reading code there... yeah that's weird, the minimize - no where in code is "minimize" found. |
Here's the problem, surely: button "open" [save-file/? ta sr open-file refresh] | |
Volker 14-Apr-2005 [892x2] | can you look for wait: :my-wait and delete that? |
it contains a workaround on linux. maybe windows does not like it. | |
Anton 14-Apr-2005 [894] | refresh -> window -> hide main-window |
Volker 14-Apr-2005 [895] | aah - hmm, on linux i use [hid main-window] to stop timers before replacing layout. on windows that minimizes? |
Ammon 14-Apr-2005 [896] | yes |
Volker 14-Apr-2005 [897x3] | on linux it does nothing, except stopping timers and flash a moment. |
so that should be changed to [hide main-window/pane perhaps. | |
somewhere in the [window: func] | |
Anton 14-Apr-2005 [900x2] | Mmm. HIDE doesn't work on latest Rebol/View betas, but it minimizes a window face on View 1.2.1.3.1 |
doesn't work = doesn't change appearance of the window (don't know about timers yet) | |
Volker 14-Apr-2005 [902] | published a fix. can you try it again? |
Anton 14-Apr-2005 [903x2] | Open still tries to save, obviously, but when I cancel now it does not minimize (I see a quick flash of the window though) |
:) The next problem is: why is the "Open" button asking to save ? | |
Volker 14-Apr-2005 [905] | open tries to save the last file. it thinks it is modified, instead its missing. but text <> attempt[read file], so.. |
Anton 14-Apr-2005 [906x2] | Ok... |
Gosh! the two scrollers interact with each other... | |
Volker 14-Apr-2005 [908x3] | its tricky to stop the timers. hide works but flashes. hide on window does not flash on linux, so i thought i had a good way. |
yes, use the left. the right scrolls a fixed amount. | |
sometimes i have files with some 100kb. than the normal scroller scales not fine enough. then i use the right one to scroll in that area. | |
Anton 14-Apr-2005 [911] | Ah yes, a relative scroller. Middle-mouse button would be good for this one day... |
Volker 14-Apr-2005 [912] | yes, poor mans middle mouse :) |
Anton 14-Apr-2005 [913] | Maybe we can trap right+left combo ? |
Volker 14-Apr-2005 [914] | hmm, worth trying |
Anton 14-Apr-2005 [915x2] | I wanted to make one of those relative scroller icons as seen in Firefox. One day... |
Well, I got it to colourize some code. Pretty ugly ! ;-) but you're getting there. Interesting "floating" coloured blocks. | |
Volker 14-Apr-2005 [917] | interesting point is, you give it a text-face, a start and end, and a template for markup and do: markup-face ta make markup-face! [color: local/2] start end and then you have markup :) |
Gregg 15-Apr-2005 [918] | Very cool Volker! You never cease to amaze me. |
Volker 15-Apr-2005 [919x2] | *=blush*= :)9 |
:.)9 -> :) | |
ChristianE 15-Apr-2005 [921] | Does anybody know if it's possible to catch third mouse-button's up and down events? I know of the scroll-line and scroll-page thing, but ... |
Anton 15-Apr-2005 [922x3] | I don't think so. Let me check the binary :) |
Nope, there's only down, alt-down, up, alt-up | |
On windows maybe the system port will see the WM_MBUTTONDOWN & UP messages. | |
Volker 16-Apr-2005 [925] | Did you know you can do the whole markup with iterated faces? 1766 markups ~8000kb. |
Anton 17-Apr-2005 [926] | ChristianE, see (if you haven't already) the "Windows (MS)" group, where I posted some extra notes showing the beginning of how these messages can be captured using the system port (only on Windows, obviously). |
DideC 20-Apr-2005 [927] | I remember reading problem about using serial port with View window : you have to move mouse to get proper serial transfer (if not port take 1 sec to respond). Can't remember what was the conclusion about it ? Anybody ? |
Graham 20-Apr-2005 [928] | Petr says he owes me a beer cause I told him the solution to that .. but now I can't recall what it was! :( |
Pekr 20-Apr-2005 [929x3] | neither I .... hmm, I will look into my sources ... |
wasn't it addition of timer to layout? | |
timer: sensor 1x1 rate 0:01 feel [ engage: func [face action event] [ if all [action = 'time] [ do-face face none ] ] ] | |
Graham 20-Apr-2005 [932] | yes, I think it was. |
Anton 25-Apr-2005 [933x2] | www.rebol.net is working (showing the new server) OK. link to rambo is OK (and rambo lists newest bug OK.) link to http://mail.rebol.net/::: 503 Connect failed Your request for http://mail.rebol.net/could not be fulfilled, because the connection to mail.rebol.net (209.167.34.210) could not be established. |
(sorry) | |
Gregg 27-Apr-2005 [935] | Paul, irregular windows - Cyphre did one I'm pretty sure. |
[unknown: 5] 27-Apr-2005 [936] | Thanks Gregg. |
Ashley 27-Apr-2005 [937] | http://www.rebol.cz/~cyphre/trans-gui.r http://www.rebol.cz/~cyphre/trans-win.r |
ChristianE 2-May-2005 [938] | Is this a bug or by design? A faces pane, if of type block!, may contain not only face objects, but allows for words too (and maybe other types, but I didn't check this). At least it works and View doesn't complain. I sometimes use this for easy access of faces in crowdy pane; e.g. for faces A, B, C and F I can set do F/PANE: REDUCE ['a A 'b B 'c C]. But now I noticed in some popup-faces' code that SYSTEM/VIEW/WAKE-EVENT fails in such cases because of the line IF GET IN ITEM 'ACTION [BREAK/RETURN FALSE], which I had to patch to IF ALL [OBJECT? ITEM IN ITEM 'ACTION] [BREAK/RETURN FALSE] to make it work through such panes. Well, I'm really uncertain whether it is a good idea to build panes that way and if I have to think of WAKE-EVENT as being buggy, or if by design pane blocks really should consist of nothing but faces and the bug is me ignoring that. So, what do you think? |
older newer | first last |