r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[!RebGUI] A lightweight alternative to VID

Ammon
21-Jan-2008
[7372]
;-)
Kai
24-Jan-2008
[7373]
I see how I can "talk" to , say, a text in a group by doing   set-text 
group/pane/1  but how  do I set the caption of a text in a group 
on the second tab of a tabgroup?
Ashley
24-Jan-2008
[7374]
set-text group "New Text"
Luis
25-Jan-2008
[7375]
Ahley : How do I change  dinamically the tree  widget ? (nodes and 
texts)
Graham
25-Jan-2008
[7376x2]
you can't
add or remove nodes
Graham
27-Jan-2008
[7378x2]
>> items: [ "a" "b" "c" ]
== ["a" "b" "c"]

>> foreach i items [ display/dialog "" compose/deep [ button (i) 
[ unview ]]] do-events


why does this only display the first "a" button and none after that 
?
use hide-popup ...
Graham
31-Jan-2008
[7380x2]
User wants to know if they can right click on a radio-group to de-select 
any selection.
I can't get the radio-group to respond to an alt-click.
Anton
31-Jan-2008
[7382x4]
Do you mean, undo ?
A radio group implies that one option and only one must be selected 
at all times.
It sounds like an unreasonable request. :)
What are the choices the radio group is representing ? Is the radio 
group the appropriate widget in that situation ?
Graham
31-Jan-2008
[7386x2]
Anton, it's a text generation tool.
So, for example we might have
label "tonsils" radio-group data [ "normal" "abnormal" ]


So, if the user clicks on "normal" then the text generated is "tonsils 
normal" but if nothing is ticked, then no text is generated.
Ashley
31-Jan-2008
[7388]
Wouldn't it be better to make that explicit, as in:

	radio-group data [1 "NA"  "normal" "abnormal"]
Graham
31-Jan-2008
[7389]
Easier to see if unset rather than 1/3 set somewhere
Kai
1-Feb-2008
[7390]
Any chance we'll be able to use a 'set-state/info with checks, spinners, 
drop-lists any time soon?
Anton
1-Feb-2008
[7391x3]
This calls for a radio group with an extra "unset/unspecified" item 
to the left, eg:

                / --(o) normal
unset  (o) 
                \ --(o) abnormal
It would have the same specification as Ashley's example above, but 
the first item is placed to the left of the other items to make it 
visually distinct.
So that's calling for a new widget, or widget variant, of course.
Graham
1-Feb-2008
[7394x2]
sounds too hard
because of spacing etc
Anton
1-Feb-2008
[7396]
Just go with Ashley's suggestion, then, as it reflects the actual 
states.
Graham
4-Feb-2008
[7397x2]
This is my attempt at computer generated medical notes 
http://synapse-movies.s3.amazonaws.com/Synapse-chained-macros.wmv
I would like to double click on the choices in the edit-list, but 
that then results in loss of the highlite on the selected word.

Also, I would like to see some way for the text to scroll following 
the highlite, and currently I have to move the slider manually.
Brock
4-Feb-2008
[7399]
Nice work Graham.
Jerry
4-Feb-2008
[7400]
Graham, it's really cool.
Gregg
4-Feb-2008
[7401]
Impressive as always Graham.
Graham
4-Feb-2008
[7402]
thanks .. now to see if Ashley can help improve the focus/highlighting 
issues :)
Ashley
5-Feb-2008
[7403]
Quite possible ... I'm looking at a 'no-focus option that would allow 
you to click certain widgets (e.g. text-list) *without* changing 
focus. This option would be the exception rather than the rule.
Kai
5-Feb-2008
[7404]
Any chance we'll be able to use a 'set-state/info with checks, spinners, 
drop-lists any time soon?
Graham
5-Feb-2008
[7405]
Sounds great!
Ashley
5-Feb-2008
[7406]
A set-info func is in the works, but requires some rather extensive 
widget changes (e.g. drop-list and edit-list are different widgets 
at present).
Graham
5-Feb-2008
[7407]
I don't know how easily this can be fixed, but in VID if you highlight 
a text field by dragging across it and move outside the field, the 
highlight stays.  But in Rebgui .. it is lost.
Graham
8-Feb-2008
[7408]
Any chance of having a filter that we can place on a table?
Ashley
9-Feb-2008
[7409]
Suggested specification syntax?
Graham
9-Feb-2008
[7410x3]
Well, we need to be able to specify a column, or a list of columns, 
 and a test on that column(s).
How about having an object that represents each column, and we can 
provide a function for each column, or none! .. and if the function 
returns true, for each column where there is a function, then it 
displays ?
Maybe we can also control the sort order this way as well?
Graham
18-Feb-2008
[7413x2]
Is there a way I can hook into the table display so that I can apply 
a formatting function to a column?
I've got a value of .004 that is being displayed in scientific notation, 
and so I want to use Gabriele's form-decimal on it at display time.
btiffin
18-Feb-2008
[7415]
Yeah, it's too bad about that  ecvt issue in Wine.  It's been reported 
for years now.  Quite a few attempts by people to get patches approved 
have gone by the by.
Graham
19-Feb-2008
[7416x2]
ecvt ?
Ok.  got it.
Ashley
19-Feb-2008
[7418]
I've got a value of .004 ...

 ... best way is to pre-format the data by poking the string form 
 you wish to present it in.
Graham
19-Feb-2008
[7419]
Trouble is, all sorts of functions use the data and expect it to 
be numeric, and not a string.
Ashley
20-Feb-2008
[7420]
The problem's a bit more general than table data then ... what happens 
when this decimal value appears in other widgets (e.g. text, field, 
drop-list, etc) ... fix needs to be at the native level ... perhaps 
we need to patch 'form as an interim measure? Is this a windows only 
issue?
Graham
20-Feb-2008
[7421]
Actually it's a wine issue.  I store the data in the table/data so 
am reluctant to form it there as I use the data for various calculations. 
 Oh well, I have now formed it into text.