Re: [Pharo-dev] Best way to access icons?

2016-02-08 Thread Esteban Lorenzano
> On 07 Feb 2016, at 22:08, stepharo wrote: > > > > Le 5/2/16 09:21, Esteban Lorenzano a écrit : >> of course, but since we have not implemented such mechanism, we need to go >> one step at a time… > > yes but this is good to think about a good solution. :) > At least

Re: [Pharo-dev] Best way to access icons?

2016-02-07 Thread stepharo
Le 5/2/16 09:21, Esteban Lorenzano a écrit : of course, but since we have not implemented such mechanism, we need to go one step at a time… yes but this is good to think about a good solution. :) At least this is good to know that you do not consider that as the final answer (because it

Re: [Pharo-dev] Best way to access icons?

2016-02-05 Thread Esteban Lorenzano
In this case traits would pollute as much as global variables (or more). Take a look at TEasilyThemed ands its users… Esteban > On 05 Feb 2016, at 03:08, Ben Coman wrote: > > On Fri, Feb 5, 2016 at 5:21 AM, stepharo wrote: >> Hi guys >> >> I do not

Re: [Pharo-dev] Best way to access icons?

2016-02-04 Thread stepharo
Hi guys I do not have the answer but I hate such patterns Smalltalk ui icons iconNamed: #protocolExtension. To me a tools using an icon should declare the icons as a ***local*** ressources. We could imagine that there is a IconContainer and that as a tool I declare that I want an icons

Re: [Pharo-dev] Best way to access icons?

2016-02-04 Thread Esteban Lorenzano
> On 04 Feb 2016, at 17:38, Stephan Eggermont wrote: > > On 04-02-16 17:00, Esteban Lorenzano wrote: >> Smalltalk ui icons iconNamed: #protocolExtension. >> >> Still ugly, but I’m not happy with the idea of a selector-per-icon… > > Why do you see that as a problem? For me

Re: [Pharo-dev] Best way to access icons?

2016-02-04 Thread Aliaksei Syrel
Thanks, Esteban :) As compromise > Smalltalk ui icons iconNamed: #something is ok for now. Cheers Alex On Thu, Feb 4, 2016 at 5:55 PM, Esteban Lorenzano wrote: > > > On 04 Feb 2016, at 17:38, Stephan Eggermont wrote: > > > > On 04-02-16 17:00, Esteban

[Pharo-dev] Best way to access icons?

2016-02-04 Thread Aliaksei Syrel
Hi For ages to access an icon we used: > Smalltalk ui icons protocolPrivateIcon Smalltalk ui icons returns an instance of ThemeIcons. After refactoring (case https://pharo.fogbugz.com/f/cases/16651 ) all methods to access icon (for example

Re: [Pharo-dev] Best way to access icons?

2016-02-04 Thread Esteban Lorenzano
Smalltalk ui icons iconNamed: #protocolExtension. Still ugly, but I’m not happy with the idea of a selector-per-icon… they will never be enough and well… is like a monolithic vision. Not that what we have is much better, but you can consider it an iteration :) Esteban > On 04 Feb 2016, at

Re: [Pharo-dev] Best way to access icons?

2016-02-04 Thread Stephan Eggermont
On 04-02-16 17:00, Esteban Lorenzano wrote: Smalltalk ui icons iconNamed: #protocolExtension. Still ugly, but I’m not happy with the idea of a selector-per-icon… Why do you see that as a problem? For me the problem is more the trainwreck. Stephan

Re: [Pharo-dev] Best way to access icons?

2016-02-04 Thread Chris Cunningham
On Thu, Feb 4, 2016 at 7:19 AM, Aliaksei Syrel wrote: > Hi > > For ages to access an icon we used: > >> Smalltalk ui icons protocolPrivateIcon > > > Smalltalk ui icons returns an instance of ThemeIcons. > After refactoring (case https://pharo.fogbugz.com/f/cases/16651 >