World: r3wp
[!RebGUI] A lightweight alternative to VID
older newer | first last |
Graham 13-Jul-2006 [4535] | Oh well, I'm glad I have reproduced this annoying bug .. I deserve some sleep now! past midnight. |
Volker 13-Jul-2006 [4536] | Good work. And good night. :) |
Graham 13-Jul-2006 [4537] | maybe some wizard will have fixed it by the time I awake :) |
Pekr 13-Jul-2006 [4538] | Cyphre will look into it now and post results here ... |
Volker 13-Jul-2006 [4539x3] | ;a quick fix seems to be process-keystroke: make function! [face event /local f] [ switch/default event/key [ #"^-" [ if all[view*/focal-face viewed? view*/focal-face][ |
added the "viewed? view*/focal-face" | |
recurses in next-field with wrap: true, and the face is always the focused one from the closed window. but i guess cyphre found that too :9 | |
Pekr 13-Jul-2006 [4542] | not sure he looked into it, yet :-) |
Volker 13-Jul-2006 [4543x2] | rebooted to early. forgot to mention its here: all [ ; [che] -- Return older siblings. target: next-field/wrap face |
not? how long does graham sleep? :) | |
[unknown: 9] 13-Jul-2006 [4545] | Graham: "For me, function is beauty" As it is for me. But your statement here implies that this issue is superfluous in light of deeper issues, which mischaracterizes the problem. Form and function go hand in hand. In a GUI (which literally implies both form and function) subtle information is transmitted in the cross roads of the form and the function. Links, buttons, rounded buttons mean different things in different places. To marginalize it may be myopic. Anton: "I think that can't be good for people with vision problems. I say stick to the simple old ways." We are actually going to offer both, we are actively working on this. . |
Anton 13-Jul-2006 [4546] | Volker, last time I looked a pane *block* cannot contain functions. (I remember wishing it could.) |
Graham 14-Jul-2006 [4547] | Volker, that patch seems to work. I shall report back over time... thanks. |
Cyphre 14-Jul-2006 [4548] | Graham, I just looked into the problem. It was not caused by the RADIO-GROUP changes (as it crashes even when remove the widget from your layout). And yes, Volker's quick fix looks good to me ;-) |
Graham 14-Jul-2006 [4549x2] | Yes, I came to that conclusion. I think I updated Rebgui with the tab changes and the radio group changes at the same time. |
I hope someone with write access can fix the sources. | |
Robert 15-Jul-2006 [4551x3] | I want to add a row to a table but I don't want to keep a special block containing all the table values. How to do it? I only can get one entry added and than it's reused. Looks like some sharing is happening. |
Ok, I just used INSERT... seems obvious ;-) | |
but doesn't work... again some sharing stuff. Some lines become like others after serveral inserts. | |
Graham 15-Jul-2006 [4554x5] | Another area problem :( ** Script Error: Cannot use path on none! value ** Where: switch ** Near: pane/data: - para/scroll/y / (total - visible) ** Press enter to quit... |
this was using a scrollwheel on a field | |
so the problem lies in rebgui-edit.r | |
This patch solves the problem: if found? [ pane/data: - para/scroll/y / (total - visible) ] in the scroll-line and sroll-page functions | |
if found? pane [ pane/data: - para/scroll/y / (total - visible) ] | |
Ashley 15-Jul-2006 [4559x3] | What build are you using? #26 already wraps those within an all block. |
Robert, have a look at %tour.r to see how it adds rows to a table (and refreshes). | |
Uploaded rev#27 with Volker's fix. | |
Graham 15-Jul-2006 [4562] | Ahh... I see Cyphre fixed it already. |
Graham 18-Jul-2006 [4563] | Ashely ... Windows tablet OS support in RebGUI ? Feasible? |
Ashley 18-Jul-2006 [4564] | Input panel support works with View, native support requires MS compilers. |
Janeks 18-Jul-2006 [4565] | Can I use bold for selected rows of table widget? |
Pekr 18-Jul-2006 [4566x3] | there can be multiple selected rows actually? |
hmm, that is something which is not planned for grid .... | |
in two weeks I will have something for you to test. Actually, we could release it sooner, but it is preliminary imo, as Cyphre is finishing hilighting, adding keyboard navigation, etc. | |
Janeks 18-Jul-2006 [4569] | I observed it already - but what I want is to mark some rows with bold or other color or something similar. |
Pekr 18-Jul-2006 [4570x2] | but so far, I am very satisfied, the grid does tri-state columns sorting, functions for insert, remove, swap columns were added, you can have whatever element in cell, etc. |
Janeks - usually, if I need something like that, I add column with checkboxes .... | |
Janeks 18-Jul-2006 [4572] | How to... ? |
Pekr 18-Jul-2006 [4573x2] | well, not sure about tables, but new grid will allow that ... |
even 0.3 version was imo better than what table offers .... I was quite surprised, how anyone can use that for real application? | |
Ashley 18-Jul-2006 [4575] | I do. Table is good for text-only multiple column rows where you don't need cell-level addressing. Grid will satisfy those who need something more complex ... but don't confuse functionality/complexity with "better". Table meets *my* needs, Grid meets *yours*; and folks can choose to use the most appropriate one for the task at hand. Choice is good. |
Graham 19-Jul-2006 [4576x2] | Most of the time I have no need for cell level addressing so the table works fine. But I could use a grid someday ... |
but a table that could colour rows would be very nice too | |
Janeks 19-Jul-2006 [4578] | I do not need cell level adressing. It could be even enought with simple list. It seems that in begginging I will use them and for statuss changes use just some part of text or some symbols: F.ex: Msg#1 2006-Jun-01 Unread Msg#2 2006-Jun-01 Read But any way - what could you recoment to use for scrollable list with either changeable colors, font styles or including some small icon? |
Graham 19-Jul-2006 [4579] | For VID, use list-view |
Janeks 19-Jul-2006 [4580] | Thanks - looks nice - have to try! |
Pekr 19-Jul-2006 [4581] | I need horizontal scrolling, not cell level adressing so much .... table is simply not of much use for most database driven apps ... not sure how you design your apps, but I tend to have more than one, two, or three columns to display. There is no solution for rebgui currently. I do agree, that choice is always good. Btw - the bug with scrolling hilite under the horizon is still present with table :-) |
Cyphre 19-Jul-2006 [4582] | Pekr: yesterday I fixed the 'scroling bug' in table. Will post it to SVN soon. |
Pekr 19-Jul-2006 [4583] | ah, thanks :-) |
Graham 19-Jul-2006 [4584] | forgotten, how to display a particular tab programmatically? |
older newer | first last |