gimp/etc/gtkrc
Sven Neumann 3155d682a5 libgimp/gimpdrawablepreview.[ch] always show the "Preview" check button.
2004-09-01  Sven Neumann  <sven@gimp.org>

	* libgimp/gimpdrawablepreview.[ch]
	* libgimpwidgets/gimppreview.[ch]: always show the "Preview" check
	button. Simplified the preview APIs, moved the "size" style
	property to the GimpPreview class.

	* etc/gtkrc: changed the example accordingly.

	* plug-ins/common/despeckle.c
	* plug-ins/common/gauss.c
	* plug-ins/common/neon.c
	* plug-ins/common/sobel.c
	* plug-ins/common/softglow.c
	* plug-ins/common/spread.c
	* plug-ins/common/unsharp.c: follow change in GimpDrawablePreview API.
2004-09-01 14:01:10 +00:00

52 lines
1 KiB
Plaintext

# pixmap_path "<dir 1>:<dir 2>:<dir 3>:..."
#
# include "rc-file"
#
# style <name> [= <name>]
# {
# <option>
# }
#
# widget <widget_set> style <style_name>
# class <widget_class_set> style <style_name>
#
# You can add your own GIMP-specific GTK styles here.
#
# Example keybinding to remap Help to F2:
#
binding "gimp-help-binding"
{
bind "F2" { "show-help" (255) }
bind "KP_F2" { "show-help" (255) }
bind "<shift>F2" { "show-help" (whats-this) }
bind "<shift>KP_F2" { "show-help" (whats-this) }
bind "<ctrl>F2" { "show-help" (tooltip) }
bind "<ctrl>KP_F2" { "show-help" (tooltip) }
}
# class "GtkWidget" binding "gimp-help-binding"
#
# Adjust the size of previews in plug-in dialogs:
#
style "gimp-large-preview"
{
GimpPreview::size = 256
}
# class "GimpPreview" style "gimp-large-preview"
#
# Change the dock separator DND highlight color:
#
style "gimp-red-separator-style"
{
bg[SELECTED] = "#aa2448"
}
# widget "*gimp-dock-separator*" style "gimp-red-separator-style"