> Günther,
>
> > how do I create an application with one full screen *root* window and
> > other child windows within that root window?
> >
> > Similar to the view composer.
>
> I am not certain what you mean by full screen or root. Are you trying
> to create a shell? If so, subclass from Shell or DocumentShell and have
> fun.
>
And leave that shell opened when you make your deployment, or create a
subclass of RuntimeSessionManager with a #main method looking something like
this:
YourAppSessionManager>>main
self mainShellClass show
YourAppSessionManager Class>>mainShellClass
^YourAppMainShellPresenter
If you want your shell to be full screen, you can do it by maximizing it
with
yourShell view showMaximized
Regards.
Martin