aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Djärv2010-07-29 19:10:41 +0200
committerJan Djärv2010-07-29 19:10:41 +0200
commit8b2dd50845433369cf98d98faca41d948b55af22 (patch)
tree2ec299caeb84221048ac119bc61a91c98cf6d788
parentbfeabdc3d7568d08491eb3eab7249bc6c2c24af3 (diff)
downloademacs-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/ChangeLog4
-rw-r--r--doc/emacs/frames.texi6
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/frames.texi5
-rw-r--r--etc/NEWS5
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 @@
12010-07-29 Jan Djärv <jan.h.d@swipnet.se>
2
3 * frames.texi (Tool Bars): Add doc for tool-bar-position.
4
12010-06-23 Glenn Morris <rgm@gnu.org> 52010-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
1270the same as for the desktop in the Gnome case. If no default is found, 1270the same as for the desktop in the Gnome case. If no default is found,
1271the tool bar uses just images. 1271the 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
1275with the frame parameter @code{tool-bar-position}.
1276For a detailed description of frame parameters and customization,
1277see @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 @@
12010-07-29 Jan Djärv <jan.h.d@swipnet.se>
2
3 * frames.texi (Layout Parameters): Add doc for tool-bar-position.
4
12010-07-29 Michael Albinus <michael.albinus@gmx.de> 52010-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}
677means don't display a tool bar. (GTK and Nextstep allow at most one 677means don't display a tool bar. (GTK and Nextstep allow at most one
678tool bar line; they treat larger values as 1.) 678tool bar line; they treat larger values as 1.)
679 679
680@item tool-bar-position
681The position of the tool bar. Currently only for the GTK tool bar.
682Value can be one of @code{top}, @code{bottom} @code{left}, @code{right}.
683The default is @code{top}.
684
680@item line-spacing 685@item line-spacing
681Additional space to leave below each text line, in pixels (a positive 686Additional space to leave below each text line, in pixels (a positive
682integer). @xref{Line Height}, for more information. 687integer). @xref{Line Height}, for more information.
diff --git a/etc/NEWS b/etc/NEWS
index 6b781ab8364..2aed81de277 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -99,6 +99,11 @@ Use `set-scroll-bar-mode' to change this.
99Customize `tool-bar-style' to choose style. On a Gnome desktop, the default 99Customize `tool-bar-style' to choose style. On a Gnome desktop, the default
100is taken from the desktop settings. 100is taken from the desktop settings.
101 101
102** GTK tool bars can be placed on the left/right or top/bottom of the frame.
103The frame-parameter tool-bar-position controls this. It takes the values
104top, left, tight or bottom. The Options => Show/Hide menu has entries
105for 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
103with Xft. 108with Xft.
104 109