AltME: R3-GUI

Messages

Gregg
What are you viewing with Giuseppe? If may be just LFs, rather than CRLF.
GiuseppeC
DideC
Probably the longest one-line script in the rebol world actually ;-)
Usefull, but pretty unreadable
GiuseppeC
There should have been a problem during generation/upload of the script. Lets wait for Robert
Robert
you should download rebgui.zip
The script rebgui.r is generated and not to work with directly. RebGUI is assembled from multiple source files.
Robert
And here is the source: rebgui-src.zip
GiuseppeC
Hi Robert, if you click "download page" on the first link above the changelog.
You receive:
http://development.saphirion.com/(null)/(null)
GiuseppeC
Ok, I admit I have not found neither rebgui.zip nor rebgui-src.zip
Could you give me direct links please ?

Robert
.../downloads/files/...
GiuseppeC
Forbidden
You don't have permission to access /downloads/files/ on this server.
Gabriele
http://development.saphirion.com/downloads/files/rebgui-src.zip
GiuseppeC
Thanks Q

GiuseppeC
During the past days I have found a lot of pages and documentation which traces work from many developers on R3GUI and on REBGUI too.
It will take some time for me to became familiar with the subject and undestand what is there, what has been removed, changed.
It will be a very difficult task... but I want to face it.

GiuseppeC
Where the latter came from ? Which of two is the better one to use ?
GiuseppeC
Also the FACE chapter:
http://development.saphirion.com/rebol/r3gui/faces/index.shtml
In saphirion documentation I read:
do-face Evaluate the standard action code sequence of a face
While on R3GUI:
http://www.r3gui.com/docs/developer/faces/faces.html
do-face Execute the standard action code sequence of a face
Code also differ:
Saphirion code:
verify: func [
    data [string!]
][
    ;just a placeholder code
    print "verifying face"
    random true
]
view [
    name:  field
    email: field
    button "Submit" on-action [
        unless verify get-face name [alert "invalid name"]
        unless verify get-face email [alert "invalid email address"]
    ]
]
R3GUI.COM code
name: field
email: field
button "Submit" do [
        unless verify get-face name [warn "invalid name"]
        unless verify get-face email [warn "invalid email address"]
]
This time Saphirion site seems more complete.
GiuseppeC
Misses all low level documentation
https://github.com/saphirion/documentation/tree/master/r3/r3-gui/developer/resizing
We find it split in another document
http://www.r3gui.com/docs/developer/resizing/resizing-ll.html
GiuseppeC

Last message posted 262 weeks ago.