Re: [Pharo-users] Controlling the Pharo window

2014-09-22 Thread kilon alios
thanks I will keep it mind and watch it. I hope one day all drawing happens at the image side and not at the VM so its more easy to hack it. On Mon, Sep 22, 2014 at 11:40 PM, stepharo wrote: > Check the OSWindow bug entry on fogbugz because soon we will integrate it. > OSWindow is an API to cal

Re: [Pharo-users] Controlling the Pharo window

2014-09-22 Thread stepharo
Check the OSWindow bug entry on fogbugz because soon we will integrate it. OSWindow is an API to call/control windows from the OSes developed by Ronie and Igor. Then we will bind to SDL so that we can get the same underlying system on all platform. But there is still some work to do and too m

Re: [Pharo-users] Controlling the Pharo window

2014-09-22 Thread kilon alios
nice , the above works on macos too, pity it does not have a locate method but for now it will do. On Mon, Sep 22, 2014 at 12:48 PM, kilon alios wrote: > Thank Hilaire , I understand how to wrap my code to a cross platform > class. Definetly will look at (have done already previously) DrGeo as m

Re: [Pharo-users] Controlling the Pharo window

2014-09-22 Thread kilon alios
Thank Hilaire , I understand how to wrap my code to a cross platform class. Definetly will look at (have done already previously) DrGeo as most likely I will rely heavily on Morphic. Nicolai ,I tried this code in Windows and works DisplayScreen hostWindowSize: 500@500. DisplayScreen hostWindowTi

Re: [Pharo-users] Controlling the Pharo window

2014-09-22 Thread Nicolai Hess
Another solution could be the HostWindowPlugin. Look at DisplayScreen class >> hostWindow This could be platform independent but I don't know if it works on all platforms: 12231 DisplayScreen hostWindowTitle: not working on Linux (ubuntu) 2014-0

Re: [Pharo-users] Controlling the Pharo window

2014-09-22 Thread Hilaire
Le 22/09/2014 11:20, Hilaire a écrit : > Le 22/09/2014 10:55, kilon alios a écrit : >> I was talking about something cross platform but NB is good too. Makes me >> wonder the potential of hacking the pharo window, maybe for embedding QT to >> it or what else. > > You can wrap this in a Plateform h

Re: [Pharo-users] Controlling the Pharo window

2014-09-22 Thread Hilaire
Le 22/09/2014 10:55, kilon alios a écrit : > I was talking about something cross platform but NB is good too. Makes me > wonder the potential of hacking the pharo window, maybe for embedding QT to > it or what else. You can wrap this in a Plateform hierarchy to make it crossplateform from the Epha

Re: [Pharo-users] Controlling the Pharo window

2014-09-22 Thread kilon alios
I was talking about something cross platform but NB is good too. Makes me wonder the potential of hacking the pharo window, maybe for embedding QT to it or what else. On Mon, Sep 22, 2014 at 11:45 AM, Laurent wrote: > And on Linux/X11: > https://ci.inria.fr/pharo-contribution/job/PharoForTheEnte

Re: [Pharo-users] Controlling the Pharo window

2014-09-22 Thread Laurent
And on Linux/X11: https://ci.inria.fr/pharo-contribution/job/PharoForTheEnterprise/lastSuccessfulBuild/artifact/NativeBoost/NativeBoost.pier.html Laurent Le lun. 22 sept. 2014 à 10:37, Nicolai Hess a écrit : NB? on Windows: NBWin32Window getActiveWindow moveWindowX:10 y:10 width:500 height:1

Re: [Pharo-users] Controlling the Pharo window

2014-09-22 Thread Nicolai Hess
NB? on Windows: NBWin32Window getActiveWindow moveWindowX:10 y:10 width:500 height:150 2014-09-22 9:59 GMT+02:00 kilon alios : > Is there a way to move the pharo window around, resize it and generally > control it ? >

[Pharo-users] Controlling the Pharo window

2014-09-22 Thread kilon alios
Is there a way to move the pharo window around, resize it and generally control it ?