AltME: R3-GUI

Messages

Andreas
But Graham is running Windows anyway, so it should work for him as well.
Cyphre
ah, that makes sense...the linux version doesn't have 'full view'...only DRAW
Andreas
Ah, yes! Right. I forgot about that. Stupid me.
Cyphre
The only plublic R3 View for Linux is from atronix so far.
We need to get Saphir on your build farm asap ;-)
Andreas
Yes. But probably even do one manual refresh of the builds until then :)
Cyphre
yes, no problem...can do that during the next week.
Andreas
Would require an updated R3-GUI as well, right?
Cyphre
yes, once new 'experimental' version is out, R3-GUI will be updated as well to reflect the funct/clos changes etc.
Andreas
Good that I didn't spend more time yesterday on this module thingie. Could have tried until old age, I guess.
Stupid :)
Cyphre
Unfortunately, the last Saphir Linux build was done at time when no Linux View port existed yet. Who would guess we'll have it couple months later? :)

GrahamC
view [
    title "Main Window"
    button "Open" on-action [
        cmd: none
        view/modal [
            title "Child Window"
            hpanel [
                label "Cmd:" field on-action [
                    set 'cmd get-face face
                    print cmd
                    close-window face
                ]
            ]
        ]
        print "this is not evaluated, and how do I set cmd in this context from the modal window"
    ]
]
looks like code after the view/modal is ignored ...
yoffset
view [
    title "Main Window"
    button "Open" on-action [
        cmd: none
        view/modal [
            title "Child Window"
            hpanel [
                label "Cmd:" f: field
                button "set command" on-action [
                    set 'cmd get-face f
                    print cmd
                    close-window face
                ]
            ]
        ]
        print "this is not evaluated, and how do I set cmd in this context from the modal window"
    ]
]

GrahamC
looks like a bug
doesn't load in in r3-gui ...
GrahamC
but using decode 'GIF read url works
yoffset
I misunderstood your original aim.  
You are correct.  Works with a regular nested view, but not with a nested view/modal.
yoffset
view is type gob!
but view/modal is type none

Last message posted 262 weeks ago.