gimp/etc/gtkrc_user
Michael Natterer 8fd6272d61 give an example (commented out) how to change the F1 help binding. Fixes
2003-01-06  Michael Natterer  <mitch@gimp.org>

	* etc/gtkrc_user: give an example (commented out) how to change
	the F1 help binding. Fixes bug #6920.
2003-01-06 15:45:17 +00:00

62 lines
1.6 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 style for small screens:
style "gimp-small-style"
{
GtkWidget::focus_padding = 0
GtkOptionMenu::indicator_size = { 4, 7 }
GtkOptionMenu::indicator_spacing = { 4, 3, 1, 1 }
GtkPaned::handle_size = 5
GimpDock::separator_height = 5
GimpImageDock::minimal_width = 200
GimpImageDock::menu_preview_size = small-toolbar
GimpToolbox::tool_icon_size = menu
GimpDockbook::tab_border = 0
GimpDockbook::tab_size = menu
GimpDockable::content_border = 1
GimpDockable::content_spacing = 1
GimpEditor::content_spacing = 1
GimpEditor::button_spacing = 1
GimpEditor::button_icon_size = menu
}
# Example keybinding remapping F2 -> help
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" style "gimp-small-style"
# class "GtkWidget" binding "gimp-help-binding"
# The dock separator is configurable using it's name:
style "gimp-blue-separator-style"
{
bg[NORMAL] = "#8888aa"
}
# widget "*dock-separator*" style "gimp-blue-separator-style"