comparison lispref/frames.texi @ 90813:e6fdae9180d4

Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 698-710) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 216) - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-196
author Miles Bader <miles@gnu.org>
date Tue, 24 Apr 2007 21:56:25 +0000
parents 4ef881a120fe b5eba5af1ddd
children e9f94688a064
comparison
equal deleted inserted replaced
90812:6137cc8ddf90 90813:e6fdae9180d4
148 part specifies the screen number for a given server. When you use two 148 part specifies the screen number for a given server. When you use two
149 screens belonging to one server, Emacs knows by the similarity in their 149 screens belonging to one server, Emacs knows by the similarity in their
150 names that they share a single keyboard, and it treats them as a single 150 names that they share a single keyboard, and it treats them as a single
151 terminal. 151 terminal.
152 152
153 Note that some graphical terminals can output to more than a one
154 monitor (or other output device) at the same time. On these
155 ``multi-monitor'' setups, a single @var{display} value controls the
156 output to all the physical monitors. In this situation, there is
157 currently no platform-independent way for Emacs to distinguish between
158 the different physical monitors.
159
153 @deffn Command make-frame-on-display display &optional parameters 160 @deffn Command make-frame-on-display display &optional parameters
154 This creates and returns a new frame on display @var{display}, taking 161 This creates and returns a new frame on display @var{display}, taking
155 the other frame parameters from @var{parameters}. Aside from the 162 the other frame parameters from @var{parameters}. Aside from the
156 @var{display} argument, it is like @code{make-frame} (@pxref{Creating 163 @var{display} argument, it is like @code{make-frame} (@pxref{Creating
157 Frames}). 164 Frames}).
2087 @end defun 2094 @end defun
2088 2095
2089 @defun display-pixel-height &optional display 2096 @defun display-pixel-height &optional display
2090 This function returns the height of the screen in pixels. 2097 This function returns the height of the screen in pixels.
2091 On a character terminal, it gives the height in characters. 2098 On a character terminal, it gives the height in characters.
2099
2100 For graphical terminals, note that on ``multi-monitor'' setups this
2101 refers to the pixel width for all physical monitors associated with
2102 @var{display}. @xref{Multiple Displays}.
2092 @end defun 2103 @end defun
2093 2104
2094 @defun display-pixel-width &optional display 2105 @defun display-pixel-width &optional display
2095 This function returns the width of the screen in pixels. 2106 This function returns the width of the screen in pixels.
2096 On a character terminal, it gives the width in characters. 2107 On a character terminal, it gives the width in characters.
2108
2109 For graphical terminals, note that on ``multi-monitor'' setups this
2110 refers to the pixel width for all physical monitors associated with
2111 @var{display}. @xref{Multiple Displays}.
2097 @end defun 2112 @end defun
2098 2113
2099 @defun display-mm-height &optional display 2114 @defun display-mm-height &optional display
2100 This function returns the height of the screen in millimeters, 2115 This function returns the height of the screen in millimeters,
2101 or @code{nil} if Emacs cannot get that information. 2116 or @code{nil} if Emacs cannot get that information.