Hi: Now that I have time, I am again doing some small things about the interface. As some already now, one of my ideas is to provide a classic like theme for the interface (using Gimp 1.2 icons, adding new if required). I am not also finding it nice cos I hope to be able to have the old style (few graphics, and those who appear, monochrome and simple) but also cos I am finding small problems in the theming system. Here is a simple patch for the basic ones: ---8<--- --- themes/Default/imagerc.orig Sun Jun 9 17:29:37 2002 +++ themes/Default/imagerc Sun Jul 21 01:53:49 2002 @@ -48,6 +48,11 @@ { "images/stock-info-24.png", *, *, "gtk-button" }, { "images/stock-info-24.png", *, *, * }, } + stock["gimp-invert"] = + { + { "images/stock-invert-16.png", *, *, "gtk-button" }, + { "images/stock-invert-24.png", *, *, * }, + } stock["gimp-linked"] = { { "images/stock-linked-16.png", *, *, "gtk-button" }, @@ -68,10 +73,10 @@ { "images/stock-reset-16.png", *, *, "gtk-button" }, { "images/stock-reset-16.png", *, *, * } } - stock["gimp-stroke"] = + stock["gimp-selection-stroke"] = { - { "images/stock-stroke-16.png", *, *, "gtk-button" }, - { "images/stock-stroke-16.png", *, *, * } + { "images/stock-selection-stroke-16.png", *, *, "gtk-button" }, + { "images/stock-selection-stroke-16.png", *, *, * } } stock["gimp-to-path"] = { @@ -180,6 +185,11 @@ { "images/stock-tool-options-16.png", *, *, "gtk-menu" }, { "images/stock-tool-options-16.png", *, *, * } } + stock["gimp-layer-to-imagesize"] = + { + { "images/stock-layer-to-imagesize-16.png", *, *, "gtk-menu" }, + { "images/stock-layer-to-imagesize-16.png", *, *, * } + } # Image window icons # --->8--- Other interesting things: Yosh told me how to poke at the GUI system of GTK+ (this can be interesting for others, maybe carol will like to copy this into her collection of docs): - Get an extra GTK+ module, with "cvs co gle" (similar to cvs gimp), build (using autoconf 2.13, not 2.5x) and install. - Launch gimp with "GTK_MODULES=gle gimp-1.3" so the module is loaded. - Hit control+alt+tab and a window appears, then select things. Use MB3 a lot in the trees. With this I hope to be able to tune the classic theme to be like 1.2. There are some exceptions, that I think are bugs or similar, filed as numbers 74180 (font part seems fixed, tree problem still there) and 88727 (http://bugzilla.gnome.org/show_bug.cgi?id=74180 and http://bugzilla.gnome.org/show_bug.cgi?id=88727). GSR