*** empty log message ***
[emacs.git] / man / xresources.texi
blob515ad9f4b4c7e421e22e751217bed6195b57ad4f
1 @c This is part of the Emacs manual.
2 @c Copyright (C) 1987,93,94,95,1997,2001,03 Free Software Foundation, Inc.
3 @c See file emacs.texi for copying conditions.
4 @node X Resources, Antinews, Command Arguments, Top
5 @appendix X Options and Resources
7   You can customize some X-related aspects of Emacs behavior using X
8 resources, as is usual for programs that use X.  On MS-Windows, you
9 can customize some of the same aspects using the system registry.
10 @xref{MS-Windows Registry}.  X resources are the only way to customize
11 tooltip windows and LessTif menus, since the libraries that implement
12 them don't provide for customization through Emacs.  This appendix
13 describes the X resources that Emacs recognizes and how to use them.
15 @menu
16 * Resources::           Using X resources with Emacs (in general).
17 * Table of Resources::  Table of specific X resources that affect Emacs.
18 * Face Resources::      X resources for customizing faces.
19 * Lucid Resources::     X resources for Lucid menus.
20 * LessTif Resources::   X resources for LessTif and Motif menus.
21 * GTK resources::       Resources for GTK widgets.
22 @end menu
24 @node Resources
25 @appendixsec X Resources
26 @cindex resources
27 @cindex X resources
28 @cindex @file{~/.Xdefaults} file
29 @cindex @file{~/.Xresources} file
31   Programs running under the X Window System organize their user
32 options under a hierarchy of classes and resources.  You can specify
33 default values for these options in your X resources file, usually
34 named @file{~/.Xdefaults} or @file{~/.Xresources}.
35 If changes in @file{~/.Xdefaults} do not
36 take effect, it is because your X server stores its own list of
37 resources; to update them, use the shell command @command{xrdb}---for
38 instance, @samp{xrdb ~/.Xdefaults}.
40   Each line in the file specifies a value for one option or for a
41 collection of related options, for one program or for several programs
42 (optionally even for all programs).
44 @cindex Registry (MS-Windows)
45   MS-Windows systems don't support @file{~/.Xdefaults} files, but
46 Emacs compiled for Windows looks for X resources in the Windows
47 Registry, under the key @samp{HKEY_CURRENT_USER\SOFTWARE\GNU\Emacs}
48 and then under the key @samp{HKEY_LOCAL_MACHINE\SOFTWARE\GNU\Emacs}.
49 The menu and scrollbars are native widgets on MS-Windows, so they are
50 only customizable via the system-wide settings in the Display Control
51 Panel.
53   Programs define named resources with particular meanings.  They also
54 define how to group resources into named classes.  For instance, in
55 Emacs, the @samp{internalBorder} resource controls the width of the
56 internal border, and the @samp{borderWidth} resource controls the width
57 of the external border.  Both of these resources are part of the
58 @samp{BorderWidth} class.  Case distinctions are significant in these
59 names.
61   In @file{~/.Xdefaults}, you can specify a value for a single resource
62 on one line, like this:
64 @example
65 emacs.borderWidth: 2
66 @end example
68 @noindent
69 Or you can use a class name to specify the same value for all resources
70 in that class.  Here's an example:
72 @example
73 emacs.BorderWidth: 2
74 @end example
76   If you specify a value for a class, it becomes the default for all
77 resources in that class.  You can specify values for individual
78 resources as well; these override the class value, for those particular
79 resources.  Thus, this example specifies 2 as the default width for all
80 borders, but overrides this value with 4 for the external border:
82 @example
83 emacs.BorderWidth: 2
84 emacs.borderWidth: 4
85 @end example
87   The order in which the lines appear in the file does not matter.
88 Also, command-line options always override the X resources file.
90   The string @samp{emacs} in the examples above is also a resource
91 name.  It actually represents the name of the executable file that you
92 invoke to run Emacs.  If Emacs is installed under a different name, it
93 looks for resources under that name instead of @samp{emacs}.
95 @table @samp
96 @item -name @var{name}
97 @opindex --name
98 @itemx --name=@var{name}
99 @cindex resource name, command-line argument
100 Use @var{name} as the resource name (and the title) for the initial
101 Emacs frame.  This option does not affect subsequent frames, but Lisp
102 programs can specify frame names when they create frames.
104 If you don't specify this option, the default is to use the Emacs
105 executable's name as the resource name.
107 @item -xrm @var{resource-values}
108 @opindex --xrm
109 @itemx --xrm=@var{resource-values}
110 @cindex resource values, command-line argument
111 Specify X resource values for this Emacs job (see below).
112 @end table
114   For consistency, @samp{-name} also specifies the name to use for
115 other resource values that do not belong to any particular frame.
117   The resources that name Emacs invocations also belong to a class; its
118 name is @samp{Emacs}.  If you write @samp{Emacs} instead of
119 @samp{emacs}, the resource applies to all frames in all Emacs jobs,
120 regardless of frame titles and regardless of the name of the executable
121 file.  Here is an example:
123 @example
124 Emacs.BorderWidth: 2
125 Emacs.borderWidth: 4
126 @end example
128   You can specify a string of additional resource values for Emacs to
129 use with the command line option @samp{-xrm @var{resources}}.  The text
130 @var{resources} should have the same format that you would use inside a file
131 of X resources.  To include multiple resource specifications in
132 @var{resources}, put a newline between them, just as you would in a file.
133 You can also use @samp{#include "@var{filename}"} to include a file full
134 of resource specifications.  Resource values specified with @samp{-xrm}
135 take precedence over all other resource specifications.
137   One way to experiment with the effect of different resource settings
138 is to use the @code{editres} program.  Select @samp{Get Tree} from the
139 @samp{Commands} menu, then click on an Emacs frame.  This will display
140 a tree showing the structure of X toolkit widgets used in an Emacs
141 frame.  Select one of them, such as @samp{menubar}, then select
142 @samp{Show Resource Box} from the @samp{Commands} menu.  This displays
143 a list of all the meaningful X resources and allows you to edit them.
144 Changes take effect immediately if you click on the @samp{Apply} button.
145 (See the @code{editres} man page for more details.)
147 @node Table of Resources
148 @appendixsec Table of X Resources for Emacs
150   This table lists the resource names that designate options for
151 Emacs, not counting those for the appearance of the menu bar, each
152 with the class that it belongs to:
154 @table @asis
155 @item @code{background} (class @code{Background})
156 Background color name.
158 @item @code{bitmapIcon} (class @code{BitmapIcon})
159 Use a bitmap icon (a picture of a gnu) if @samp{on}, let the window
160 manager choose an icon if @samp{off}.
162 @item @code{borderColor} (class @code{BorderColor})
163 Color name for the external border.
165 @item @code{borderWidth} (class @code{BorderWidth})
166 Width in pixels of the external border.
168 @item @code{cursorColor} (class @code{Foreground})
169 Color name for text cursor (point).
171 @item @code{font} (class @code{Font})
172 Font name for text (or fontset name, @pxref{Fontsets}).
174 @item @code{foreground} (class @code{Foreground})
175 Color name for text.
177 @item @code{geometry} (class @code{Geometry})
178 Window size and position.  Be careful not to specify this resource as
179 @samp{emacs*geometry}, because that may affect individual menus as well
180 as the Emacs frame itself.
182 If this resource specifies a position, that position applies only to the
183 initial Emacs frame (or, in the case of a resource for a specific frame
184 name, only that frame).  However, the size, if specified here, applies to
185 all frames.
187 @item @code{fullscreen} (class @code{Fullscreen})
188 The desired fullscreen size.  The value can be one of @code{fullboth},
189 @code{fullwidth} or @code{fullheight}, which correspond to
190 the command-line options @samp{-fs}, @samp{-fw}, and @samp{-fh}
191 (@pxref{Window Size X}).
193 Note that this applies to all frames created, not just the initial
194 one.
196 @item @code{iconName} (class @code{Title})
197 Name to display in the icon.
199 @item @code{internalBorder} (class @code{BorderWidth})
200 Width in pixels of the internal border.
202 @item @code{lineSpacing} (class @code{LineSpacing})
203 @cindex line spacing
204 @cindex leading
205 Additional space (@dfn{leading}) between lines, in pixels.
207 @item @code{menuBar} (class @code{MenuBar})
208 @cindex menu bar
209 Give frames menu bars if @samp{on}; don't have menu bars if
210 @samp{off}.  @xref{Lucid Resources}, and @ref{LessTif Resources}, for
211 how to control the appearance of the menu bar if you have one.
213 @item @code{minibuffer} (class @code{Minibuffer})
214 If @samp{none}, don't make a minibuffer in this frame.
215 It will use a separate minibuffer frame instead.
217 @item @code{paneFont} (class @code{Font})
218 @cindex font for menus
219 Font name for menu pane titles, in non-toolkit versions of Emacs.
221 @item @code{pointerColor} (class @code{Foreground})
222 Color of the mouse cursor.
224 @item @code{privateColormap} (class @code{PrivateColormap})
225 If @samp{on}, use a private color map, in the case where the ``default
226 visual'' of class PseudoColor and Emacs is using it.
228 @item @code{reverseVideo} (class @code{ReverseVideo})
229 Switch foreground and background default colors if @samp{on}, use colors as
230 specified if @samp{off}.
232 @item @code{screenGamma} (class @code{ScreenGamma})
233 @cindex gamma correction
234 Gamma correction for colors, equivalent to the frame parameter
235 @code{screen-gamma}.
237 @item @code{selectionFont} (class @code{SelectionFont})
238 Font name for pop-up menu items, in non-toolkit versions of Emacs.  (For
239 toolkit versions, see @ref{Lucid Resources}, also see @ref{LessTif
240 Resources}.)
242 @item @code{selectionTimeout} (class @code{SelectionTimeout})
243 Number of milliseconds to wait for a selection reply.
244 If the selection owner doesn't reply in this time, we give up.
245 A value of 0 means wait as long as necessary.
247 @item @code{synchronous} (class @code{Synchronous})
248 @cindex debugging X problems
249 @cindex synchronous X mode
250 Run Emacs in synchronous mode if @samp{on}.  Synchronous mode is
251 useful for debugging X problems.
253 @item @code{title} (class @code{Title})
254 Name to display in the title bar of the initial Emacs frame.
256 @item @code{toolBar} (class @code{ToolBar})
257 @cindex tool bar
258 Number of lines to reserve for the tool bar.  A zero value suppresses
259 the tool bar.  If the value is non-zero and
260 @code{auto-resize-tool-bars} is non-@code{nil}, the tool bar's size
261 will be changed automatically so that all tool bar items are visible.
263 @item @code{useXIM} (class @code{UseXIM})
264 @cindex XIM
265 @cindex X input methods
266 @cindex input methods, X
267 Turn off use of X input methods (XIM) if @samp{false} or @samp{off}.
268 This is only relevant if your Emacs is actually built with XIM
269 support.  It is potentially useful to turn off XIM for efficiency,
270 especially slow X client/server links.
272 @item @code{verticalScrollBars} (class @code{ScrollBars})
273 Give frames scroll bars if @samp{on}; don't have scroll bars if
274 @samp{off}.
275 @end table
277 @node Face Resources
278 @appendixsec X Resources for Faces
280   You can also use resources to customize the appearance of particular
281 faces (@pxref{Faces}):
283 @table @code
284 @item @var{face}.attributeFont
285 Font for face @var{face}.
286 @item @var{face}.attributeForeground
287 Foreground color for face @var{face}.
288 @item @var{face}.attributeBackground
289 Background color for face @var{face}.
290 @item @var{face}.attributeUnderline
291 Underline flag for face @var{face}.  Use @samp{on} or @samp{true} for
292 yes.
293 @item @var{face}.attributeFamily
294 Font family for face @var{face}.
295 @item @var{face}.attributeWidth
296 Relative proportional width of the font to use for face @var{face}.
297 It should be one of @code{ultra-condensed}, @code{extra-condensed},
298 @code{condensed}, @code{semi-condensed}, @code{normal},
299 @code{semi-expanded}, @code{expanded}, @code{extra-expanded}, or
300 @code{ultra-expanded}.
301 @item @var{face}.attributeHeight
302 Height of the font to use for face @var{face}: either an integer
303 specifying the height in units of 1/10@dmn{pt}, or a floating point
304 number that specifies a scale factor to scale the underlying face's
305 default font, or a function to be called with the default height which
306 will return a new height.
307 @item @var{face}.attributeWeight
308 A weight to use for the face @var{face}.  It must be one of
309 @code{ultra-bold}, @code{extra-bold}, @code{bold},
310 @code{semi-bold}, @code{normal}, @code{semi-light}, @code{light},
311 @code{extra-light}, @code{ultra-light}.
312 @item @var{face}.attributeSlant
313 The slant to use for the font of face @var{face}.  It must be one of
314 @code{italic}, @code{oblique}, @code{normal},
315 @code{reverse-italic}, or @code{reverse-oblique}.
316 @item @var{face}.attributeStrikeThrough
317 Whether the face @var{face} should be drawn with a line striking
318 through the characters.
319 @item @var{face}.attributeOverline
320 Whether the characters in the face @var{face} should be overlined.
321 @item @var{face}.attributeBox
322 Whether to draw a box around the characters in face @var{face}.
323 @item @var{face}.attributeInverse
324 Whether to display the characters in face @var{face} in inverse
325 video.
326 @item @var{face}.attributeStipple
327 The name of a pixmap data file to use for the stipple pattern, or
328 @code{false} to not use stipple for the face @var{face}.
329 @item @var{face}.attributeBackgroundPixmap
330 The background pixmap for the face @var{face}.  Should be a name of a
331 pixmap file or @code{false}.
332 @item @var{face}.attributeBold
333 Whether to draw the characters in the face @var{face} as bold.
334 @item @var{face}.attributeItalic
335 Whether to draw the characters in the face @var{face} as italic.
336 @end table
338 @node Lucid Resources
339 @appendixsec Lucid Menu X Resources
340 @cindex Menu X Resources (Lucid widgets)
341 @cindex Lucid Widget X Resources
343   If the Emacs installed at your site was built to use the X toolkit
344 with the Lucid menu widgets, then the menu bar is a separate widget and
345 has its own resources.  The resource names contain @samp{pane.menubar}
346 (following, as always, the name of the Emacs invocation, or @samp{Emacs},
347 which stands for all Emacs invocations).  Specify them like this:
349 @example
350 Emacs.pane.menubar.@var{resource}:  @var{value}
351 @end example
353 @noindent
354 For example, to specify the font @samp{8x16} for the menu-bar items,
355 write this:
357 @example
358 Emacs.pane.menubar.font:  8x16
359 @end example
361 @noindent
362 Resources for @emph{non-menubar} toolkit pop-up menus have
363 @samp{menu*}, in like fashion.  For example, to specify the font
364 @samp{8x16} for the pop-up menu items, write this:
366 @example
367 Emacs.menu*.font:       8x16
368 @end example
370 @noindent
371 For dialog boxes, use @samp{dialog} instead of @samp{menu}:
373 @example
374 Emacs.dialog*.font:     8x16
375 @end example
377 @noindent
378 Experience shows that on some systems you may need to add
379 @samp{shell.}@: before the @samp{pane.menubar} or @samp{menu*}.  On
380 some other systems, you must not add @samp{shell.}.
382   Here is a list of the specific resources for menu bars and pop-up menus:
384 @table @code
385 @item font
386 Font for menu item text.
387 @item foreground
388 Color of the foreground.
389 @item background
390 Color of the background.
391 @item buttonForeground
392 In the menu bar, the color of the foreground for a selected item.
393 @item horizontalSpacing
394 Horizontal spacing in pixels between items.  Default is 3.
395 @item verticalSpacing
396 Vertical spacing in pixels between items.  Default is 2.
397 @item arrowSpacing
398 Horizontal spacing between the arrow (which indicates a submenu) and
399 the associated text.  Default is 10.
400 @item shadowThickness
401 Thickness of shadow line around the widget.  Default is 1.
403 Also determines the thickness of shadow lines around other objects,
404 for instance 3D buttons and arrows.  If you have the impression that
405 the arrows in the menus do not stand out clearly enough or that the
406 difference between ``in'' and ``out'' buttons is difficult to see, set
407 this to 2.  If you have no problems with visibility, the default
408 probably looks better.  The background color may also have some effect
409 on the contrast.
410 @item margin
411 The margin of the menu bar, in characters.  Default is 1.
412 @end table
414 @node LessTif Resources
415 @appendixsec LessTif Menu X Resources
416 @cindex Menu X Resources (LessTif widgets)
417 @cindex LessTif Widget X Resources
419   If the Emacs installed at your site was built to use the X toolkit
420 with the LessTif or Motif widgets, then the menu bar, the dialog
421 boxes, the pop-up menus, and the file-selection box are separate
422 widgets and have their own resources.
424   The resource names for the menu bar contain @samp{pane.menubar}
425 (following, as always, the name of the Emacs invocation, or
426 @samp{Emacs}, which stands for all Emacs invocations).  Specify them
427 like this:
429 @smallexample
430 Emacs.pane.menubar.@var{subwidget}.@var{resource}:  @var{value}
431 @end smallexample
433   Each individual string in the menu bar is a subwidget; the subwidget's
434 name is the same as the menu item string.  For example, the word
435 @samp{File} in the menu bar is part of a subwidget named
436 @samp{emacs.pane.menubar.File}.  Most likely, you want to specify the
437 same resources for the whole menu bar.  To do this, use @samp{*} instead
438 of a specific subwidget name.  For example, to specify the font
439 @samp{8x16} for the menu-bar items, write this:
441 @smallexample
442 Emacs.pane.menubar.*.fontList:  8x16
443 @end smallexample
445 @noindent
446 This also specifies the resource value for submenus.
448   Each item in a submenu in the menu bar also has its own name for X
449 resources; for example, the @samp{File} submenu has an item named
450 @samp{Save (current buffer)}.  A resource specification for a submenu
451 item looks like this:
453 @smallexample
454 Emacs.pane.menubar.popup_*.@var{menu}.@var{item}.@var{resource}: @var{value}
455 @end smallexample
457 @noindent
458 For example, here's how to specify the font for the @samp{Save (current
459 buffer)} item:
461 @smallexample
462 Emacs.pane.menubar.popup_*.File.Save (current buffer).fontList: 8x16
463 @end smallexample
465 @noindent
466 For an item in a second-level submenu, such as @samp{Complete Word}
467 under @samp{Spell Checking} under @samp{Tools}, the resource fits this
468 template:
470 @smallexample
471 Emacs.pane.menubar.popup_*.popup_*.@var{menu}.@var{resource}: @var{value}
472 @end smallexample
474 @noindent
475 For example,
477 @smallexample
478 Emacs.pane.menubar.popup_*.popup_*.Spell Checking.Complete Word: @var{value}
479 @end smallexample
481 @noindent
482 (This should be one long line.)
484   It's impossible to specify a resource for all the menu-bar items
485 without also specifying it for the submenus as well.  So if you want the
486 submenu items to look different from the menu bar itself, you must ask
487 for that in two steps.  First, specify the resource for all of them;
488 then, override the value for submenus alone.  Here is an example:
490 @smallexample
491 Emacs.pane.menubar.*.fontList:  8x16
492 Emacs.pane.menubar.popup_*.fontList: 8x16
493 @end smallexample
495 @noindent
496 For LessTif pop-up menus, use @samp{menu*} instead of
497 @samp{pane.menubar}.  For example, to specify the font @samp{8x16} for
498 the pop-up menu items, write this:
500 @smallexample
501 Emacs.menu*.fontList:  8x16
502 @end smallexample
504 @noindent
505 For LessTif dialog boxes, use @samp{dialog} instead of @samp{menu}:
507 @example
508 Emacs.dialog*.fontList: 8x16
509 Emacs.dialog*.foreground: hotpink
510 @end example
512 To specify resources for the LessTif file-selection box, use
513 @samp{fsb*}, like this:
515 @example
516 Emacs.fsb*.fontList: 8x16
517 @end example
519 @iftex
520 @medbreak
521 @end iftex
522   Here is a list of the specific resources for LessTif menu bars and
523 pop-up menus:
525 @table @code
526 @item armColor
527 The color to show in an armed button.
528 @item fontList
529 The font to use.
530 @item marginBottom
531 @itemx marginHeight
532 @itemx marginLeft
533 @itemx marginRight
534 @itemx marginTop
535 @itemx marginWidth
536 Amount of space to leave around the item, within the border.
537 @item borderWidth
538 The width of the border around the menu item, on all sides.
539 @item shadowThickness
540 The width of the border shadow.
541 @item bottomShadowColor
542 The color for the border shadow, on the bottom and the right.
543 @item topShadowColor
544 The color for the border shadow, on the top and the left.
545 @end table
548 @node GTK resources
549 @appendixsec GTK resources
550 @cindex GTK resources and customization
551 @cindex resource files for GTK
552 @cindex @file{~/.gtkrc-2.0} file
553 @cindex @file{~/.emacs.d/gtkrc} file
555   If the Emacs installed at your site was built to use the GTK widget set,
556 then the menu bar, scroll bar and the dialogs can be customized with
557 the standard GTK @file{~/.gtkrc-2.0} file or with the Emacs specific
558 @file{~/.emacs.d/gtkrc} file; note that these files are only for
559 customizing specific GTK widget features.  To customize Emacs font,
560 background, faces etc., use the normal X resources, see @ref{Resources}.
562   Some GTK themes override these mechanisms, which means that using
563 these mechanisms will not work to customize them.  We recommend that
564 you use @file{~/.emacs.d/gtkrc} for customizations, since
565 @file{~/.gtkrc-2.0} seems to be ignored when running GConf with GNOME.
567   In these files you first defines a style and then how to apply that style
568 to widgets (@pxref{GTK widget names}).  Here is an example of how to
569 change the font for Emacs menus:
571 @smallexample
572 # This is a comment.
573 style "menufont"
575   font_name = "helvetica bold 14"  # This is a Pango font name
578 widget "*emacs-menuitem*" style "menufont"
580 @end smallexample
582   Here is a more elaborate example, showing how to change the parts of
583 the scroll bar:
585 @smallexample
586 style "scroll"
588   fg[NORMAL] = "red"@ @ @ @ @ # The arrow color.
589   bg[NORMAL] = "yellow"@ @ # The thumb and background around the arrow.
590   bg[ACTIVE] = "blue"@ @ @ @ # The trough color.
591   bg[PRELIGHT] = "white"@ # The thumb color when the mouse is over it.
594 widget "*verticalScrollBar*" style "scroll"
595 @end smallexample
597   There are some things you can set without using any style or widget name,
598 which affect GTK as a whole.  Most of these are poorly documented, but can
599 be found in the `Properties' section of the documentation page for
600 @code{GtkSetting}, in the GTK document references below.
602 One property of interest is @code{gtk-font-name} which sets the default
603 font for GTK; you must use Pango font names (@pxref{GTK styles}).  A
604 @file{~/.gtkrc-2.0} file that just sets a default font looks like this:
606 @smallexample
607 gtk-font-name = "courier 12"
608 @end smallexample
611   If GTK at your site is installed under @var{prefix},
612 the resource file syntax is fully described in the GTK API
613 document
614 @file{@var{prefix}/share/gtk-doc/html/gtk/gtk-resource-files.html}.
615 @var{prefix} is usually @file{/usr} or @file{/usr/local}.
616 You can find the same document online at
617 @uref{http://developer.gnome.org/doc/API/2.0/gtk/gtk-Resource-Files.html}.
620 @menu
621 * GTK widget names::      How widgets in GTK are named in general.
622 * GTK names in Emacs::    GTK widget names in Emacs.
623 * GTK styles::            What can be customized in a GTK widget.
624 @end menu
627 @node GTK widget names
628 @appendixsubsec GTK widget names
629 @cindex GTK widget names
631   Widgets are specified by widget class or by widget name.
632 The widget class is the type of the widget, for example @code{GtkMenuBar}.
633 The widget name is the name given to a specific widget within a program.
634 A widget always have a class but it is not mandatory to give a name to
635 a widget.  Absolute names are sequences of widget names or
636 widget classes, corresponding to hierarchies of widgets embedded within
637 other widgets.  For example, if a @code{GtkWindow} contains a @code{GtkVBox}
638 which in turn contains a @code{GtkMenuBar}, the absolute class name
639 is @code{GtkWindow.GtkVBox.GtkMenuBar}.
641 @noindent
642 If the widgets are named ``top'', ``box'' and ``menubar'', the absolute
643 widget name is @code{top.box.menubar},
645   When assigning a style to a widget, you can use the absolute class
646 name or the absolute widget name.
647 There are two commands:  @code{widget_class} will assign a style to
648 widgets, matching only against the absolute class name.
649 The command @code{widget} will match the absolute widget name,
650 but if there is no name for a widget in the hierarchy, the class is matched.
651 These commands require the absolute name and the style name to be
652 within  double quotes.  These commands are written at the top level in a
653 @file{~/.gtkrc-2.0} file, like this:
655 @smallexample
656 style "menufont"
658   font_name = "helvetica bold 14"
661 widget "top.box.menubar" style "menufont"
662 widget_class "GtkWindow.GtkVBox.GtkMenuBar" style "menufont"
663 @end smallexample
666   Matching of absolute names is done with shell ``glob'' syntax, that is
667 @samp{*} matches zero or more characters and @samp{?} matches one character.
668 So the following would assign @code{base_style} to all widgets:
670 @smallexample
671 widget "*" style "base_style"
672 @end smallexample
674   Given the absolute class name @code{GtkWindow.GtkVBox.GtkMenuBar}
675 and the corresponding absolute widget name @code{top.box.menubar},
676 the following all assign @code{my_style} to the menu bar:
678 @smallexample
679 widget_class "GtkWindow.GtkVBox.GtkMenuBar" style "my_style"
680 widget_class "GtkWindow.*.GtkMenuBar" style "my_style"
681 widget_class "*GtkMenuBar" style "my_style"
682 widget "top.box.menubar" style "my_style"
683 widget "*box*menubar" style "my_style"
684 widget "*menubar" style "my_style"
685 widget "*menu*" style "my_style"
686 @end smallexample
688 @node GTK names in Emacs
689 @appendixsubsec GTK names in Emacs
690 @cindex GTK widget names
691 @cindex GTK widget classes
693   In Emacs the top level widget for a frame is a @code{GtkWindow} that
694 contains a @code{GtkVBox}.  The @code{GtkVBox} contains the
695 @code{GtkMenuBar} and a @code{GtkFixed} widget.
696 The vertical scroll bars, @code{GtkVScrollbar},
697 are contained in the @code{GtkFixed} widget.
698 The text you write in Emacs is drawn in the @code{GtkFixed} widget.
700   Dialogs in Emacs are @code{GtkDialog} widgets.  The file dialog is a
701 @code{GtkFileSelection} widget.
703 @noindent
704 To set a style for the menu bar using the absolute class name, use:
706 @smallexample
707 widget_class "GtkWindow.GtkVBox.GtkMenuBar" style "my_style"
708 @end smallexample
710 @noindent
711 For the scroll bar, the absolute class name is:
713 @smallexample
714 widget_class
715   "GtkWindow.GtkVBox.GtkFixed.GtkVScrollbar"
716      style "my_style"
717 @end smallexample
719 @noindent
720 The names for the emacs widgets, and their classes, are:
722 @multitable {@code{verticalScrollbar plus}} {@code{GtkFileSelection} and some}
723 @item @code{emacs-filedialog}
724 @tab @code{GtkFileSelection}
725 @item @code{emacs-dialog}
726 @tab @code{GtkDialog}
727 @item @code{Emacs}
728 @tab @code{GtkWindow}
729 @item @code{pane}
730 @tab @code{GtkVHbox}
731 @item @code{emacs}
732 @tab @code{GtkFixed}
733 @item @code{verticalScrollBar}
734 @tab @code{GtkVScrollbar}
735 @item @code{emacs-toolbar}
736 @tab @code{GtkToolbar}
737 @item @code{menubar}
738 @tab @code{GtkMenuBar}
739 @item @code{emacs-menuitem}
740 @tab anything in menus
741 @end multitable
743 @noindent
744 Thus, for Emacs you can write the two examples above as:
746 @smallexample
747 widget "Emacs.pane.menubar" style "my_style"
748 widget "Emacs.pane.emacs.verticalScrollBar" style "my_style"
749 @end smallexample
751   GTK absolute names are quite strange when it comes to menus
752 and dialogs.  The names do not start with @samp{Emacs}, as they are
753 free-standing windows and not contained (in the GTK sense) by the
754 Emacs GtkWindow.  To customize the dialogs and menus, use wildcards like this:
756 @smallexample
757 widget "*emacs-dialog*" style "my_dialog_style"
758 widget "*emacs-filedialog* style "my_file_style"
759 widget "*emacs-menuitem* style "my_menu_style"
760 @end smallexample
762   An alternative is to put customization into @file{~/.emacs.d/gtkrc}.
763 This file is only read by Emacs, so anything in @file{~/.emacs.d/gtkrc}
764 affects Emacs but leaves other applications unaffected.
765 For example, the drop down menu in the file dialog can not
766 be customized by any absolute widget name, only by an absolute
767 class name.  This is so because the widgets in the drop down menu does not
768 have names and the menu is not contained in the Emacs GtkWindow.
769 To have all menus in Emacs look the same, use this in @file{~/.emacs.d/gtkrc}:
771 @smallexample
772 widget_class "*Menu*" style "my_menu_style"
773 @end smallexample
775 @node GTK styles
776 @appendixsubsec GTK styles
777 @cindex GTK styles
779   In a GTK style you specify the appearance widgets shall have.  You
780 can specify foreground and background color, background pixmap and font.
781 The edit widget (where you edit the text) in Emacs is a GTK widget,
782 but trying to specify a style for the edit widget will have no effect.
783 This is so that Emacs compiled for GTK is compatible with Emacs compiled
784 for other X toolkits.  The settings for foreground, background and font
785 for the edit widget is taken from the X resources; @pxref{Resources}.
786 Here is an example of two style declarations, ``default'' and ``ruler'':
788 @smallexample
790 pixmap_path "/usr/share/pixmaps:/usr/include/X11/pixmaps"
792 style "default"
794   font_name = "helvetica 12"
796   bg[NORMAL] = @{ 0.83, 0.80, 0.73 @}
797   bg[SELECTED] = @{ 0.0, 0.55, 0.55 @}
798   bg[INSENSITIVE] = @{ 0.77, 0.77, 0.66 @}
799   bg[ACTIVE] = @{ 0.0, 0.55, 0.55 @}
800   bg[PRELIGHT] = @{ 0.0, 0.55, 0.55 @}
802   fg[NORMAL] = "black"
803   fg[SELECTED] = @{ 0.9, 0.9, 0.9 @}
804   fg[ACTIVE] = "black"
805   fg[PRELIGHT] = @{ 0.9, 0.9, 0.9 @}
807   base[INSENSITIVE] = "#777766"
808   text[INSENSITIVE] = @{ 0.60, 0.65, 0.57 @}
810   bg_pixmap[NORMAL] = "background.xpm"
811   bg_pixmap[INSENSITIVE] = "background.xpm"
812   bg_pixmap[ACTIVE] = "background.xpm"
813   bg_pixmap[PRELIGHT] = "<none>"
817 style "ruler" = "default"
819   font_name = "helvetica 8"
822 @end smallexample
824   The style ``ruler'' inherits from ``default''.  This way you can build
825 on existing styles.  The syntax for fonts and colors is described below.
827   As this example shows, it is possible to specify several values
828 for foreground and background depending on which state the widget has.
829 The possible states are
830 @table @code
831 @item NORMAL
832 This is the default state for widgets.
833 @item ACTIVE
834 This is the state for a widget that is ready to do something.  It is
835 also for the trough of a scroll bar, i.e.  @code{bg[ACTIVE] = "red"}
836 sets the scroll bar trough to red.  Buttons that have been pressed but
837 not released yet (``armed'') are in this state.
838 @item PRELIGHT
839 This is the state when widgets that can be manipulated have the mouse
840 pointer over them.  For example when the mouse is over the thumb in the
841 scroll bar or over a menu item.  When the mouse is over a button that
842 is not pressed, the button is in this state.
843 @item SELECTED
844 This is the state when some data has been selected by the user.  It can
845 be selected text or items selected in a list.
846 There is no place in Emacs where this setting has any effect.
847 @item INSENSITIVE
848 This is the state for widgets that are visible, but they can not be
849 manipulated like they normally can.  For example, buttons that can't be
850 pressed and menu items that can't be selected.
851 Text for menu items that are not available can be set to yellow with
852 @code{fg[INSENSITIVE] = "yellow"}.
853 @end table
855 Here are the things that can go in a style declaration:
857 @table @code
858 @item bg[@var{state}] = @var{color}
859 This is the background color widgets use.  This background is not used for
860 editable text, use @code{base} for that.
862 @item base[@var{state}] = @var{color}
863 This is the background color for editable text.
864 In Emacs, this color is used for the background of the text fields in the
865 file dialog.
867 @item bg_pixmap[@var{state}] = "@var{pixmap}"
868 You can specify a pixmap to be used instead of the background color.
869 @var{pixmap} is a file name.  GTK can use a number of file formats,
870 including XPM, XBM, GIF, JPEG and PNG.  If you want a widget to use the same
871 pixmap as its parent, use @samp{<parent>}.  If you don't want any
872 pixmap use @samp{<none>}.  Using @samp{<none>} can be useful
873 if your style inherits a style that does specify a pixmap.
875   GTK looks for the pixmap in directories specified in @code{pixmap_path}.
876 It is not possible to refer to a file by its absolute path name.
877 @code{pixmap_path} is a colon-separated list of directories within double
878 quotes, specified at the top level in a @file{gtkrc} file (i.e. not inside
879 a style definition; see example above):
881 @smallexample
882 pixmap_path "/usr/share/pixmaps:/usr/include/X11/pixmaps"
883 @end smallexample
885 @item fg[@var{state}] = @var{color}
886 This is the foreground color widgets use.  This is the color
887 of text in menus and buttons.  It is also the color for the arrows in the
888 scroll bar.  For editable text, use @code{text}.
890 @item text[@var{state}] = @var{color}
891 This is the color for editable text.  In Emacs, this color is used for the
892 text fields in the file dialog.
894 @item font_name = "@var{font}"
895 This is the font a widget shall use.  @var{font} is a Pango font name,
896 for example ``Sans Italic 10'', ``Helvetica Bold 12'', ``Courier 14'',
897 ``Times 18''.  See below for exact syntax.  The names are case insensitive.
898 @end table
900   Colors are specified in three ways, a name, a hexadecimal form or
901 an RGB triplet.
903 @noindent
904 A color name is written within double quotes, for example @code{"red"}.
906 @noindent
907 A hexadecimal form is written within double quotes.  There are four forms,
908 @code{#rrrrggggbbbb}, @code{#rrrgggbbb},
909 @code{#rrggbb}, or @code{#rgb}.  In each of these r, g and b are hex digits.
911 @noindent
912 An RGB triplet looks like @code{@{ r, g, b @}}, where r, g and b are either
913 integers in the range 0-65535 or floats in the range 0.0-1.0.
915   Pango font names have the form ``@var{family-list} @var{style-options}
916 @var{size}''.
917 @cindex Pango font name
918 @noindent
919 @var{family-list} is a comma separated list of font families optionally
920 terminated by a comma.  This way you can specify several families and the
921 first one found will be used.  @var{family} corresponds to the second part in
922 an X font name, for example in
924 @smallexample
925 -adobe-times-medium-r-normal--12-120-75-75-p-64-iso10646-1
926 @end smallexample
928 @noindent
929 the family name is ``times''.
931 @noindent
932 @var{style-options} is a whitespace separated list of words where each word
933 is a style, variant, weight, or stretch.  The default value for all of
934 these is @code{normal}.
936 @noindent
937 A `style' corresponds to the fourth part of an X font name.  In X font
938 names it is the character ``r'', ``i'' or ``o''; in Pango font names the
939 corresponding values are @code{normal}, @code{italic}, or @code{oblique}.
941 @noindent
942 A `variant' is either @code{normal} or @code{small-caps}.
943 Small caps is a font with the lower case characters replaced by
944 smaller variants of the capital characters.
946 @noindent
947 Weight describes the ``boldness'' of a font.  It corresponds to the third
948 part of an X font name.  It is one of @code{ultra-light}, @code{light},
949 @code{normal}, @code{bold}, @code{ultra-bold}, or @code{heavy}.
951 @noindent
952 Stretch gives the width of the font relative to other designs within a
953 family.  It corresponds to the fifth part of an X font name.  It is one of
954 @code{ultra-condensed}, @code{extra-condensed}, @code{condensed},
955 @code{semi-condensed}, @code{normal}, @code{semi-expanded},
956 @code{expanded}, @code{extra-expanded}, or @code{ultra-expanded}.
958 @noindent
959 @var{size} is a decimal number that describes the font size in points.
961 @ignore
962    arch-tag: 9b6ff773-48b6-41f6-b2f9-f114b8bdd97f
963 @end ignore