AltME: R3-GUI

Messages

Andreas
Nope, same error with the public 32-bit Linux Saphir build.
Ah, but with the Atronix build it works. So I guess that's due to a fix which has been merged since.
Probably one of Ladislav's "multiple inheritance" / frame merging fixes.
Cyphre
Strange, I tested it with the Saphir version from http://development.saphirion.com/experimental/builds/win32/r3-view.exe which is quite old.
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"
    ]
]

Last message posted 265 weeks ago.