[Pharo-project] Nautilus with custom icons

2013-01-02 Thread Torsten Bergmann
How can one add a new custom icon for his own class (hierarchy) into Nautilus. I can add one with tricks in ClassesIconsCache in class AbstractNautilusUI. But is there a default extension mechanism similar to OB where one just implemented a method #browserIcon? Thx T.

Re: [Pharo-project] Nautilus with custom icons

2013-01-02 Thread Benjamin
Not yet, but I am thinking of it :) For classes, it's obvious, but how to add such a mechanism for methods ? Packages ? For methods I thought about a chain of responsibility where each case is a class (let's say subclass of something to retrieve them), but how to set the order ? Delegate it

Re: [Pharo-project] Nautilus with custom icons

2013-01-02 Thread Benjamin
https://code.google.com/p/pharo/issues/detail?id=7202 :) Ben On Jan 2, 2013, at 10:25 AM, Torsten Bergmann wrote: How can one add a new custom icon for his own class (hierarchy) into Nautilus. I can add one with tricks in ClassesIconsCache in class AbstractNautilusUI. But is there a