home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 February / CMCD0205.ISO / Linux / gimp-2.2.0.tar.gz / gimp-2.2.0.tar / gimp-2.2.0 / etc / gtkrc < prev    next >
Text File  |  2004-09-01  |  1KB  |  52 lines

  1. # pixmap_path "<dir 1>:<dir 2>:<dir 3>:..."
  2. #
  3. # include "rc-file"
  4. #
  5. # style <name> [= <name>]
  6. # {
  7. #   <option>
  8. # }
  9. #
  10. # widget <widget_set>       style <style_name>
  11. # class  <widget_class_set> style <style_name>
  12. #
  13. # You can add your own GIMP-specific GTK styles here.
  14.  
  15.  
  16. #
  17. # Example keybinding to remap Help to F2:
  18. #
  19. binding "gimp-help-binding"
  20. {
  21.   bind "F2"           { "show-help" (255)        }
  22.   bind "KP_F2"        { "show-help" (255)        }
  23.   bind "<shift>F2"    { "show-help" (whats-this) }
  24.   bind "<shift>KP_F2" { "show-help" (whats-this) }
  25.   bind "<ctrl>F2"     { "show-help" (tooltip)    }
  26.   bind "<ctrl>KP_F2"  { "show-help" (tooltip)    }
  27. }
  28.  
  29. # class "GtkWidget" binding "gimp-help-binding"
  30.  
  31.  
  32. #
  33. # Adjust the size of previews in plug-in dialogs:
  34. #
  35. style "gimp-large-preview"
  36. {
  37.   GimpPreview::size = 256
  38. }
  39.  
  40. # class "GimpPreview" style "gimp-large-preview"
  41.  
  42.  
  43. #
  44. # Change the dock separator DND highlight color:
  45. #
  46. style "gimp-red-separator-style"
  47. {
  48.   bg[SELECTED] = "#aa2448"
  49. }
  50.  
  51. # widget "*gimp-dock-separator*" style "gimp-red-separator-style"
  52.