World: r3wp
[View] discuss view related issues
older newer | first last |
Josh 15-Dec-2005 [3469] | Does anyone have a method for determining the line number in an area? |
Volker 16-Dec-2005 [3470x3] | Henrik: try binding to ctx-text. Maybe thats all. |
Josh. Yes. Somewhere. | |
It was something with offset-to-caret and parse string "^/" IIRC | |
Ammon 16-Dec-2005 [3473] | If you have word wrap on you'll also have to calculate the width of the text field and find the wraps. |
Volker 16-Dec-2005 [3474] | No, thats offset-to-caret. |
Ammon 16-Dec-2005 [3475] | Ah, you are right. It's been a while since I played with the internals of the text area... |
Volker 16-Dec-2005 [3476] | but which line? that of the caret, or of really displayed area? |
Ammon 16-Dec-2005 [3477] | Good question. The initial question was kind of vague. |
Volker 16-Dec-2005 [3478x3] | If it is caret, this (parsing could be improved to not copy, and polling dropped by patching feel or set-face) |
s: copy"" repeat i 300[repend s [ i newline ]] help text-info view layout[ across ta: area s para[] slider 16x150 [scroll-para ta face] return info rate 1 feel[ engage: func[face a e][ set-face face either all[system/view/caret same? ta system/view/focal-face][ lines: parse/all copy/part ta/text system/view/caret "^/" form length? lines ][ "none" ] ]] ] | |
(forget that "help text-info"..) | |
DideC 16-Dec-2005 [3481] | edit-text binding : IIRC you have to bind it to ctx-text and maybe system/view too. set in ctx-text 'edit-text func [args] bind bind [newfunc] ctx-text system/view (or something of this kind) |
Volker 16-Dec-2005 [3482] | Is there a good intro to 3d, more based on examples than on math? |
Josh 16-Dec-2005 [3483] | Working on the editor, I think the bar at the bottom works well http://www.geocities.com/kealist/edit.JPG |
Henrik 16-Dec-2005 [3484] | I think it's a bit dark... maybe it should have the same color as the top bar or the botton text should be white |
Josh 16-Dec-2005 [3485] | You're right, it's updated now |
Henrik 17-Dec-2005 [3486] | BTW: has updating information been removed from View? When I start a 1.3.1.3.1 desktop under WinXP, I get no message about needing to upgrade to 1.3.2. |
Pekr 25-Dec-2005 [3487] | Hi - could anyone try following? I wanted to try some demos at my work, so I wen ty Cyphre's rebsite - start desktop\public\sites\cyphre\ and try Magic carpet ...at my work, with latest View, I could run the script and once I tried to close it, Rebol crashed, each time. I wanted to try it here at home, to eventually submit RAMBO ticket, but I am not able to even start the script - window shows, I can see black background, I can see rotating hours icon, then it silently disappears ... so - could anyone try it too? |
Sunanda 25-Dec-2005 [3488] | Works fine for me -- and no crashes when closed. But it fails to be minimized if I try that. |
DideC 26-Dec-2005 [3489] | With 1.3.2.3.1 (windows), I get an "Invalid face object!" error (nothing more than a black window is displayed). |
Pekr 26-Dec-2005 [3490] | thanks - crashed on me at work, and script closes automatically here at home ... |
François 26-Dec-2005 [3491x2] | Hello, I am lookig how to span? an iterated face, to make the face scrollable.µ |
Sample code: | |
Anton 27-Dec-2005 [3493] | do http://www.lexicon.net/antonr/rebol/gui/iterated/demo-vid-list-scroller.r |
Pekr 27-Dec-2005 [3494] | Anton - is this demo related to your earlier attempt to grid system, based on interation, being able to hold faces including events? |
Henrik 27-Dec-2005 [3495] | hope to release my new list-view for VID some time early next year... basing it on the standard LIST instead now |
Pekr 27-Dec-2005 [3496x4] | whoo, so many lists now :-) btw I wonder why Carl did not include his newer version of list, which was imo bacwards compatible, improved, and was done at days of IOS 1.3 View initiative ... |
did not know there is so many gfx libraries :-) http://dmoz.org/Computers/Programming/Graphics/Libraries/ | |
maybe as we found AGG, some small and cute 3D one plus compositing one could be found and integrated too :-) | |
nice - google search for "fast compositing engine" sports Rebol/View on fourth place. I just hope someone does not download View to see "fast" composition, real-time video transition effects etc :-) cool anyway that Rebol is listed :-) | |
François 27-Dec-2005 [3500] | Thanks for your links |
Robert 28-Dec-2005 [3501] | list: Petr, any reference to this improved version? I think I have it somewhere but can't remember the name of the script. |
Pekr 28-Dec-2005 [3502x2] | hmm, would have to start IOS Developers. Dunno if it is still running, because when I instlalled my own IOS server, you know that you can't have more than one IOS properly installed on one system - what a stupid aproach ... |
I can send you this by email, i think I found it off-line on my hd ... | |
Robert 28-Dec-2005 [3504] | ?? Why not? I'm connecting to more than 5 IOS systems. |
Pekr 28-Dec-2005 [3505x2] | because that is how default behaves .... |
I will repeat it till death - it is plain stupid - one stupid unnecessary string in registry, noone needs it, it complicates your life, you beg for it to be removed, noone listens ... period ... | |
DideC 28-Dec-2005 [3507x2] | With the command line argument to connect to the IOS server you want, you can start the IOS client sevral times, each one on a different server. |
Like altme. | |
Volker 28-Dec-2005 [3509] | And can be easily guified with sdk.. |
Robert 28-Dec-2005 [3510] | question: I'm using a text-list, which I update with some data after the use selected an entry. I want the slider to go to the top and show the first entry in the list as well. Positioning only the slider leaves the entries somewhere in teh middle. |
Volker 28-Dec-2005 [3511x2] | tl/update . IIRC its buggy, but top should work. |
by slider: sl/data: 0.0 do-face sl none | |
Robert 28-Dec-2005 [3513x3] | tl/update not working (only sometimes so it looks). |
How to add scroll-wheel support to a text-list? | |
If I have: view main-gui forever [ wait 0.1 ] How can I exit the forever loop if a user closes the program by ALT+F4 or clicking the closing X on the window? | |
Henrik 28-Dec-2005 [3516] | Sorry, Robert. There is something I want to announce. :-) http://hmkdesign.dk/list-test.png<--- a picture of the list view I'm building. Currently about half done and quite usable at this time: It's resizable. Values are stored as blocks of blocks. All columns can be sorted. Input columns can be filtered so you can show only some columns. Columns can be freely reordered (but not in the GUI yet). One arbitrary column can be resized. It has the normal range of series manipulation functions available in REBOL. There is also possibility for inline editing, by doubleclicking a line. Changed values are automatically stored in the list. All such operations are "bundled" in the list view VID code and you only need to provide whatever functions needed to store the list data in an external place. If a text entry is too wide, it'll be neatly cut with ellipsis (...). Filtering function, to filter input by rows. Also has a scroll-to-selected-line function. It's about as fast as the current LIST in VID, since it really is LIST with just a whole bunch of extra functions to make general list views easy. There are functions possible for clicking and double clicking and functions for retrieving rows and columns. Current limitations: No mouse over indication (can't make it fast enough). Only one resizable column. No keyboard navigation. No horizontal scrolling. No scroll-wheel support. It doesn't integrate 100% with VID yet. I'm using some of my own widgets and bitmap graphics from a pretty big GUI library. Stripe look, font and coloring is locked. No standard settings yet for the list view. All code is about 250 lines. Planning: Reordering columns via drag'n'drop. Column resizing, if I can figure it out. Format the font object conditionally from list input (make this line bold if the age column is > 45 years, etc.). Grid drawing. Images in list rows. And if I can get around to it: Single cell in-line editing ala spreadsheets. :-) |
Pekr 28-Dec-2005 [3517x2] | nice! |
can be columns selected to be viewed/hidden, without altering data block? E.g. with Cyphre's version, if you want to remove some column, you have to remove it from the data block ... | |
older newer | first last |