diff options
| author | Kim F. Storm | 2006-12-30 21:38:01 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2006-12-30 21:38:01 +0000 |
| commit | c6aea8f8c74e59afdc8986d6d69fb1b15ecb5c0b (patch) | |
| tree | 01974e4df59ffb0b979306b044eda7984647a50d | |
| parent | 02f0dab390b09ca12122fcabdc4b5c4c9ef46dd2 (diff) | |
| download | emacs-c6aea8f8c74e59afdc8986d6d69fb1b15ecb5c0b.tar.gz emacs-c6aea8f8c74e59afdc8986d6d69fb1b15ecb5c0b.zip | |
(Table of Resources): Mention grow-only value for auto-resize-tool-bars.
| -rw-r--r-- | man/xresources.texi | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/man/xresources.texi b/man/xresources.texi index e9233df25d5..142b1bc70a0 100644 --- a/man/xresources.texi +++ b/man/xresources.texi | |||
| @@ -11,7 +11,7 @@ can customize some of the same aspects using the system registry. | |||
| 11 | @xref{MS-Windows Registry}. Likewise, Emacs on MacOS Carbon emulates X | 11 | @xref{MS-Windows Registry}. Likewise, Emacs on MacOS Carbon emulates X |
| 12 | resources using the Preferences system. @xref{Mac Environment Variables}. | 12 | resources using the Preferences system. @xref{Mac Environment Variables}. |
| 13 | 13 | ||
| 14 | When Emacs is built using an ``X toolkit'', such as Lucid or | 14 | When Emacs is built using an ``X toolkit'', such as Lucid or |
| 15 | LessTif, you need to use X resources to customize the appearance of | 15 | LessTif, you need to use X resources to customize the appearance of |
| 16 | the widgets, including the menu-bar, scroll-bar, and dialog boxes. | 16 | the widgets, including the menu-bar, scroll-bar, and dialog boxes. |
| 17 | This is because the libraries that implement these don't provide for | 17 | This is because the libraries that implement these don't provide for |
| @@ -73,7 +73,7 @@ and their particular meanings. Case distinctions are significant in | |||
| 73 | these names. Each resource specification in @file{~/.Xdefaults} | 73 | these names. Each resource specification in @file{~/.Xdefaults} |
| 74 | states the name of the program and the name of the resource. For | 74 | states the name of the program and the name of the resource. For |
| 75 | Emacs, the program name is @samp{Emacs}. It looks like this: | 75 | Emacs, the program name is @samp{Emacs}. It looks like this: |
| 76 | 76 | ||
| 77 | @example | 77 | @example |
| 78 | Emacs.borderWidth: 2 | 78 | Emacs.borderWidth: 2 |
| 79 | @end example | 79 | @end example |
| @@ -321,6 +321,9 @@ Number of lines to reserve for the tool bar. A zero value suppresses | |||
| 321 | the tool bar. If the value is non-zero and | 321 | the tool bar. If the value is non-zero and |
| 322 | @code{auto-resize-tool-bars} is non-@code{nil}, the tool bar's size | 322 | @code{auto-resize-tool-bars} is non-@code{nil}, the tool bar's size |
| 323 | will be changed automatically so that all tool bar items are visible. | 323 | will be changed automatically so that all tool bar items are visible. |
| 324 | If the value of @code{auto-resize-tool-bars} is @code{grow-only}, | ||
| 325 | the tool bar expands automatically, but does not contract automatically. | ||
| 326 | To contract the tool bar, you must redraw the frame by entering @kbd{C-l}. | ||
| 324 | 327 | ||
| 325 | @item @code{useXIM} (class @code{UseXIM}) | 328 | @item @code{useXIM} (class @code{UseXIM}) |
| 326 | @cindex XIM | 329 | @cindex XIM |
| @@ -438,7 +441,7 @@ Emacs.pane.menubar.font: 8x16 | |||
| 438 | 441 | ||
| 439 | @noindent | 442 | @noindent |
| 440 | Resources for @emph{non-menubar} toolkit pop-up menus have | 443 | Resources for @emph{non-menubar} toolkit pop-up menus have |
| 441 | @samp{menu*} instead of @samp{pane.menubar}. For example, to specify | 444 | @samp{menu*} instead of @samp{pane.menubar}. For example, to specify |
| 442 | the font @samp{8x16} for the pop-up menu items, write this: | 445 | the font @samp{8x16} for the pop-up menu items, write this: |
| 443 | 446 | ||
| 444 | @example | 447 | @example |
| @@ -701,7 +704,7 @@ the menubar and the scroll bar in Emacs we use: | |||
| 701 | widget "Emacs.pane.menubar" style "my_style" | 704 | widget "Emacs.pane.menubar" style "my_style" |
| 702 | widget "Emacs.pane.emacs.verticalScrollBar" style "my_style" | 705 | widget "Emacs.pane.emacs.verticalScrollBar" style "my_style" |
| 703 | @end smallexample | 706 | @end smallexample |
| 704 | 707 | ||
| 705 | But to avoid having to type it all, wildcards are often used. @samp{*} | 708 | But to avoid having to type it all, wildcards are often used. @samp{*} |
| 706 | matches zero or more characters and @samp{?} matches one character. So "*" | 709 | matches zero or more characters and @samp{?} matches one character. So "*" |
| 707 | matches all widgets. | 710 | matches all widgets. |