Re: [Pharo-dev] How to combine event listeners in Bloc?

2015-07-16 Thread Alain Plantec via Pharo-dev
---BeginMessage--- De:Stephan Eggermont step...@stack.nl Date:jeu j juil. AM à 9:51 Objet:Re: [Pharo-dev] How to combine event listeners in Bloc? is only overridden in TableLayout. Is that a separate responsibility in Bloc or is that part of the responsibility of a LayoutStrategy (or even an

[Pharo-dev] [pharo-project/pharo-core] a710ed: 50173

2015-07-16 Thread GitHub
Branch: refs/heads/5.0 Home: https://github.com/pharo-project/pharo-core Commit: a710ed58b1a2dc4e9d8d31ed7af96371366ae5bd https://github.com/pharo-project/pharo-core/commit/a710ed58b1a2dc4e9d8d31ed7af96371366ae5bd Author: Jenkins Build Server bo...@pharo-project.org Date:

[Pharo-dev] [pharo-project/pharo-core]

2015-07-16 Thread GitHub
Branch: refs/tags/50173 Home: https://github.com/pharo-project/pharo-core

Re: [Pharo-dev] How to combine event listeners in Bloc?

2015-07-16 Thread Alain Plantec via Pharo-dev
---BeginMessage--- Hello Stephan Have a look at Bloc-DragPanels-AlainPlantec.9 I’ve added two event listeners. Cheers Alain On 15 Jul 2015, at 17:26, Stephan Eggermont step...@stack.nl wrote: On 15/07/15 15:51, Alain Plantec via Pharo-dev wrote: the problem with BlPasteUpEventListener is

Re: [Pharo-dev] How to combine event listeners in Bloc?

2015-07-16 Thread Stephan Eggermont
Nice, looking good. Thank you. Making good progress. I can now drag-drop a color from one panel to another. In Morphic the layout would then be responsible for determining at which position in the submorph collection this would be added. In morphic that is done with

Re: [Pharo-dev] Pharo 5: browser windows are extremely resource hungry

2015-07-16 Thread Henrik Johansen
On 16 Jul 2015, at 9:36 , Esteban Lorenzano esteba...@gmail.com wrote: On 16 Jul 2015, at 09:10, Max Leske maxle...@gmail.com wrote: Apparently this is a polling bug in the new FastTable. FastTable should not have been activated yet Esteban told me and in the newest build indeed

[Pharo-dev] libSDL2 not present in full download

2015-07-16 Thread jannik laval
Hi pharoers, I was trying to use OSWindow, but in a full Download (Image+VM), the plugin SDL2 is not present. Does this mean that the full download is based on an old VM ? It is the case for Pharo 4 and Pharo 5. Cheers, -- ~~Jannik Laval~~ École des Mines de Douai Enseignant-chercheur

[Pharo-dev] [pharo-project/pharo-core]

2015-07-16 Thread GitHub
Branch: refs/tags/50174 Home: https://github.com/pharo-project/pharo-core

[Pharo-dev] [pharo-project/pharo-core] 0b9a9b: 50174

2015-07-16 Thread GitHub
Branch: refs/heads/5.0 Home: https://github.com/pharo-project/pharo-core Commit: 0b9a9ba2b14eb3fc549d4a666a7138feed9e088b https://github.com/pharo-project/pharo-core/commit/0b9a9ba2b14eb3fc549d4a666a7138feed9e088b Author: Jenkins Build Server bo...@pharo-project.org Date:

Re: [Pharo-dev] How to combine event listeners in Bloc?

2015-07-16 Thread Stephan Eggermont
Hmm, this is not too bad. But it still is dependent on the layout. BlCardLayoutdropAccepted: anEvent |wellPanelFlow droppedMorph localPosition | wellPanelFlow := anEvent handler. droppedMorph := anEvent contents asDragWell. localPosition := wellPanelFlow globalPointToLocal:

Re: [Pharo-dev] Comments in STON

2015-07-16 Thread Guillermo Polito
Hi Sven! I'm finally using the new STON with comments and I found one little problem: my ston file has urls :/ { // comment ok, skipped /* comment ok, skipped */ aURL: http://ouch.it.will.be.skipped/and/break?my=ston; } That is, doing: STON fromStreamWithComments: '{ // comment ok, skipped

Re: [Pharo-dev] libSDL2 not present in full download

2015-07-16 Thread Clément Bera
Hello, I am using SDL2 for a project and this project is in development. You have to use the latest VM from files.pharo.org and load the bleeding edge of OSWindow from its configuration in the latest Pharo 5. From my experience, it is usable but there are still a few issues like the fullscreen

Re: [Pharo-dev] How to combine event listeners in Bloc?

2015-07-16 Thread Stephan Eggermont
On 16-07-15 11:41, Alain Plantec via Pharo-dev wrote: i think it is better as specific feature of the pane event listener It feels a bit like feature envy. Too much poking around. BlWellPanelFlowEventListenerPaneldropAccepted: anEvent |wellPanelFlow droppedMorph localPosition found|

Re: [Pharo-dev] Comments in STON

2015-07-16 Thread Sven Van Caekenberghe
Guille, I understand the problem. The reason is that STONCStyleCommentsSkipStream was/is a quick hack and does not know/understand anything about strings. It seems that the C preprocessor ignores comments in C strings, so we could consider adding that. Basically

Re: [Pharo-dev] libSDL2 not present in full download

2015-07-16 Thread Matthieu Lacaton
I have problems with saving the image while SDL2 windows are opened. What OS are you using ? I don't seem to have this issue right now but I've already experienced it before. Do you have a way to reproduce it ? 2015-07-16 19:12 GMT+02:00 Clément Bera bera.clem...@gmail.com: Hello, I am

[Pharo-dev] Copy-on-write for a multithreaded VM

2015-07-16 Thread Ben Coman
I am curious what are the issues holding us back from a multithreaded VM being mainstream, since I had a passing thought about a strategy for a partial-multi-threaded-VM. I see multi-threading been prototyped before with RoarVM [1] HydraVM [2], and the CogBlog project page [3] says While