Re: [Pharo-users] Rule engine

2015-02-15 Thread stepharo
I understand that the enery may not be worth :) Le 14/2/15 18:13, Kris Gybels a écrit : You remember correctly Stef, but this was a prototype from quite a while ago, it's not on-going work. I can probably still find the code for it somewhere in my archives, but I'm not sure it's in any state w

[Pharo-users] Atomic Game from Gustavo Rafael Pistoia is available :)

2015-02-15 Thread stepharo
Atomic is game where you have to build chemical molecules using given atoms. The goal is to solve a level with as few moves as possible. The level is solved when the new molecule has the same structure as shown by the preview molecule (on the top right). In the higher levels, some tactical

[Pharo-users] On GUI design and how to benchmark it

2015-02-15 Thread Sebastian Sastre
Hi guys, I saw the interest in GUI lately and today I come across this really well researched master thesis paper that can put some light on how good we can perform in the GUI spectrum in terms of practicality, expressivity and productivity Introduction Even though OOP was born with the SIMU

Re: [Pharo-users] On GUI design and how to benchmark it

2015-02-15 Thread Thierry Goubier
Hi Sebastian, a guy which starts by saying that no GUI toolkit of significance were written in FP, and forget to link or cite Garnet (by B. Myers) (Common Lisp) is, how to say, intriguing. Doesn't bode well for the well researched :( Thierry Le 15/02/2015 14:08, Sebastian Sastre a écrit :

[Pharo-users] GSOC 2015 Call for Ideas

2015-02-15 Thread Serge Stinckwich
Dear pharoers, this year Pharo consortium (and community) is going to take part in a Google Summer of Code event[1] as a standalone organization. This is an opportunity to promote Pharo, get some job done and have students paid. Currently we are at the most important stage as we are preparing the

Re: [Pharo-users] GSOC 2015 Call for Ideas

2015-02-15 Thread Sebastian Sastre
Great! Forked repo, starred and PR sent: https://github.com/pharo-project/pharo-project-proposals/pull/1 keep up the good work! > On Feb 15, 2015, at 12:23 PM, Serge Stinckwich > wrote: > > Dear pharoers, > > this year Phar

Re: [Pharo-users] Learning Spec

2015-02-15 Thread Craig
Hi Sven, I count myself as a beginner with Pharo, although I've been dabbling with Pharo UI choices for a few months now. Like Sebastian, I wrote Spec off as too immature for prime-time, but I too come from the commercial world, so maybe my expectations were unrealistic. So I took the time to l

Re: [Pharo-users] Learning Spec

2015-02-15 Thread Ben Coman
Thanks Craig. Can you fileout a minimal code script to reproduce these errors in a fresh image? Either post here or even better, open an issue at https://pharo.fogbugz.com with the fileout attached at paste the link to the issue here. cheers -ben On Mon, Feb 16, 2015 at 5:36 AM, Craig wrote: >

Re: [Pharo-users] Learning Spec

2015-02-15 Thread Sven Van Caekenberghe
This is the easiest way that I know to show a simple table. MultiColumnListModel new items: #(('x coordinate' 'y coordinate' 'z coordinate')(1 2 3)(4 5 6)(7 8 9)); displayBlock: [ :x | x collect: #asString ]; setSelectedIndex: 2; title: 'My table'; openWithSpec. > On 15 Feb 2015, at 22

Re: [Pharo-users] Learning Spec

2015-02-15 Thread Nicolai Hess
Another example, (modified TreeModel example) |r m col1 col2 col3| r := FileLocator vmDirectory. m := TreeModel new. m roots: r allFiles. m rootNodeHolder: [ :item | TreeNodeModel new content: item; icon: Smalltalk ui icons smallLeftFlushIcon ];

Re: [Pharo-users] Learning Spec

2015-02-15 Thread Craig
Nicolai, This code works perfectly. This is pretty-much exactly what I did. Except that I left the m openWithSpec message send where it was in the example, just before instantiating the columns. (see below) The example clearly needs updating. The way that you did it makes perfect s

Re: [Pharo-users] Learning Spec

2015-02-15 Thread Craig
Sven, Thanks for this, I was unaware of the MultiColumnListModel. I notice that setting colors has no effect here either. I remember from the video that overriding theme colors is still an issue in Spec, but I can move forward. Craig -Original Message- From: Pharo-users [mailto:pharo-