2017-07-17 15:50 GMT+02:00 Luke Gorrie <[email protected]>: > Hoi! > > I am looking for a way to run a window in full-screen mode in Pharo. That > is it should maximize, beyond the bounds that the expand button usually > takes, and it should automatically resize when the world does. > > I'm thinking of the GTInspector but a custom class would be fine too. > > Is there a simple solution? > > On Discord I got a partial solution: > > window := GTInspector openOn: self. > window > removeBoxes; > beSticky; > bounds: window world clearArea. > > but the main problem here is that it doesn't resize when the world does. > > I wonder if it would make more sense to avoid the SystemWindow and embed > the inspector directly in the World somehow...? > > Cheers! > -Luke > > There is a FullscreenMorph
see for example StandardWindow>>#openFullscreen
