Re: [Java-gnome-developer] Gnome icon retrieval
Brought to you by:
afcowie
From: LCID F. <lci...@gm...> - 2009-04-14 17:06:41
|
Andrew Cowie wrote: > On Mon, 2009-04-13 at 14:13 +0200, LCID Fire wrote: >> I'd like to >> get the names of system icons so that I can load them into java. > > The stock icons are available a number of ways; the most common is to > use the Image Widget constructor that takes a Stock: > http://java-gnome.sourceforge.net/4.0/doc/api/org/gnome/gtk/Image.html#Image(org.gnome.gtk.Stock,%20org.gnome.gtk.IconSize) The Stock definitions are quite bleak since most of the icons provided by themes are not accessible through them. I just found (all hail to google codesearch ;)) org.gnu.gtk which seems to provide exactly the IconTheme implementation I require. |