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

World: r3wp

[!RebGUI] A lightweight alternative to VID

PeterWood
18-Jan-2008
[7353]
I think they do it that way to avoid having to use the mouse ...unless 
you can make the selection without using the mouse, choosing will 
be slower than typing.
Graham
18-Jan-2008
[7354x2]
On my mobile I use the * key to switch between choices
If a gui pops up, perhaps a key combination could be used to make 
a selection
Brock
18-Jan-2008
[7356x2]
Carl's Rebodex has something like what you describe.  It filters 
the data in a list rather than a drop-down type widget, but that 
would be easy enough to change.
... for you guys.  ;-)
Ashley
18-Jan-2008
[7358]
Note that drop-list / edit-list already have this feature.
Reichart
19-Jan-2008
[7359]
Ashley, you look at the art I uploaded?
Gabriele
19-Jan-2008
[7360x2]
graham, to me it would be faster to type than to select from a list, 
for most words. so it would really be just annoying. it can only 
help on longer words of which i'm not sure about the spelling...
it's a need on cell phones because of the small keyboard.
Henrik
19-Jan-2008
[7362]
Textmate only autocompletes when pressing escape. when pressing escape 
multiple times, you can switch between alternative completions.
Graham
19-Jan-2008
[7363x2]
Still ergonomists have thought hard on how to speed up typing on 
restricted keyboards .. maybe there is something there that can be 
taken to a full keyboard
different point - is it necessary for the highlight to be removed 
from a text widget if the focus has gone elsewhere?
It doesn't happen with list widgets
Ashley
19-Jan-2008
[7365x2]
Yes, text focus is implemented via View's caret handling functions 
which enable portions of text to be highlighted ... contrasted with 
list widgets which either highlight the entire row (or not).
Reichart, yes ... I'm deferring my decision until I've gone further 
with the UI changes; no point settling on something only to find 
it needs changing as the base look changes. I'll message you privately 
once the UI look is finalized and I'm ready to proceed with the [complementary] 
logo look.


Also, is there anything more comprehensive on the Quilt UI I can 
look at? I've got the Quilt Design Style Guide and the Search Sketch 
mockup, but really need something that either explains or shows color 
state changes (e.g. what happens as the mouse moves over various 
widgets and different states are triggered by clicking things)? Is 
there the equivalent of a Quilt "tour" I can take ... something that 
demos all widgets in action?
Reichart
20-Jan-2008
[7367x2]
Logo - Cool


Quilt - Not yet.  In fact, state changes and gestures (mouse moves, 
drag and drop) is not done yet.  However, ya'll can be the first 
to learn, Richard (Cypher) will be taking over as head of development 
for Quilt.


Jason, Will and my self designed it up to this point, and now Richard 
and I will carry it forward, with Jason and I moving on to building 
a complete and fast Rich Text Editor for Qtask, and Will and I will 
be making our Calendar more dynamic.
Edgar will be leading the API back end...
AdrianS
20-Jan-2008
[7369]
410
Ashley
21-Jan-2008
[7370]
?
AdrianS
21-Jan-2008
[7371]
I have no clue when and why I might have entered "410". It wasn't 
me! Maybe one of my little guys got near the keyboard...
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 :)