AltME: R3-GUI

Messages

amacleod
SWT is hitting the native api widget set on windows and mac the same way you plan or is this an example list?
james_nak
A customizable requester system would really be nice as well, not just for obtaining new information but also for presenting existing info/states. As I have stated previously, Henrik's VEK was pretty good at this.
PeterWood
SWT uses the native API GUI.

DocKimbel
Alan: both. :-) Though, our list won't exactly match, but it should be very close.
DocKimbel
Face/edge seems to gone in R3 GUI, what happened to it? As the feature been moved elsewhere?
http://www.rebol.com/docs/view-face-content.html#section-15
As => Has
Rebolek
Edge is now part of draw block.
DocKimbel
Any links about how "draw blocks" work in R3 GUI?
DocKimbel
Has DO-COMMANDS been implemented in R3?
http://www.rebol.com/r3/docs/functions/do-commands.html
DocKimbel
Edge: so actually, it's really gone as I see in R3 GUI that you need to manually write code for drawing edges. Anyone knows the reason of this change from R2? I always found face/edge very convenient in R2.
Rebolek
R2's edge may be convenient but is too simplistic also. You have just few presets available. In R3 GOB system, you would need to implemented it using special GOB or special DRAW block which would be appened/inserted to main DRAW block (but taht is something that is possible with small effort with current implementation).
What do you want to know about draw blocks in R3 GUI? You can have one or more of them, each for different state (focused/non-focused state, etc.). Some variables are bound so you can change colors globally and the block is composed before use, so it's possible to use some math.
DocKimbel
You can pass a DRAW block to R2's edge when you need more complex layouts.
Rebolek
I think there was some talk to add something like EDGE to R3GUI, to simplify things like focus, but noone ever implemented it.
DocKimbel
Thanks for the info. I will most probably support EDGE facets in Red/View.
Gregg
I liked EDGE too, and images could be used for it too, though I never did more than play with that, I thought that was the original intended way to do more advanced edges, if not as eifficient as DRAW. I do remember Carl saying something about not like EDGE himself, so it went away.
I suppose using edge was somewhat redundant if you used an image with 'extend to make your shapes. Chris R-G often made very nice looking styles with R2, so worth getting his input as a designer as well.
Pekr
R3-GUI was supposed to be mostly a draw based, no bitmaps ....
Rebolek
EDGE is fine for some widgets. If you have for example circular radio button, EDGE won't help you very much.
Gregg
Vector is the way of the world for many things now, because of varying display densities and screen sizes, but EDGE can still get you a long way IMO. At least for squares like me. ;-)
Oldes
Actually rendering bitmaps is stil the most efficient way and so is used on mobile devices. You just must do it in the way how GPU likes it, for example use texture atlases, multiple assets per resolution, etc. Drawing gui using CPU is a no-go on mobiles and OSes too... no wonder that Vista was so bad OS, when it had only CPU gui rendering. Using pure vectors on GPU is also not that good, if you don't need just rectangles... because of expensive anti-aliasing.

Last message posted 262 weeks ago.