gimp/themes/Default/gtkrc
Sven Neumann 448f4b4db6 themes/Default/images/Makefile.am
2002-01-09  Sven Neumann  <sven@gimp.org>

	* themes/Default/images/Makefile.am
	* themes/Default/images/gimp-dialog-error.png
	* themes/Default/images/gimp-dialog-info.png
	* themes/Default/images/gimp-dialog-question.png
	* themes/Default/images/gimp-dialog-warning.png: new stock icons to
	override the standard gtk-dialog icons.

	* themes/Default/images/gimp-dialog-icons.xcf.gz: XCF version of the
	new dialog icons.

	* themes/Default/gtkrc: override the standard gtk-dialog icons with
	our versions.

	* libgimpwidgets/gimpquerybox.[ch]: allow to pass a stock_id instead
	of the boolean eek.

	* app/widgets/gimpwidgets-utils.c: added an icon to the gimp_message
	dialog. We need to add an API to declare the severity of the message
	or allow to pass a stock_id. For now all messages habe the Info icon.

	* app/gui/file-commands.c
	* app/gui/file-new-dialog.c
	* app/gui/file-save-dialog.c
	* app/gui/gui.c
	* app/gui/image-commands.c
	* plug-ins/FractalExplorer/FractalExplorer.c
	* plug-ins/gfig/gfig.c
	* plug-ins/gflare/gflare.c: pass a suitable(?) stock_id to
	gimp_query_boolean_box().
2002-01-09 20:39:49 +00:00

111 lines
2.1 KiB
Plaintext

# pixmap_path "<dir 1>:<dir 2>:<dir 3>:..."
#
# include "rc-file"
#
# style <name> [= <name>]
# {
# <option>
# }
#
# widget <widget_set> style <style_name>
# widget_class <widget_class_set> style <style_name>
# Don't define icons for the Default theme as they are compiled in
#
# include "imagerc"
# Do override some GTK stock icons however.
style "gimp-dialog-icons"
{
stock["gtk-dialog-error"] =
{
{ "images/gimp-dialog-error.png", *, *, "gtk-dialog" }
}
stock["gtk-dialog-info"] =
{
{ "images/gimp-dialog-info.png", *, *, "gtk-dialog" }
}
stock["gtk-dialog-question"] =
{
{ "images/gimp-dialog-question.png", *, *, "gtk-dialog" }
}
stock["gtk-dialog-warning"] =
{
{ "images/gimp-dialog-warning.png", *, *, "gtk-dialog" }
}
}
class "GtkImage" style "gimp-dialog-icons"
style "gimp-normal-font-style"
{
font_name = "sans 12"
}
style "gimp-small-font-style"
{
font_name = "sans 11"
}
style "gimp-tiny-font-style"
{
font_name = "sans 8"
}
class "GtkWidget" style "gimp-normal-font-style"
class "*Ruler*" style "gimp-tiny-font-style"
style "gimp-dialog-style"
{
GtkDialog::content_area_border = 0
GtkDialog::button_spacing = 4
GtkDialog::action_area_border = 4
}
widget "*GimpDialog*" style "gimp-dialog-style"
style "gimp-hscale-style"
{
GtkRange::slider_width = 11
}
class "GtkHScale" style "gimp-hscale-style"
style "gimp-dock-style" = "gimp-small-font-style"
{
GimpDock::separator_height = 6
GimpDockbook::tab_border = 0
GimpDockable::content_border = 2
GimpContainerView::content_spacing = 2
GimpContainerView::button_spacing = 2
GimpContainerEditor::content_spacing = 2
GimpContainerEditor::button_spacing = 2
}
widget "*Gimp*Dock*" style "gimp-dock-style"
style "gimp-grid-view-style" = "gimp-dock-style"
{
bg[NORMAL] = { 1.0, 1.0, 1.0 }
}
widget "*GimpContainerGridView*GtkViewport*" style "gimp-grid-view-style"
style "gimp-tooltips"
{
fg[NORMAL] = { 0.0, 0.0, 0.0 }
bg[NORMAL] = { 0.94, 0.90, 0.54 }
}
widget "gtk-tooltips" style "gimp-tooltips"