[Pharo-project] How to bundle an application with icons?

2011-01-14 Thread Dimitry Golubovsky
Hi, Fernando Olivero wrote: Hi Dimitry , i've did an external icon family importer and manager. It's in squeaksource, under the name of ExternalIconFamily. Gofer it squeaksource: 'ExternalIconFamily'; package: 'ExternalIconFamily'; load. This framework allows importing and managing any

Re: [Pharo-project] How to bundle an application with icons?

2011-01-14 Thread Hilaire Fernandes
Le 14/01/2011 15:03, Dimitry Golubovsky a écrit : Hi, Fernando Olivero wrote: Hi Dimitry , i've did an external icon family importer and manager. It's in squeaksource, under the name of ExternalIconFamily. Gofer it squeaksource: 'ExternalIconFamily'; package: 'ExternalIconFamily';

Re: [Pharo-project] How to bundle an application with icons?

2011-01-13 Thread Stéphane Ducasse
I know that fernando was building an infrastructure for icons. But I did not see him recently on the list. Stef On Jan 12, 2011, at 3:50 PM, Dimitry Golubovsky wrote: Hi, Suppose I need to bundle a Pharo application (a package) I am developing with some custom icons: is there any

Re: [Pharo-project] How to bundle an application with icons?

2011-01-13 Thread Hernán Morales Durand
Hi Dimitry, Recently I did a little tool which I've used as a general resource importer, it's in beta state but you may use it for your purposes. Basically it takes files in a directory and imports them as resources or methods in a Smalltalk class. A resource is simply a Dictionary in a class

Re: [Pharo-project] How to bundle an application with icons?

2011-01-13 Thread Hernán Morales Durand
By the way you may use too MenuIcons createNewIconMethodsFromDirectory: 'C:\MyIcons\' filenames: #('icon1' 'icon2' ...) classified: '*myresourcespackage' Cheers, 2011/1/12 Dimitry Golubovsky golubov...@gmail.com: Hi, Suppose I need to bundle a Pharo application (a

[Pharo-project] How to bundle an application with icons?

2011-01-13 Thread Dimitry Golubovsky
OK, great. Thanks everybody who answered. The response from Hernán mentioning the createNewIconMethodsFromDirectory: method looks interesting. I'll try the other methods too. Thanks. -- Dimitry Golubovsky Anywhere on the Web

[Pharo-project] How to bundle an application with icons?

2011-01-12 Thread Dimitry Golubovsky
Hi, Suppose I need to bundle a Pharo application (a package) I am developing with some custom icons: is there any standard/ agreed-upon method to do that in Pharo? For example the MenuIcons class includes byte strings (automatically I assume) converted from some external PNG files that show up