Re: [Pharo-users] separate native window of same Pharo image

2018-08-17 Thread kmo
Who knows whether OSWindow is maintained? Who knows if anybody cares that it doesn't work on Windows? OSWindow is like lots of things that suddenly appear in the Pharo standard image. There's no documentation. There's no plan. That's the Pharo way. Give it a year or two and it will be superseded

Re: [Pharo-users] separate native window of same Pharo image

2018-08-16 Thread Peter Uhnak
> I believe this is a known Windows issue. Well this is more of a show-stopper than just an issue. Is the project maintained? Is Windows support something that is planned? Thanks, Peter On Thu, Jul 19, 2018 at 7:35 PM kmo wrote: > I believe this is a known Windows issue. I have certainly

Re: [Pharo-users] separate native window of same Pharo image

2018-07-19 Thread kmo
I believe this is a known Windows issue. I have certainly seen it on my Windows machine at work. Doesn't happen on Linux. -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] separate native window of same Pharo image

2018-07-19 Thread Peter Uhnák
Thank you both, this is exactly what I was looking for! But I ran into an issue (maybe this is Windows (10) specific): once I open the window, the original Pharo window is no longer responsive. It is not frozen, I can see a cursor blinking in the playground, but clicking anywhere or pressing any

Re: [Pharo-users] separate native window of same Pharo image

2018-07-19 Thread kmo
Here's a screenshot of two roses windows being run from a pharo image in another window -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] separate native window of same Pharo image

2018-07-19 Thread kmo
it is perfectly possible with OS-Window to create a morphic world and create your own morphic content for it, then display it in a completely different operating system window. This is how I created a simple application which displays geometric "roses" in a separate window to the pharo window.

Re: [Pharo-users] separate native window of same Pharo image

2018-07-19 Thread alvaro piorno
Hi, I played a bit with that. I did something like this: window := OSWindow createWithAttributes: (OSWindowAttributes new resizable: false; yourself). window title: title. And then: surface := AthensCairoSDLSurface fromSDLSurface: self window handle handle getWindowSurface Then you can render

[Pharo-users] separate native window of same Pharo image

2018-07-19 Thread Peter Uhnák
Hi, did anyone play around with launching a separate native window for Pharo? E.g. I have normal window in which Pharo is, and then I open a separate native window that shows just e.g. Transcript. I know that there are some projects like OSWindow-SDL and OSWindows-UI (using WinAPI), but both of