diff options
| author | Jan Djärv | 2010-07-29 19:10:41 +0200 |
|---|---|---|
| committer | Jan Djärv | 2010-07-29 19:10:41 +0200 |
| commit | 8b2dd50845433369cf98d98faca41d948b55af22 (patch) | |
| tree | 2ec299caeb84221048ac119bc61a91c98cf6d788 | |
| parent | bfeabdc3d7568d08491eb3eab7249bc6c2c24af3 (diff) | |
| download | emacs-8b2dd50845433369cf98d98faca41d948b55af22.tar.gz emacs-8b2dd50845433369cf98d98faca41d948b55af22.zip | |
Add doc and NEWS for tool-bar-position.
* doc/emacs/frames.texi (Tool Bars): Add doc for tool-bar-position.
* doc/lispref/frames.texi (Layout Parameters): Add doc for tool-bar-position.
| -rw-r--r-- | doc/emacs/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/emacs/frames.texi | 6 | ||||
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/frames.texi | 5 | ||||
| -rw-r--r-- | etc/NEWS | 5 |
5 files changed, 24 insertions, 0 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index a082f8ddb65..fb57554765a 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-07-29 Jan Djärv <jan.h.d@swipnet.se> | ||
| 2 | |||
| 3 | * frames.texi (Tool Bars): Add doc for tool-bar-position. | ||
| 4 | |||
| 1 | 2010-06-23 Glenn Morris <rgm@gnu.org> | 5 | 2010-06-23 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * abbrevs.texi, basic.texi, buffers.texi, building.texi, calendar.texi: | 7 | * abbrevs.texi, basic.texi, buffers.texi, building.texi, calendar.texi: |
diff --git a/doc/emacs/frames.texi b/doc/emacs/frames.texi index fbc21f17884..fb7413e8593 100644 --- a/doc/emacs/frames.texi +++ b/doc/emacs/frames.texi | |||
| @@ -1270,6 +1270,12 @@ Customize @code{tool-bar-style} to select style. The default style is | |||
| 1270 | the same as for the desktop in the Gnome case. If no default is found, | 1270 | the same as for the desktop in the Gnome case. If no default is found, |
| 1271 | the tool bar uses just images. | 1271 | the tool bar uses just images. |
| 1272 | 1272 | ||
| 1273 | @cindex Tool Bar position | ||
| 1274 | You can also control the placement of the tool bar for the GTK+ tool bar | ||
| 1275 | with the frame parameter @code{tool-bar-position}. | ||
| 1276 | For a detailed description of frame parameters and customization, | ||
| 1277 | see @ref{Frame Parameters,,, elisp, The Emacs Lisp Reference Manual}. | ||
| 1278 | |||
| 1273 | @node Dialog Boxes | 1279 | @node Dialog Boxes |
| 1274 | @section Using Dialog Boxes | 1280 | @section Using Dialog Boxes |
| 1275 | @cindex dialog boxes | 1281 | @cindex dialog boxes |
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 9d1a9db1148..f5c66806764 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-07-29 Jan Djärv <jan.h.d@swipnet.se> | ||
| 2 | |||
| 3 | * frames.texi (Layout Parameters): Add doc for tool-bar-position. | ||
| 4 | |||
| 1 | 2010-07-29 Michael Albinus <michael.albinus@gmx.de> | 5 | 2010-07-29 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 6 | ||
| 3 | * processes.texi (Process Information): Explain process property | 7 | * processes.texi (Process Information): Explain process property |
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi index 7dfe3242c5d..a54a65b0743 100644 --- a/doc/lispref/frames.texi +++ b/doc/lispref/frames.texi | |||
| @@ -677,6 +677,11 @@ The number of lines to use for the tool bar. A value of @code{nil} | |||
| 677 | means don't display a tool bar. (GTK and Nextstep allow at most one | 677 | means don't display a tool bar. (GTK and Nextstep allow at most one |
| 678 | tool bar line; they treat larger values as 1.) | 678 | tool bar line; they treat larger values as 1.) |
| 679 | 679 | ||
| 680 | @item tool-bar-position | ||
| 681 | The position of the tool bar. Currently only for the GTK tool bar. | ||
| 682 | Value can be one of @code{top}, @code{bottom} @code{left}, @code{right}. | ||
| 683 | The default is @code{top}. | ||
| 684 | |||
| 680 | @item line-spacing | 685 | @item line-spacing |
| 681 | Additional space to leave below each text line, in pixels (a positive | 686 | Additional space to leave below each text line, in pixels (a positive |
| 682 | integer). @xref{Line Height}, for more information. | 687 | integer). @xref{Line Height}, for more information. |
| @@ -99,6 +99,11 @@ Use `set-scroll-bar-mode' to change this. | |||
| 99 | Customize `tool-bar-style' to choose style. On a Gnome desktop, the default | 99 | Customize `tool-bar-style' to choose style. On a Gnome desktop, the default |
| 100 | is taken from the desktop settings. | 100 | is taken from the desktop settings. |
| 101 | 101 | ||
| 102 | ** GTK tool bars can be placed on the left/right or top/bottom of the frame. | ||
| 103 | The frame-parameter tool-bar-position controls this. It takes the values | ||
| 104 | top, left, tight or bottom. The Options => Show/Hide menu has entries | ||
| 105 | for this. | ||
| 106 | |||
| 102 | ** Lucid menus and dialogs can display antialiased fonts if Emacs is built | 107 | ** Lucid menus and dialogs can display antialiased fonts if Emacs is built |
| 103 | with Xft. | 108 | with Xft. |
| 104 | 109 | ||