Mercurial > emacs
annotate lispref/frames.texi @ 10759:fe6bdcb0d99f
Update icon-type values.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Wed, 15 Feb 1995 09:57:18 +0000 |
| parents | 126f7560fd28 |
| children | 73dc8205d259 |
| rev | line source |
|---|---|
| 6547 | 1 @c -*-texinfo-*- |
| 2 @c This is part of the GNU Emacs Lisp Reference Manual. | |
| 3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc. | |
| 4 @c See the file elisp.texi for copying conditions. | |
| 5 @setfilename ../info/frames | |
| 6 @node Frames, Positions, Windows, Top | |
| 7 @chapter Frames | |
| 8 @cindex frame | |
| 9 | |
| 10 A @var{frame} is a rectangle on the screen that contains one or more | |
| 11 Emacs windows. A frame initially contains a single main window (plus | |
|
8427
bc548090f760
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8110
diff
changeset
|
12 perhaps a minibuffer window), which you can subdivide vertically or |
| 6547 | 13 horizontally into smaller windows. |
| 14 | |
| 15 @cindex terminal frame | |
| 16 @cindex X window frame | |
| 17 When Emacs runs on a text-only terminal, it has just one frame, a | |
| 18 @dfn{terminal frame}. There is no way to create another terminal frame | |
| 19 after startup. If Emacs has an X display, it does not have a terminal | |
| 20 frame; instead, it starts with a single @dfn{X window frame}. You can | |
| 21 create more; see @ref{Creating Frames}. | |
| 22 | |
| 23 @defun framep object | |
| 24 This predicate returns @code{t} if @var{object} is a frame, and | |
| 25 @code{nil} otherwise. | |
| 26 @end defun | |
| 27 | |
| 28 @menu | |
| 29 * Creating Frames:: Creating additional X Window frames. | |
| 30 * Frame Parameters:: Controlling frame size, position, font, etc. | |
| 31 * Deleting Frames:: Frames last until explicitly deleted. | |
| 32 * Finding All Frames:: How to examine all existing frames. | |
| 33 * Frames and Windows:: A frame contains windows; | |
| 34 display of text always works through windows. | |
| 35 * Minibuffers and Frames:: How a frame finds the minibuffer to use. | |
| 36 * Input Focus:: Specifying the selected frame. | |
| 37 * Visibility of Frames:: Frames may be visible or invisible, or icons. | |
| 38 * Raising and Lowering:: Raising a frame makes it hide other X windows; | |
| 39 lowering it makes the others hide them. | |
| 40 * Frame Configurations:: Saving the state of all frames. | |
| 41 * Mouse Tracking:: Getting events that say when the mouse moves. | |
| 42 * Mouse Position:: Asking where the mouse is, or moving it. | |
| 43 * Pop-Up Menus:: Displaying a menu for the user to select from. | |
| 44 * Dialog Boxes:: Displaying a box to ask yes or no. | |
|
7684
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
45 * Pointer Shapes:: Specifying the shape of the mouse pointer. |
| 6547 | 46 * X Selections:: Transferring text to and from other X clients. |
| 47 * X Connections:: Opening and closing the X server connection. | |
| 48 * Resources:: Getting resource values from the server. | |
| 49 * Server Data:: Getting info about the X server. | |
| 50 @end menu | |
| 51 | |
| 52 @xref{Display}, for related information. | |
| 53 | |
| 54 @node Creating Frames | |
| 55 @section Creating Frames | |
| 56 | |
| 57 To create a new frame, call the function @code{make-frame}. | |
| 58 | |
| 59 @defun make-frame alist | |
| 60 This function creates a new frame, if the display mechanism permits | |
| 61 creation of frames. (An X server does; an ordinary terminal does not.) | |
| 62 | |
| 63 The argument is an alist specifying frame parameters. Any parameters | |
| 64 not mentioned in @var{alist} default according to the value of the | |
| 65 variable @code{default-frame-alist}; parameters not specified there | |
| 66 either default from the standard X defaults file and X resources. | |
| 67 | |
| 68 The set of possible parameters depends in principle on what kind of | |
|
8427
bc548090f760
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8110
diff
changeset
|
69 window system Emacs uses to display its frames. @xref{X Frame |
| 6547 | 70 Parameters}, for documentation of individual parameters you can specify |
| 71 when creating an X window frame. | |
| 72 @end defun | |
| 73 | |
| 74 @defvar before-make-frame-hook | |
| 75 A normal hook run by @code{make-frame} before it actually creates the | |
| 76 frame. | |
| 77 @end defvar | |
| 78 | |
| 79 @defvar after-make-frame-hook | |
| 80 A normal hook run by @code{make-frame} after it creates the frame. | |
| 81 @end defvar | |
| 82 | |
| 83 @node Frame Parameters | |
| 84 @section Frame Parameters | |
| 85 | |
| 86 A frame has many parameters that control its appearance and behavior. | |
| 87 Just what parameters a frame has depends on what display mechanism it | |
| 88 uses. | |
| 89 | |
| 90 Frame parameters exist for the sake of window systems. A terminal frame | |
| 91 has a few parameters, for compatibility's sake only. You can't change | |
| 92 these parameters directly; the only ones that ever change are the height | |
| 93 and width. | |
| 94 | |
| 95 @menu | |
| 96 * Parameter Access:: How to change a frame's parameters. | |
| 97 * Initial Parameters:: Specifying frame parameters when you make a frame. | |
| 98 * X Frame Parameters:: Individual parameters documented. | |
|
7174
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
99 * Size and Position:: Changing the size and position of a frame. |
| 6547 | 100 @end menu |
| 101 | |
| 102 @node Parameter Access | |
| 103 @subsection Access to Frame Parameters | |
| 104 | |
| 105 These functions let you read and change the parameter values of a | |
| 106 frame. | |
| 107 | |
| 108 @defun frame-parameters frame | |
| 109 The function @code{frame-parameters} returns an alist listing all the | |
| 110 parameters of @var{frame} and their values. | |
| 111 @end defun | |
| 112 | |
| 113 @defun modify-frame-parameters frame alist | |
| 114 This function alters the parameters of frame @var{frame} based on the | |
| 115 elements of @var{alist}. Each element of @var{alist} has the form | |
| 116 @code{(@var{parm} . @var{value})}, where @var{parm} is a symbol naming a | |
| 117 parameter. If you don't mention a parameter in @var{alist}, its value | |
| 118 doesn't change. | |
| 119 @end defun | |
| 120 | |
| 121 @node Initial Parameters | |
| 122 @subsection Initial Frame Parameters | |
| 123 | |
| 124 You can specify the parameters for the initial startup frame | |
| 125 by setting @code{initial-frame-alist} in your @file{.emacs} file. | |
| 126 | |
| 127 @defvar initial-frame-alist | |
| 128 This variable's value is an alist of parameter values used when creating | |
|
8110
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
129 the initial X window frame. Each element has the form: |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
130 |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
131 @example |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
132 (@var{parameter} . @var{value}) |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
133 @end example |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
134 |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
135 Emacs creates the initial frame before it reads your @file{~/.emacs} |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
136 file. After reading that file, Emacs checks @code{initial-frame-alist}, |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
137 and applies the parameter settings in the altered value to the already |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
138 created initial frame. |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
139 |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
140 If these settings affect the frame geometry, you'll see the frame appear |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
141 with the wrong geometry and then change to the specified one. If you |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
142 like, you can specify the same geometry with X resources; those do take |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
143 affect before the frame is created. @xref{Resources X,, X Resources, |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
144 emacs, The GNU Emacs Manual}. |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
145 |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
146 X resource settings typically apply to all frames. If you want to |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
147 specify some X resources solely for the sake of the initial frame, and |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
148 you don't want them to apply to subsequent frames, here's how to achieve |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
149 this. Specify parameters in @code{default-frame-alist} to override the |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
150 X resources for subsequent frames; then, to prevent these from affecting |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
151 the initial frame, specify the same parameters in |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
152 @code{initial-frame-alist} with values that match the X resources. |
| 6547 | 153 @end defvar |
| 154 | |
| 155 If these parameters specify a separate minibuffer-only frame, | |
| 156 and you have not created one, Emacs creates one for you. | |
| 157 | |
| 158 @defvar minibuffer-frame-alist | |
| 159 This variable's value is an alist of parameter values used when creating | |
| 160 an initial minibuffer-only frame---if such a frame is needed, according | |
| 161 to the parameters for the main initial frame. | |
| 162 @end defvar | |
| 163 | |
|
8110
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
164 @defvar special-display-frame-alist |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
165 The variable @code{special-display-frame-alist} specifies the frame |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
166 parameters for special display frames. |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
167 @end defvar |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
168 |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
169 @defvar default-frame-alist |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
170 This is an alist specifying default values of frame parameters for |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
171 subsequent Emacs frames (not the initial ones). |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
172 @end defvar |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
173 |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
174 If you use options that specify window appearance when you invoke Emacs, |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
175 they take effect by adding elements to @code{default-frame-alist}. One |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
176 exception is @samp{-geometry}, which adds to @code{initial-frame-alist} |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
177 instead. @xref{Command Arguments,,, emacs, The GNU Emacs Manual}. |
|
bf6ecdddf78b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7684
diff
changeset
|
178 |
| 6547 | 179 @node X Frame Parameters |
| 180 @subsection X Window Frame Parameters | |
| 181 | |
| 182 Just what parameters a frame has depends on what display mechanism it | |
| 183 uses. Here is a table of the parameters of an X window frame: | |
| 184 | |
| 185 @table @code | |
| 186 @item name | |
| 187 The name of the frame. Most window managers display the frame's name in | |
| 188 the frame's border, at the top of the frame. If you don't specify a | |
| 189 name, and you have more than one frame, Emacs sets the frame name based | |
| 190 on the buffer displayed in the frame's selected window. | |
| 191 | |
| 192 If you specify the frame name explicitly when you create the frame, the | |
| 193 name is also used (instead of the name of the Emacs executable) when | |
| 194 looking up X resources for the frame. | |
| 195 | |
| 196 @item left | |
|
7684
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
197 The screen position of the left edge, in pixels. The value may be |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
198 @code{-} instead of a number; that represents @samp{-0} in a geometry |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
199 specification. |
| 6547 | 200 |
| 201 @item top | |
|
7684
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
202 The screen position of the top edge, in pixels. The value may be |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
203 @code{-} instead of a number; that represents @samp{-0} in a geometry |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
204 specification. |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
205 |
|
10220
126f7560fd28
Add icon-left and icon-top frame parameters.
Richard M. Stallman <rms@gnu.org>
parents:
9453
diff
changeset
|
206 @item icon-left |
|
126f7560fd28
Add icon-left and icon-top frame parameters.
Richard M. Stallman <rms@gnu.org>
parents:
9453
diff
changeset
|
207 The screen position of the left edge @emph{of the frame's icon}, in |
|
126f7560fd28
Add icon-left and icon-top frame parameters.
Richard M. Stallman <rms@gnu.org>
parents:
9453
diff
changeset
|
208 pixels, counting from the left edge of the screen. This takes effect if |
|
126f7560fd28
Add icon-left and icon-top frame parameters.
Richard M. Stallman <rms@gnu.org>
parents:
9453
diff
changeset
|
209 and when the frame is iconified. |
|
126f7560fd28
Add icon-left and icon-top frame parameters.
Richard M. Stallman <rms@gnu.org>
parents:
9453
diff
changeset
|
210 |
|
126f7560fd28
Add icon-left and icon-top frame parameters.
Richard M. Stallman <rms@gnu.org>
parents:
9453
diff
changeset
|
211 @item icon-top |
|
126f7560fd28
Add icon-left and icon-top frame parameters.
Richard M. Stallman <rms@gnu.org>
parents:
9453
diff
changeset
|
212 The screen position of the top edge @emph{of the frame's icon}, in |
|
126f7560fd28
Add icon-left and icon-top frame parameters.
Richard M. Stallman <rms@gnu.org>
parents:
9453
diff
changeset
|
213 pixels, counting from the top edge of the screen. This takes effect if |
|
126f7560fd28
Add icon-left and icon-top frame parameters.
Richard M. Stallman <rms@gnu.org>
parents:
9453
diff
changeset
|
214 and when the frame is iconified. |
|
126f7560fd28
Add icon-left and icon-top frame parameters.
Richard M. Stallman <rms@gnu.org>
parents:
9453
diff
changeset
|
215 |
|
7684
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
216 @item user-position |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
217 Non-@code{nil} if the screen position of the frame was explicitly |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
218 requested by the user (for example, with the @samp{-geometry} option). |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
219 Nothing automatically makes this parameter non-@code{nil}; it is up to |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
220 Lisp programs that call @code{make-frame} to specify this parameter as |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
221 well as specifying the @code{left} and @code{top} parameters. |
| 6547 | 222 |
| 223 @item height | |
|
7174
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
224 The height of the frame contents, in characters. (To get the height in |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
225 pixels, call @code{frame-pixel-height}; see @ref{Size and Position}.) |
| 6547 | 226 |
| 227 @item width | |
|
7174
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
228 The width of the frame contents, in characters. (To get the height in |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
229 pixels, call @code{frame-pixel-width}; see @ref{Size and Position}.) |
| 6547 | 230 |
| 231 @item window-id | |
| 232 The number of the X window for the frame. | |
| 233 | |
| 234 @item minibuffer | |
| 235 Whether this frame has its own minibuffer. The value @code{t} means | |
| 236 yes, @code{nil} means no, @code{only} means this frame is just a | |
| 237 minibuffer, a minibuffer window (in some other frame) means the new | |
| 238 frame uses that minibuffer. | |
| 239 | |
| 240 @item font | |
| 241 The name of the font for displaying text in the frame. This is a | |
| 242 string. | |
| 243 | |
| 244 @item auto-raise | |
| 245 Whether selecting the frame raises it (non-@code{nil} means yes). | |
| 246 | |
| 247 @item auto-lower | |
| 248 Whether deselecting the frame lowers it (non-@code{nil} means yes). | |
| 249 | |
| 250 @item vertical-scroll-bars | |
| 251 Whether the frame has scroll bars for vertical scrolling | |
| 252 (non-@code{nil} means yes). | |
| 253 | |
| 254 @item horizontal-scroll-bars | |
| 255 Whether the frame has scroll bars for horizontal scrolling | |
| 256 (non-@code{nil} means yes). (Horizontal scroll bars are not currently | |
| 257 implemented.) | |
| 258 | |
| 259 @item icon-type | |
|
10759
fe6bdcb0d99f
Update icon-type values.
Richard M. Stallman <rms@gnu.org>
parents:
10220
diff
changeset
|
260 The type of icon to use for this frame when it is iconified. If the |
|
fe6bdcb0d99f
Update icon-type values.
Richard M. Stallman <rms@gnu.org>
parents:
10220
diff
changeset
|
261 value is a string, that specifies a file containing a bitmap to use. |
|
fe6bdcb0d99f
Update icon-type values.
Richard M. Stallman <rms@gnu.org>
parents:
10220
diff
changeset
|
262 Any other non-@code{nil} value specifies the default bitmap icon (a |
|
fe6bdcb0d99f
Update icon-type values.
Richard M. Stallman <rms@gnu.org>
parents:
10220
diff
changeset
|
263 picture of a gnu); @code{nil} specifies a text icon. |
| 6547 | 264 |
| 265 @item foreground-color | |
|
8427
bc548090f760
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8110
diff
changeset
|
266 The color to use for the image of a character. This is a string; the X |
| 6547 | 267 server defines the meaningful color names. |
| 268 | |
| 269 @item background-color | |
|
8427
bc548090f760
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8110
diff
changeset
|
270 The color to use for the background of characters. |
| 6547 | 271 |
| 272 @item mouse-color | |
|
7684
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
273 The color for the mouse pointer. |
| 6547 | 274 |
| 275 @item cursor-color | |
| 276 The color for the cursor that shows point. | |
| 277 | |
| 278 @item border-color | |
| 279 The color for the border of the frame. | |
| 280 | |
| 281 @item cursor-type | |
| 282 The way to display the cursor. There are two legitimate values: | |
| 283 @code{bar} and @code{box}. The symbol @code{bar} specifies a vertical | |
| 284 bar between characters as the cursor. The symbol @code{box} specifies | |
| 285 an ordinary black box overlaying the character after point; that is the | |
| 286 default. | |
| 287 | |
| 288 @item border-width | |
| 289 The width in pixels of the window border. | |
| 290 | |
| 291 @item internal-border-width | |
| 292 The distance in pixels between text and border. | |
| 293 | |
| 294 @item unsplittable | |
| 295 If non-@code{nil}, this frame's window is never split automatically. | |
| 296 | |
| 297 @item visibility | |
| 298 The state of visibility of the frame. There are three possibilities: | |
| 299 @code{nil} for invisible, @code{t} for visible, and @code{icon} for | |
| 300 iconified. @xref{Visibility of Frames}. | |
| 301 | |
| 302 @item menu-bar-lines | |
| 303 The number of lines to allocate at the top of the frame for a menu bar. | |
| 9453 | 304 The default is 1. @xref{Menu Bar}. (In Emacs versions that use the X |
| 305 toolkit, there is only one menu bar line; all that matters about the | |
| 306 number you specify is whether it is greater than zero.) | |
| 6547 | 307 |
| 308 @item parent-id | |
| 309 @c ??? Not yet working. | |
| 310 The X window number of the window that should be the parent of this one. | |
| 311 Specifying this lets you create an Emacs window inside some other | |
| 312 application's window. (It is not certain this will be implemented; try | |
| 313 it and see if it works.) | |
| 314 @end table | |
| 315 | |
|
7174
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
316 @node Size and Position |
| 6547 | 317 @subsection Frame Size And Position |
| 318 | |
| 319 You can read or change the size and position of a frame using the | |
|
8427
bc548090f760
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8110
diff
changeset
|
320 frame parameters @code{left}, @code{top}, @code{height}, and |
|
7684
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
321 @code{width}. Whatever geometry parameters you don't specify are chosen |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
322 by the window manager in its usual fashion. |
| 6547 | 323 |
| 324 Here are some special features for working with sizes and positions: | |
| 325 | |
| 326 @defun set-frame-position frame left top | |
| 327 This function sets the position of the top left corner of | |
|
8427
bc548090f760
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8110
diff
changeset
|
328 @var{frame} to @var{left} and @var{top}. These arguments are measured |
| 6547 | 329 in pixels, counting from the top left corner of the screen. |
| 330 @end defun | |
| 331 | |
| 332 @defun frame-height &optional frame | |
| 333 @defunx frame-width &optional frame | |
| 334 These functions return the height and width of @var{frame}, measured in | |
| 335 characters. If you don't supply @var{frame}, they use the selected | |
| 336 frame. | |
| 337 @end defun | |
| 338 | |
| 339 @defun frame-pixel-height &optional frame | |
| 340 @defunx frame-pixel-width &optional frame | |
| 341 These functions return the height and width of @var{frame}, measured in | |
| 342 pixels. If you don't supply @var{frame}, they use the selected frame. | |
| 343 @end defun | |
| 344 | |
| 345 @defun frame-char-height &optional frame | |
| 346 @defunx frame-char-width &optional frame | |
|
8427
bc548090f760
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8110
diff
changeset
|
347 These functions return the height and width of a character in |
|
bc548090f760
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8110
diff
changeset
|
348 @var{frame}, measured in pixels. The values depend on the choice of |
|
bc548090f760
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8110
diff
changeset
|
349 font. If you don't supply @var{frame}, these functions use the selected |
|
bc548090f760
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8110
diff
changeset
|
350 frame. |
| 6547 | 351 @end defun |
| 352 | |
| 353 @defun set-frame-size frame cols rows | |
|
7174
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
354 This function sets the size of @var{frame}, measured in characters; |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
355 @var{cols} and @var{rows} specify the new width and height. |
| 6547 | 356 |
|
7174
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
357 To set the size based on values measured in pixels, use |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
358 @code{frame-char-height} and @code{frame-char-width} to convert |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
359 them to units of characters. |
| 6547 | 360 @end defun |
| 361 | |
| 362 The old-fashioned functions @code{set-screen-height} and | |
| 363 @code{set-screen-width}, which were used to specify the height and width | |
| 364 of the screen in Emacs versions that did not support multiple frames, | |
| 365 are still usable. They apply to the selected frame. @xref{Screen | |
| 366 Size}. | |
| 367 | |
| 368 @defun x-parse-geometry geom | |
| 369 @cindex geometry specification | |
| 370 The function @code{x-parse-geometry} converts a standard X windows | |
|
8427
bc548090f760
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8110
diff
changeset
|
371 geometry string to an alist that you can use as part of the argument to |
| 6547 | 372 @code{make-frame}. |
| 373 | |
| 374 The alist describes which parameters were specified in @var{geom}, and | |
| 375 gives the values specified for them. Each element looks like | |
| 376 @code{(@var{parameter} . @var{value})}. The possible @var{parameter} | |
| 377 values are @code{left}, @code{top}, @code{width}, and @code{height}. | |
| 378 | |
| 379 @smallexample | |
| 380 (x-parse-geometry "35x70+0-0") | |
| 381 @result{} ((width . 35) (height . 70) (left . 0) (top . -1)) | |
| 382 @end smallexample | |
| 383 @end defun | |
| 384 | |
| 385 @ignore | |
| 386 New functions @code{set-frame-height} and @code{set-frame-width} set the | |
| 387 size of a specified frame. The frame is the first argument; the size is | |
| 388 the second. | |
| 389 @end ignore | |
| 390 | |
| 391 @node Deleting Frames | |
| 392 @section Deleting Frames | |
| 393 @cindex deletion of frames | |
| 394 | |
| 395 Frames remain potentially visible until you explicitly @dfn{delete} | |
| 396 them. A deleted frame cannot appear on the screen, but continues to | |
| 397 exist as a Lisp object until there are no references to it. There is no | |
| 398 way to cancel the deletion of a frame aside from restoring a saved frame | |
| 399 configuration (@pxref{Frame Configurations}); this is similar to the | |
| 400 way windows behave. | |
| 401 | |
| 402 @deffn Command delete-frame &optional frame | |
| 403 This function deletes the frame @var{frame}. By default, @var{frame} is | |
| 404 the selected frame. | |
| 405 @end deffn | |
| 406 | |
| 407 @defun frame-live-p frame | |
| 408 The function @code{frame-live-p} returns non-@code{nil} if the frame | |
| 409 @var{frame} has not been deleted. | |
| 410 @end defun | |
| 411 | |
| 412 @node Finding All Frames | |
| 413 @section Finding All Frames | |
| 414 | |
| 415 @defun frame-list | |
| 416 The function @code{frame-list} returns a list of all the frames that | |
| 417 have not been deleted. It is analogous to @code{buffer-list} for | |
| 418 buffers. The list that you get is newly created, so modifying the list | |
| 419 doesn't have any effect on the internals of Emacs. | |
| 420 @end defun | |
| 421 | |
| 422 @defun visible-frame-list | |
| 423 This function returns a list of just the currently visible frames. | |
| 424 @xref{Visibility of Frames}. | |
| 425 @end defun | |
| 426 | |
| 427 @defun next-frame &optional frame minibuf | |
| 428 The function @code{next-frame} lets you cycle conveniently through all | |
| 429 the frames from an arbitrary starting point. It returns the ``next'' | |
| 430 frame after @var{frame} in the cycle. If @var{frame} is omitted or | |
| 431 @code{nil}, it defaults to the selected frame. | |
| 432 | |
| 433 The second argument, @var{minibuf}, says which frames to consider: | |
| 434 | |
| 435 @table @asis | |
| 436 @item @code{nil} | |
| 437 Exclude minibuffer-only frames. | |
| 438 @item @code{visible} | |
| 439 Consider all visible frames. | |
| 440 @item a window | |
| 441 Consider only the frames using that particular window as their | |
| 442 minibuffer. | |
| 443 @item anything else | |
| 444 Consider all frames. | |
| 445 @end table | |
| 446 @end defun | |
| 447 | |
| 448 @defun previous-frame &optional frame minibuf | |
| 449 Like @code{next-frame}, but cycles through all frames in the opposite | |
| 450 direction. | |
| 451 @end defun | |
| 452 | |
| 453 @node Frames and Windows | |
| 454 @section Frames and Windows | |
| 455 | |
|
7174
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
456 Each window is part of one and only one frame; you can get the frame |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
457 with @code{window-frame}. |
| 6547 | 458 |
| 459 @defun window-frame window | |
| 460 This function returns the frame that @var{window} is on. | |
| 461 @end defun | |
| 462 | |
|
7174
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
463 All the non-minibuffer windows in a frame are arranged in a cyclic |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
464 order. The order runs from the frame's top window, which is at the |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
465 upper left corner, down and to the right, until it reaches the window at |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
466 the lower right corner (always the minibuffer window, if the frame has |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
467 one), and then it moves back to the top. |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
468 |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
469 @defun frame-top-window frame |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
470 This returns the topmost, leftmost window of frame @var{frame}. |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
471 @end defun |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
472 |
| 6547 | 473 At any time, exactly one window on any frame is @dfn{selected within the |
| 474 frame}. The significance of this designation is that selecting the | |
| 475 frame also selects this window. You can get the frame's current | |
| 476 selected window with @code{frame-selected-window}. | |
| 477 | |
| 478 @defun frame-selected-window frame | |
|
8427
bc548090f760
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8110
diff
changeset
|
479 This function returns the window on @var{frame} that is selected within |
| 6547 | 480 @var{frame}. |
| 481 @end defun | |
| 482 | |
| 483 Conversely, selecting a window for Emacs with @code{select-window} also | |
| 484 makes that window selected within its frame. @xref{Selecting Windows}. | |
| 485 | |
| 486 @node Minibuffers and Frames | |
| 487 @section Minibuffers and Frames | |
| 488 | |
| 489 Normally, each frame has its own minibuffer window at the bottom, which | |
| 490 is used whenever that frame is selected. If the frame has a minibuffer, | |
| 491 you can get it with @code{minibuffer-window} (@pxref{Minibuffer Misc}). | |
| 492 | |
| 493 However, you can also create a frame with no minibuffer. Such a frame | |
| 494 must use the minibuffer window of some other frame. When you create the | |
| 495 frame, you can specify explicitly the frame on which to find the | |
| 496 minibuffer to use. If you don't, then the minibuffer is found in the | |
| 497 frame which is the value of the variable | |
|
8427
bc548090f760
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8110
diff
changeset
|
498 @code{default-minibuffer-frame}. Its value should be a frame that does |
| 6547 | 499 have a minibuffer. |
| 500 | |
| 501 If you use a minibuffer-only frame, you might want that frame to raise | |
| 502 when you enter the minibuffer. If so, set the variable | |
| 503 @code{minibuffer-auto-raise} to @code{t}. @xref{Raising and Lowering}. | |
| 504 | |
| 505 @node Input Focus | |
| 506 @section Input Focus | |
| 507 @cindex input focus | |
| 508 @cindex selected frame | |
| 509 | |
| 510 At any time, one frame in Emacs is the @dfn{selected frame}. The selected | |
| 511 window always resides on the selected frame. | |
| 512 | |
| 513 @defun selected-frame | |
| 514 This function returns the selected frame. | |
| 515 @end defun | |
| 516 | |
| 517 The X server normally directs keyboard input to the X window that the | |
| 518 mouse is in. Some window managers use mouse clicks or keyboard events | |
| 519 to @dfn{shift the focus} to various X windows, overriding the normal | |
| 520 behavior of the server. | |
| 521 | |
| 522 Lisp programs can switch frames ``temporarily'' by calling | |
| 523 the function @code{select-frame}. This does not override the window | |
| 524 manager; rather, it escapes from the window manager's control until | |
| 525 that control is somehow reasserted. | |
| 526 | |
| 527 @c ??? This is not yet implemented properly. | |
| 528 @defun select-frame frame | |
| 529 This function selects frame @var{frame}, temporarily disregarding the | |
| 530 focus of the X server. The selection of @var{frame} lasts until the | |
| 531 next time the user does something to select a different frame, or until | |
| 532 the next time this function is called. | |
| 533 @end defun | |
| 534 | |
| 535 Emacs cooperates with the X server and the window managers by arranging | |
| 536 to select frames according to what the server and window manager ask | |
| 537 for. It does so by generating a special kind of input event, called a | |
| 538 @dfn{focus} event. The command loop handles a focus event by calling | |
| 539 @code{handle-select-frame}. @xref{Focus Events}. | |
| 540 | |
| 541 @deffn Command handle-switch-frame frame | |
| 542 This function handles a focus event by selecting frame @var{frame}. | |
| 543 | |
| 544 Focus events normally do their job by invoking this command. | |
| 545 Don't call it for any other reason. | |
| 546 @end deffn | |
| 547 | |
| 548 @defun redirect-frame-focus frame focus-frame | |
| 549 This function redirects focus from @var{frame} to @var{focus-frame}. | |
|
8427
bc548090f760
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8110
diff
changeset
|
550 This means that @var{focus-frame} will receive subsequent keystrokes |
| 6547 | 551 intended for @var{frame}. After such an event, the value of |
| 552 @code{last-event-frame} will be @var{focus-frame}. Also, switch-frame | |
| 553 events specifying @var{frame} will instead select @var{focus-frame}. | |
| 554 | |
| 555 If @var{focus-frame} is @code{nil}, that cancels any existing | |
| 556 redirection for @var{frame}, which therefore once again receives its own | |
| 557 events. | |
| 558 | |
| 559 One use of focus redirection is for frames that don't have minibuffers. | |
| 560 These frames use minibuffers on other frames. Activating a minibuffer | |
| 561 on another frame redirects focus to that frame. This puts the focus on | |
| 562 the minibuffer's frame, where it belongs, even though the mouse remains | |
|
8427
bc548090f760
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8110
diff
changeset
|
563 in the frame that activated the minibuffer. |
| 6547 | 564 |
| 565 Selecting a frame can also change focus redirections. Selecting frame | |
| 566 @code{bar}, when @code{foo} had been selected, changes any redirections | |
| 567 pointing to @code{foo} so that they point to @code{bar} instead. This | |
| 568 allows focus redirection to work properly when the user switches from | |
| 569 one frame to another using @code{select-window}. | |
| 570 | |
| 571 This means that a frame whose focus is redirected to itself is treated | |
| 572 differently from a frame whose focus is not redirected. | |
| 573 @code{select-frame} affects the former but not the latter. | |
| 574 | |
| 575 The redirection lasts until @code{redirect-frame-focus} is called to | |
| 576 change it. | |
| 577 @end defun | |
| 578 | |
| 579 @node Visibility of Frames | |
| 580 @section Visibility of Frames | |
| 581 @cindex visible frame | |
| 582 @cindex invisible frame | |
| 583 @cindex iconified frame | |
| 584 @cindex frame visibility | |
| 585 | |
| 586 A frame may be @dfn{visible}, @dfn{invisible}, or @dfn{iconified}. If | |
| 587 it is visible, you can see its contents. If it is iconified, the | |
| 588 frame's contents do not appear on the screen, but an icon does. If the | |
|
8427
bc548090f760
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8110
diff
changeset
|
589 frame is invisible, it doesn't show on the screen, not even as an icon. |
| 6547 | 590 |
| 591 @deffn Command make-frame-visible &optional frame | |
| 592 This function makes frame @var{frame} visible. If you omit @var{frame}, | |
| 593 it makes the selected frame visible. | |
| 594 @end deffn | |
| 595 | |
| 596 @deffn Command make-frame-invisible &optional frame | |
| 597 This function makes frame @var{frame} invisible. If you omit | |
| 598 @var{frame}, it makes the selected frame invisible. | |
| 599 @end deffn | |
| 600 | |
| 601 @deffn Command iconify-frame &optional frame | |
| 602 This function iconifies frame @var{frame}. If you omit @var{frame}, it | |
| 603 iconifies the selected frame. | |
| 604 @end deffn | |
| 605 | |
| 606 @defun frame-visible-p frame | |
| 607 This returns the visibility status of frame @var{frame}. The value is | |
| 608 @code{t} if @var{frame} is visible, @code{nil} if it is invisible, and | |
| 609 @code{icon} if it is iconified. | |
| 610 @end defun | |
| 611 | |
| 612 The visibility status of a frame is also available as a frame | |
| 613 parameter. You can read or change it as such. @xref{X Frame | |
| 614 Parameters}. | |
| 615 | |
| 616 @node Raising and Lowering | |
| 617 @section Raising and Lowering Frames | |
| 618 | |
| 619 The X Window System uses a desktop metaphor. Part of this metaphor is | |
| 620 the idea that windows are stacked in a notional third dimension | |
| 621 perpendicular to the screen surface, and thus ordered from ``highest'' | |
| 622 to ``lowest''. Where two windows overlap, the one higher up covers the | |
| 623 one underneath. Even a window at the bottom of the stack can be seen if | |
| 624 no other window overlaps it. | |
| 625 | |
| 626 @cindex raising a frame | |
| 627 @cindex lowering a frame | |
| 628 A window's place in this ordering is not fixed; in fact, users tend to | |
| 629 change the order frequently. @dfn{Raising} a window means moving it | |
| 630 ``up'', to the top of the stack. @dfn{Lowering} a window means moving | |
| 631 it to the bottom of the stack. This motion is in the notional third | |
| 632 dimension only, and does not change the position of the window on the | |
| 633 screen. | |
| 634 | |
| 635 You can raise and lower Emacs's X windows with these functions: | |
| 636 | |
| 637 @defun raise-frame frame | |
| 638 This function raises frame @var{frame}. | |
| 639 @end defun | |
| 640 | |
| 641 @defun lower-frame frame | |
| 642 This function lowers frame @var{frame}. | |
| 643 @end defun | |
| 644 | |
| 645 @defopt minibuffer-auto-raise | |
| 646 If this is non-@code{nil}, activation of the minibuffer raises the frame | |
| 647 that the minibuffer window is in. | |
| 648 @end defopt | |
| 649 | |
| 650 You can also enable auto-raise (raising automatically when a frame is | |
| 651 selected) or auto-lower (lowering automatically when it is deselected) | |
| 652 for any frame using frame parameters. @xref{X Frame Parameters}. | |
| 653 | |
| 654 @node Frame Configurations | |
| 655 @section Frame Configurations | |
| 656 @cindex frame configuration | |
| 657 | |
| 658 A @dfn{frame configuration} records the current arrangement of frames, | |
| 659 all their properties, and the window configuration of each one. | |
| 660 | |
| 661 @defun current-frame-configuration | |
|
8427
bc548090f760
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8110
diff
changeset
|
662 This function returns a frame configuration list that describes |
| 6547 | 663 the current arrangement of frames and their contents. |
| 664 @end defun | |
| 665 | |
| 666 @defun set-frame-configuration configuration | |
| 667 This function restores the state of frames described in | |
| 668 @var{configuration}. | |
| 669 @end defun | |
| 670 | |
| 671 @node Mouse Tracking | |
| 672 @section Mouse Tracking | |
| 673 @cindex mouse tracking | |
| 674 @cindex tracking the mouse | |
| 675 | |
|
8427
bc548090f760
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8110
diff
changeset
|
676 Sometimes it is useful to @dfn{track} the mouse, which means to display |
| 6547 | 677 something to indicate where the mouse is and move the indicator as the |
| 678 mouse moves. For efficient mouse tracking, you need a way to wait until | |
| 679 the mouse actually moves. | |
| 680 | |
| 681 The convenient way to track the mouse is to ask for events to represent | |
| 682 mouse motion. Then you can wait for motion by waiting for an event. In | |
| 683 addition, you can easily handle any other sorts of events that may | |
| 684 occur. That is useful, because normally you don't want to track the | |
| 685 mouse forever---only until some other event, such as the release of a | |
| 686 button. | |
| 687 | |
| 688 @defspec track-mouse body@dots{} | |
| 689 Execute @var{body}, meanwhile generating input events for mouse motion. | |
| 690 The code in @var{body} can read these events with @code{read-event} or | |
| 691 @code{read-key-sequence}. @xref{Motion Events}, for the format of mouse | |
| 692 motion events. | |
| 693 | |
| 694 The value of @code{track-mouse} is that of the last form in @var{body}. | |
| 695 @end defspec | |
| 696 | |
| 697 The usual purpose of tracking mouse motion is to indicate on the screen | |
| 698 the consequences of pushing or releasing a button at the current | |
| 699 position. | |
| 700 | |
| 701 @ignore | |
| 702 @c These are not implemented yet. | |
| 703 | |
| 704 These functions change the screen appearance instantaneously. The | |
| 705 effect is transient, only until the next ordinary Emacs redisplay. That | |
| 706 is ok for mouse tracking, since it doesn't make sense for mouse tracking | |
| 707 to change the text, and the body of @code{track-mouse} normally reads | |
| 708 the events itself and does not do redisplay. | |
| 709 | |
| 710 @defun x-contour-region window beg end | |
| 711 This function draws lines to make a box around the text from @var{beg} | |
| 712 to @var{end}, in window @var{window}. | |
| 713 @end defun | |
| 714 | |
| 715 @defun x-uncontour-region window beg end | |
| 716 This function erases the lines that would make a box around the text | |
| 717 from @var{beg} to @var{end}, in window @var{window}. Use it to remove | |
| 718 a contour that you previously made by calling @code{x-contour-region}. | |
| 719 @end defun | |
| 720 | |
| 721 @defun x-draw-rectangle frame left top right bottom | |
| 722 This function draws a hollow rectangle on frame @var{frame} with the | |
| 723 specified edge coordinates, all measured in pixels from the inside top | |
| 724 left corner. It uses the cursor color, the one used for indicating the | |
| 725 location of point. | |
| 726 @end defun | |
| 727 | |
| 728 @defun x-erase-rectangle frame left top right bottom | |
| 729 This function erases a hollow rectangle on frame @var{frame} with the | |
| 730 specified edge coordinates, all measured in pixels from the inside top | |
| 731 left corner. Erasure means redrawing the text and background that | |
| 732 normally belong in the specified rectangle. | |
| 733 @end defun | |
| 734 @end ignore | |
| 735 | |
| 736 @node Mouse Position | |
| 737 @section Mouse Position | |
| 738 @cindex mouse position | |
| 739 @cindex position of mouse | |
| 740 | |
| 741 The functions @code{mouse-position} and @code{set-mouse-position} | |
| 742 give access to the current position of the mouse. | |
| 743 | |
| 744 @defun mouse-position | |
| 745 This function returns a description of the position of the mouse. The | |
| 746 value looks like @code{(@var{frame} @var{x} . @var{y})}, where @var{x} | |
|
7174
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
747 and @var{y} are integers giving the position in characters relative to |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
748 the top left corner of the inside of @var{frame}. |
| 6547 | 749 @end defun |
| 750 | |
| 751 @defun set-mouse-position frame x y | |
| 752 This function @dfn{warps the mouse} to position @var{x}, @var{y} in | |
| 753 frame @var{frame}. The arguments @var{x} and @var{y} are integers, | |
|
7174
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
754 giving the position in characters relative to the top left corner of the |
| 6547 | 755 inside of @var{frame}. |
|
7174
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
756 @end defun |
| 6547 | 757 |
|
7174
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
758 @defun mouse-pixel-position |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
759 This function is like @code{mouse-position} except that it returns |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
760 coordinates in units of pixels rather than units of characters. |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
761 @end defun |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
762 |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
763 @defun set-mouse-pixel-position frame x y |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
764 This function warps the mouse like @code{set-mouse-position} except that |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
765 @var{x} and @var{y} are in units of pixels rather than units of |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
766 characters. These coordinates are not required to be within the frame. |
| 6547 | 767 @end defun |
| 768 | |
| 769 @need 3000 | |
| 770 | |
| 771 @node Pop-Up Menus | |
| 772 @section Pop-Up Menus | |
| 773 | |
| 774 @defun x-popup-menu position menu | |
| 775 This function displays a pop-up menu and returns an indication of | |
| 776 what selection the user makes. | |
| 777 | |
| 778 The argument @var{position} specifies where on the screen to put the | |
| 779 menu. It can be either a mouse button event (which says to put the menu | |
| 780 where the user actuated the button) or a list of this form: | |
| 781 | |
| 782 @example | |
| 783 ((@var{xoffset} @var{yoffset}) @var{window}) | |
| 784 @end example | |
| 785 | |
| 786 @noindent | |
|
7174
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
787 where @var{xoffset} and @var{yoffset} are coordinates, measured in |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
788 pixels, counting from the top left corner of @var{window}'s frame. |
| 6547 | 789 |
| 790 If @var{position} is @code{t}, it means to use the current mouse | |
| 791 position. If @var{position} is @code{nil}, it means to precompute the | |
| 792 key binding equivalents for the keymaps specified in @var{menu}, | |
| 793 without actually displaying or popping up the menu. | |
| 794 | |
| 795 The argument @var{menu} says what to display in the menu. It can be a | |
| 796 keymap or a list of keymaps (@pxref{Menu Keymaps}). Alternatively, it | |
| 797 can have the following form: | |
| 798 | |
| 799 @example | |
| 800 (@var{title} @var{pane1} @var{pane2}...) | |
| 801 @end example | |
| 802 | |
| 803 @noindent | |
| 804 where each pane is a list of form | |
| 805 | |
| 806 @example | |
| 807 (@var{title} (@var{line} @var{item})...) | |
| 808 @end example | |
| 809 | |
| 810 Each @var{line} should be a string, and each @var{item} should be the | |
| 811 value to return if that @var{line} is chosen. | |
| 812 @end defun | |
| 813 | |
| 814 @strong{Usage note:} Don't use @code{x-popup-menu} to display a menu if | |
| 815 a prefix key with a menu keymap would do the job. If you use a menu | |
| 816 keymap to implement a menu, @kbd{C-h c} and @kbd{C-h a} can see the | |
| 817 individual items in that menu and provide help for them. If instead you | |
| 818 implement the menu by defining a command that calls @code{x-popup-menu}, | |
| 819 the help facilities cannot know what happens inside that command, so | |
| 820 they cannot give any help for the menu's items. This is the reason why | |
| 821 all the menu bar items except @samp{Buffers} are implemented with menu | |
| 822 keymaps (@pxref{Menu Keymaps}). | |
| 823 | |
| 824 @node Dialog Boxes | |
| 825 @section Dialog Boxes | |
| 826 @cindex dialog boxes | |
| 827 | |
| 828 A dialog box is a variant of a pop-up menu. It looks a little | |
| 829 different (if Emacs uses an X toolkit), it always appears in the center | |
| 830 of a frame, and it has just one level and one pane. The main use of | |
| 831 dialog boxes is for asking questions that the user can answer with | |
| 832 ``yes'', ``no'', and a few other alternatives. The functions | |
| 833 @code{y-or-n-p} and @code{yes-or-no-p} use dialog boxes instead of the | |
| 834 keyboard, when called from commands invoked by mouse clicks. | |
| 835 | |
| 836 @defun x-popup-dialog position contents | |
| 837 This function displays a pop-up dialog box and returns an indication of | |
| 838 what selection the user makes. The argument @var{contents} specifies | |
| 839 the alternatives to offer; it has this format: | |
| 840 | |
| 841 @example | |
|
7174
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
842 (@var{title} (@var{string} . @var{value})@dots{}) |
| 6547 | 843 @end example |
| 844 | |
| 845 @noindent | |
| 846 which looks like the list that specifies a single pane for | |
| 847 @code{x-popup-menu}. | |
| 848 | |
|
7174
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
849 The return value is @var{value} from the chosen alternative. |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
850 |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
851 An element of the list may be just a string instead of a cons cell |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
852 @code{(@var{string} . @var{value})}. That makes a box that cannot |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
853 be selected. |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
854 |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
855 If @code{nil} appears in the list, it separates the left-hand items from |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
856 the right-hand items; items that precede the @code{nil} appear on the |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
857 left, and items that follow the @code{nil} appear on the right. If you |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
858 don't include a @code{nil} in the list, then approximately half the |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
859 items appear on each side. |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
860 |
| 6547 | 861 Dialog boxes always appear in the center of a frame; the argument |
| 862 @var{position} specifies which frame. The possible values are as in | |
| 863 @code{x-popup-menu}, but the precise coordinates don't matter; only the | |
| 864 frame matters. | |
|
7174
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
865 |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
866 If your Emacs executable does not use an X toolkit, then it cannot |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
867 display a real dialog box; so instead it displays the same items in a |
|
0313f520a4d9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6547
diff
changeset
|
868 pop-up menu in the center of the frame. |
| 6547 | 869 @end defun |
| 870 | |
|
7684
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
871 @node Pointer Shapes |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
872 @section Pointer Shapes |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
873 @cindex pointer shape |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
874 @cindex mouse pointer shape |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
875 |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
876 These variables specify which mouse pointer shape to use in various |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
877 situations: |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
878 |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
879 @table @code |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
880 @item x-pointer-shape |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
881 @vindex x-pointer-shape |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
882 This variable specifies the pointer shape to use ordinarily in the Emacs |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
883 frame. |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
884 |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
885 @item x-sensitive-text-pointer-shape |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
886 @vindex x-sensitive-text-pointer-shape |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
887 This variable specifies the pointer shape to use when the mouse |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
888 is over mouse-sensitive text. |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
889 @end table |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
890 |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
891 These variables affect newly created frames. They do not normally |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
892 affect existing frames; however, if you set the mouse color of a frame, |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
893 that also updates its pointer shapes based on the current values of |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
894 these variables. @xref{X Frame Parameters}. |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
895 |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
896 The values you can use, to specify either of these pointer shapes, are |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
897 defined in the file @file{lisp/x-win.el}. Use @kbd{M-x apropos |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
898 @key{RET} x-pointer @key{RET}} to see a list of them. |
|
ec7caebc4a1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7174
diff
changeset
|
899 |
| 6547 | 900 @node X Selections |
| 901 @section X Selections | |
| 902 @cindex selection (for X windows) | |
| 903 | |
| 904 The X server records a set of @dfn{selections} which permit transfer of | |
| 905 data between application programs. The various selections are | |
| 906 distinguished by @dfn{selection types}, represented in Emacs by | |
| 907 symbols. X clients including Emacs can read or set the selection for | |
| 908 any given type. | |
| 909 | |
| 910 @defun x-set-selection type data | |
| 911 This function sets a ``selection'' in the X server. It takes two | |
| 912 arguments: a selection type @var{type}, and the value to assign to it, | |
| 913 @var{data}. If @var{data} is @code{nil}, it means to clear out the | |
| 914 selection. Otherwise, @var{data} may be a string, a symbol, an integer | |
| 915 (or a cons of two integers or list of two integers), an overlay, or a | |
| 916 cons of two markers pointing to the same buffer. An overlay or a pair | |
| 917 of markers stands for text in the overlay or between the markers. | |
| 918 | |
| 919 The data may also be a vector of valid non-vector selection values. | |
| 920 | |
| 921 Each possible @var{type} has its own selection value, which changes | |
| 922 independently. The usual values of @var{type} are @code{PRIMARY} and | |
| 923 @code{SECONDARY}; these are symbols with upper-case names, in accord | |
| 924 with X Window System conventions. The default is @code{PRIMARY}. | |
| 925 @end defun | |
| 926 | |
|
8427
bc548090f760
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8110
diff
changeset
|
927 @defun x-get-selection &optional type data-type |
| 6547 | 928 This function accesses selections set up by Emacs or by other X |
| 929 clients. It takes two optional arguments, @var{type} and | |
| 930 @var{data-type}. The default for @var{type}, the selection type, is | |
| 931 @code{PRIMARY}. | |
| 932 | |
| 933 The @var{data-type} argument specifies the form of data conversion to | |
| 934 use, to convert the raw data obtained from another X client into Lisp | |
| 935 data. Meaningful values include @code{TEXT}, @code{STRING}, | |
| 936 @code{TARGETS}, @code{LENGTH}, @code{DELETE}, @code{FILE_NAME}, | |
| 937 @code{CHARACTER_POSITION}, @code{LINE_NUMBER}, @code{COLUMN_NUMBER}, | |
| 938 @code{OWNER_OS}, @code{HOST_NAME}, @code{USER}, @code{CLASS}, | |
| 939 @code{NAME}, @code{ATOM}, and @code{INTEGER}. (These are symbols with | |
| 940 upper-case names in accord with X conventions.) The default for | |
| 941 @var{data-type} is @code{STRING}. | |
| 942 @end defun | |
| 943 | |
| 944 @cindex cut buffer | |
| 945 The X server also has a set of numbered @dfn{cut buffers} which can | |
| 946 store text or other data being moved between applications. Cut buffers | |
| 947 are considered obsolete, but Emacs supports them for the sake of X | |
| 948 clients that still use them. | |
| 949 | |
| 950 @defun x-get-cut-buffer n | |
| 951 This function returns the contents of cut buffer number @var{n}. | |
| 952 @end defun | |
| 953 | |
| 954 @defun x-set-cut-buffer string | |
| 955 This function stores @var{string} into the first cut buffer (cut buffer | |
| 956 0), moving the other values down through the series of cut buffers, much | |
| 957 like the way successive kills in Emacs move down the kill ring. | |
| 958 @end defun | |
| 959 | |
| 960 @node X Connections | |
| 961 @section X Connections | |
| 962 | |
| 963 You can close the connection with the X server with the function | |
| 964 @code{x-close-current-connection}, and open a new one with | |
| 965 @code{x-open-connection} (perhaps with a different server and display). | |
| 966 | |
| 967 @defun x-close-current-connection | |
| 968 This function closes the connection to the X server. It deletes all | |
| 969 frames, making Emacs effectively inaccessible to the user; therefore, a | |
| 970 Lisp program that closes the connection should open another one. | |
| 971 @end defun | |
| 972 | |
| 973 @defun x-open-connection display &optional resource-string | |
| 974 This function opens a connection to an X server, for use of display | |
| 975 @var{display}. | |
| 976 | |
| 977 The optional argument @var{resource-string} is a string of resource | |
| 978 names and values, in the same format used in the @file{.Xresources} | |
| 979 file. The values you specify override the resource values recorded in | |
| 980 the X server itself. Here's an example of what this string might look | |
| 981 like: | |
| 982 | |
| 983 @example | |
| 984 "*BorderWidth: 3\n*InternalBorder: 2\n" | |
| 985 @end example | |
| 986 | |
| 987 @xref{Resources}. | |
| 988 @end defun | |
| 989 | |
| 990 @defun x-display-color-p | |
| 991 This returns @code{t} if the connected X display has color, and | |
| 992 @code{nil} otherwise. | |
| 993 @end defun | |
| 994 | |
| 995 @defun x-color-defined-p color | |
| 8712 | 996 This function reports whether a color name is meaningful. It returns |
| 997 @code{t} if so; otherwise, @code{nil}. | |
| 998 | |
| 999 Note that this does not tell you whether the display you are using | |
| 1000 really supports that color. You can ask for any defined color on any | |
| 1001 kind of display, and you will get some result---that is how the X server | |
| 1002 works. Here's an approximate way to test whether your display supports | |
| 1003 the color @var{color}: | |
| 1004 | |
| 1005 @example | |
| 1006 (defun x-color-supported-p (color) | |
| 1007 (and (x-color-defined-p color) | |
| 1008 (or (x-display-color-p) | |
| 1009 (member color '("black" "white")) | |
| 1010 (and (> (x-display-planes) 1) | |
| 1011 (equal color "gray"))))) | |
| 1012 @end example | |
| 1013 @end defun | |
| 6547 | 1014 |
| 8712 | 1015 @defun x-color-values color |
| 1016 This function returns a value that describes what @var{color} should | |
| 1017 ideally look like. If @var{color} is defined, the value is a list of | |
| 1018 three integers, which give the amount of red, the amount of green, and | |
| 1019 the amount of blue. Each integer ranges in principle from 0 to 65535, | |
| 1020 but in practice no value seems to be above 65280. If @var{color} is not | |
| 1021 defined, the value is @code{nil}. | |
| 1022 | |
| 1023 @example | |
| 1024 (x-color-values "black") | |
| 1025 @result{} (0 0 0) | |
| 1026 (x-color-values "white") | |
| 1027 @result{} (65280 65280 65280) | |
| 1028 (x-color-values "red") | |
| 1029 @result{} (65280 0 0) | |
| 1030 (x-color-values "pink") | |
| 1031 @result{} (65280 49152 51968) | |
| 1032 (x-color-values "hungry") | |
| 1033 @result{} nil | |
| 1034 @end example | |
| 6547 | 1035 @end defun |
| 1036 | |
| 1037 @defun x-synchronize flag | |
| 1038 The function @code{x-synchronize} enables or disables synchronous | |
| 1039 communication with the X server. It enables synchronous communication | |
| 1040 if @var{flag} is non-@code{nil}, and disables it if @var{flag} is | |
| 1041 @code{nil}. | |
| 1042 | |
| 1043 In synchronous mode, Emacs waits for a response to each X protocol | |
| 1044 command before doing anything else. This is useful for debugging Emacs, | |
| 1045 because protocol errors are reported right away, which helps you find | |
| 1046 the erroneous command. Synchronous mode is not the default because it | |
| 1047 is much slower. | |
| 1048 @end defun | |
| 1049 | |
| 1050 @node Resources | |
| 1051 @section X Resources | |
| 1052 | |
|
8427
bc548090f760
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8110
diff
changeset
|
1053 @defun x-get-resource attribute &optional component subclass |
| 6547 | 1054 The function @code{x-get-resource} retrieves a resource value from the X |
| 1055 Windows defaults database. | |
| 1056 | |
| 1057 Resources are indexed by a combination of a @dfn{key} and a @dfn{class}. | |
| 1058 This function searches using a key of the form | |
|
8427
bc548090f760
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8110
diff
changeset
|
1059 @samp{@var{instance}.@var{attribute}} (where @var{instance} is the name |
|
bc548090f760
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8110
diff
changeset
|
1060 under which Emacs was invoked), and using @samp{Emacs} as the class. |
| 6547 | 1061 |
| 1062 The optional arguments @var{component} and @var{subclass} add to the key | |
| 1063 and the class, respectively. You must specify both of them or neither. | |
| 1064 If you specify them, the key is | |
| 1065 @samp{@var{instance}.@var{component}.@var{attribute}}, and the class is | |
| 1066 @samp{Emacs.@var{subclass}}. | |
| 1067 @end defun | |
| 1068 | |
| 1069 @xref{Resources X, X Resources,, emacs, The GNU Emacs Manual}. | |
| 1070 | |
| 1071 @node Server Data | |
| 1072 @section Data about the X Server | |
| 1073 | |
| 1074 This section describes functions and a variable that you can use to | |
| 1075 get information about the capabilities and origin of the X server that | |
| 1076 Emacs is displaying its frames on. | |
| 1077 | |
| 1078 @defun x-display-screens | |
| 1079 This function returns the number of screens associated with the current | |
| 1080 display. | |
| 1081 @end defun | |
| 1082 | |
| 1083 @defun x-server-version | |
| 1084 This function returns the list of version numbers of the X server in | |
| 1085 use. | |
| 1086 @end defun | |
| 1087 | |
| 1088 @defun x-server-vendor | |
| 1089 This function returns the vendor supporting the X server in use. | |
| 1090 @end defun | |
| 1091 | |
| 1092 @defun x-display-pixel-height | |
| 1093 This function returns the height of this X screen in pixels. | |
| 1094 @end defun | |
| 1095 | |
| 1096 @defun x-display-mm-height | |
| 1097 This function returns the height of this X screen in millimeters. | |
| 1098 @end defun | |
| 1099 | |
| 1100 @defun x-display-pixel-width | |
| 1101 This function returns the width of this X screen in pixels. | |
| 1102 @end defun | |
| 1103 | |
| 1104 @defun x-display-mm-width | |
| 1105 This function returns the width of this X screen in millimeters. | |
| 1106 @end defun | |
| 1107 | |
| 1108 @defun x-display-backing-store | |
| 1109 This function returns the backing store capability of this screen. | |
| 1110 Values can be the symbols @code{always}, @code{when-mapped}, or | |
| 1111 @code{not-useful}. | |
| 1112 @end defun | |
| 1113 | |
| 1114 @defun x-display-save-under | |
| 1115 This function returns non-@code{nil} if this X screen supports the | |
| 1116 SaveUnder feature. | |
| 1117 @end defun | |
| 1118 | |
| 1119 @defun x-display-planes | |
| 1120 This function returns the number of planes this display supports. | |
| 1121 @end defun | |
| 1122 | |
| 1123 @defun x-display-visual-class | |
| 1124 This function returns the visual class for this X screen. The value is | |
| 1125 one of the symbols @code{static-gray}, @code{gray-scale}, | |
| 1126 @code{static-color}, @code{pseudo-color}, @code{true-color}, and | |
| 1127 @code{direct-color}. | |
| 1128 @end defun | |
| 1129 | |
| 1130 @defun x-display-color-p | |
| 1131 This function returns @code{t} if the X screen in use is a color | |
| 1132 screen. | |
| 1133 @end defun | |
| 1134 | |
| 1135 @defun x-display-color-cells | |
| 1136 This function returns the number of color cells this X screen supports. | |
| 1137 @end defun | |
| 1138 | |
| 1139 @ignore | |
| 1140 @defvar x-no-window-manager | |
| 1141 This variable's value is is @code{t} if no X window manager is in use. | |
| 1142 @end defvar | |
| 1143 @end ignore | |
| 1144 | |
| 1145 @ignore | |
| 1146 @item | |
| 1147 The functions @code{x-pixel-width} and @code{x-pixel-height} return the | |
| 1148 width and height of an X Window frame, measured in pixels. | |
| 1149 @end ignore |
