[Pharo-users] Monticello reverse project dependency

2016-02-13 Thread Peter Uhnák
Hi, I have the following situation: I have ProjectMain, and ProjectPlugin, now normally the Plugin depends on Main, however I would like to load Plugin as part of Main. The problem is that I can't specify to load Plugin after Main has been already fully loaded, if I do something like this Basel

Re: [Pharo-users] Getting whether specific key is currently pressed

2016-02-13 Thread Henrik Nergaard
Quick and dirty: "Sensor shiftPressed" The modification keys (shift/ctrl/alt/cmd?) is available at the MorphicEvent side see the class UserInputEvent (variable buttons + protocol modifier state). Adding a variable to TRAbstractMouseEvent (removing those at TRAbstractMouseClick) which hold this

Re: [Pharo-users] Getting whether specific key is currently pressed

2016-02-13 Thread Jan Blizničenko
That's true, but I'm not sure that modifying TRMorph, TRMouseDragStart and TRMouseDragEnd is the right way to go here, so I'm interested in finding simpler solution if there is any. Jan Peter Uhnák wrote > Mouse and keyboard events are usually captured by TRMorph and then > converted into Roassa

Re: [Pharo-users] Getting whether specific key is currently pressed

2016-02-13 Thread Peter Uhnák
Mouse and keyboard events are usually captured by TRMorph and then converted into Roassal events, so check there. Peter On Sat, Feb 13, 2016 at 4:06 PM, Jan Blizničenko wrote: > Hello > > I would like to ask whether is there any way to directly find out if > specific key (shift in my case) is c

Re: [Pharo-users] Recommended VM on Raspberry Pi ?

2016-02-13 Thread Sven Van Caekenberghe
Here is what I did (on a fresh Raspberry Pi 2 B) $ uname -a Linux raspberrypi 4.1.13-v7+ #826 SMP PREEMPT Fri Nov 13 20:19:03 GMT 2015 armv7l GNU/Linux $ curl get.pharo.org/50 | bash $ wget http://files.pharo.org/sources/PharoV40.sources.zip $ wget http://files.pharo.org/vm/pharoS/raspbian/lates

[Pharo-users] Getting whether specific key is currently pressed

2016-02-13 Thread Jan Blizničenko
Hello I would like to ask whether is there any way to directly find out if specific key (shift in my case) is currently pressed. I am trying to implement own multi-selection of elements drawn on Roassal canvas, but I do not receive original MouseClick/Drag/whatever event with shiftKeyPressed, but

Re: [Pharo-users] [ANN] airflowing shut down

2016-02-13 Thread Sven Van Caekenberghe
> On 13 Feb 2016, at 13:20, Sebastian Sastre > wrote: > > Hi guys, > > TL;DR: it didn’t reached expectations so we’re shutting down and moving on > into other business that are doing great. > > More details in the release available here: > http://airflowing.com > > Including references to t

[Pharo-users] [ANN] airflowing shut down

2016-02-13 Thread Sebastian Sastre
Hi guys, TL;DR: it didn’t reached expectations so we’re shutting down and moving on into other business that are doing great. More details in the release available here: http://airflowing.com Including references to the parts we’ve open-sourced The Smalltalk community has a special place in my

Re: [Pharo-users] Recommended VM on Raspberry Pi ?

2016-02-13 Thread Clément Bera
Hello Sven, You can use the VM with the JIT on the Pie now (Spur Cog VM). It is deployed by default on the recent raspberry pis and has millions of users for Squeak and Scratch since August 2015 (the raspberry pie fondation paid Tim for the ARM JIT on the Cog because of the size of their user base

Re: [Pharo-users] OS(Sub)Process on Raspberry Pi ?

2016-02-13 Thread Clément Bera
The latest FFI uses the old VM FFI which works on x86 and ARM and a new front-end which is seemingly x86 dependent. So OSSubProcess will work if you use FFI, but the old syntax not the new one. 2016-02-13 0:23 GMT+01:00 Mariano Martinez Peck : > Hi Sven, > > Since OSSubprocess uses the latest FF