Mercurial > emacs
annotate src/xterm.c @ 1309:aa286e6e7bec
(Info-follow-nearest-node): Handle line breaks after *note.
Fix interactive spec. Doc fix. Put on mouse-3.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 02 Oct 1992 23:52:26 +0000 |
parents | 74ae34a80f94 |
children | 44215417cf6e |
rev | line source |
---|---|
286 | 1 /* X Communication module for terminals which understand the X protocol. |
621 | 2 Copyright (C) 1989, 1992 Free Software Foundation, Inc. |
286 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
621 | 8 the Free Software Foundation; either version 2, or (at your option) |
286 | 9 any later version. |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 /* Serious problems: | |
21 | |
22 Kludge: dup2 is used to put the X-connection socket into desc # 0 | |
23 so that wait_reading_process_input will wait for it in place of | |
24 actual terminal input. | |
25 | |
26 */ | |
27 | |
28 #include "config.h" | |
29 | |
30 #ifdef HAVE_X_WINDOWS | |
31 | |
32 #include "lisp.h" | |
33 | |
34 /* On 4.3 this loses if it comes after xterm.h. */ | |
35 #include <signal.h> | |
36 | |
37 /* This may include sys/types.h, and that somehow loses | |
38 if this is not done before the other system files. */ | |
39 #include "xterm.h" | |
40 | |
1020
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
41 #ifndef USG |
286 | 42 /* Load sys/types.h if not already loaded. |
43 In some systems loading it twice is suicidal. */ | |
44 #ifndef makedev | |
45 #include <sys/types.h> | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
46 #endif /* makedev */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
47 #endif /* USG */ |
286 | 48 |
49 #ifdef BSD | |
50 #include <sys/ioctl.h> | |
51 #include <strings.h> | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
52 #else /* ! defined (BSD) */ |
286 | 53 #include <sys/termio.h> |
54 #include <string.h> | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
55 #endif /* ! defined (BSD) */ |
286 | 56 |
57 /* Allow m- file to inhibit use of FIONREAD. */ | |
58 #ifdef BROKEN_FIONREAD | |
59 #undef FIONREAD | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
60 #endif /* ! defined (BROKEN_FIONREAD) */ |
286 | 61 |
62 /* We are unable to use interrupts if FIONREAD is not available, | |
63 so flush SIGIO so we won't try. */ | |
64 #ifndef FIONREAD | |
65 #ifdef SIGIO | |
66 #undef SIGIO | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
67 #endif /* ! defined (SIGIO) */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
68 #endif /* FIONREAD */ |
286 | 69 |
555 | 70 #include "systime.h" |
286 | 71 |
72 #include <fcntl.h> | |
73 #include <stdio.h> | |
74 #include <ctype.h> | |
75 #include <errno.h> | |
76 #include <setjmp.h> | |
77 #include <sys/stat.h> | |
78 #include <sys/param.h> | |
79 | |
80 #include "dispextern.h" | |
81 #include "termhooks.h" | |
82 #include "termopts.h" | |
83 #include "termchar.h" | |
84 #if 0 | |
85 #include "sink.h" | |
86 #include "sinkmask.h" | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
87 #endif /* ! 0 */ |
286 | 88 #include "gnu.h" |
771 | 89 #include "frame.h" |
286 | 90 #include "disptab.h" |
91 #include "buffer.h" | |
92 | |
93 #ifdef HAVE_X11 | |
94 #define XMapWindow XMapRaised /* Raise them when mapping. */ | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
95 #else /* ! defined (HAVE_X11) */ |
286 | 96 #include <X/Xkeyboard.h> |
97 /*#include <X/Xproto.h> */ | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
98 #endif /* ! defined (HAVE_X11) */ |
286 | 99 |
100 /* For sending Meta-characters. Do we need this? */ | |
101 #define METABIT 0200 | |
102 | |
103 #define min(a,b) ((a)<(b) ? (a) : (b)) | |
104 #define max(a,b) ((a)>(b) ? (a) : (b)) | |
105 | |
106 /* Nonzero means we must reprint all windows | |
107 because 1) we received an ExposeWindow event | |
108 or 2) we received too many ExposeRegion events to record. */ | |
109 | |
110 static int expose_all_windows; | |
111 | |
112 /* Nonzero means we must reprint all icon windows. */ | |
113 | |
114 static int expose_all_icons; | |
115 | |
116 #ifndef HAVE_X11 | |
117 /* ExposeRegion events, when received, are copied into this queue | |
118 for later processing. */ | |
119 | |
120 static struct event_queue x_expose_queue; | |
121 | |
122 /* ButtonPressed and ButtonReleased events, when received, | |
123 are copied into this queue for later processing. */ | |
124 | |
125 struct event_queue x_mouse_queue; | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
126 #endif /* HAVE_X11 */ |
286 | 127 |
128 /* Nonzero after BLOCK_INPUT; prevents input events from being | |
129 processed until later. */ | |
130 | |
131 int x_input_blocked; | |
132 | |
133 #if defined (SIGIO) && defined (FIONREAD) | |
134 int BLOCK_INPUT_mask; | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
135 #endif /* ! defined (SIGIO) && defined (FIONREAD) */ |
286 | 136 |
137 /* Nonzero if input events came in while x_input_blocked was nonzero. | |
138 UNBLOCK_INPUT checks for this. */ | |
139 | |
140 int x_pending_input; | |
141 | |
142 /* The id of a bitmap used for icon windows. | |
143 One such map is shared by all Emacs icon windows. | |
144 This is zero if we have not yet had a need to create the bitmap. */ | |
145 | |
146 static Bitmap icon_bitmap; | |
147 | |
148 /* Font used for text icons. */ | |
149 | |
150 static FONT_TYPE *icon_font_info; | |
151 | |
152 /* Stuff for dealing with the main icon title. */ | |
153 | |
154 extern Lisp_Object Vcommand_line_args; | |
398 | 155 char *hostname, *x_id_name; |
395 | 156 Lisp_Object invocation_name; |
286 | 157 |
158 /* This is the X connection that we are using. */ | |
159 | |
160 Display *x_current_display; | |
161 | |
771 | 162 /* Frame being updated by update_frame. */ |
286 | 163 /* This is set by XTupdate_begin and looked at by all the |
164 XT functions. It is zero while not inside an update. | |
771 | 165 In that case, the XT functions assume that `selected_frame' |
166 is the frame to apply to. */ | |
167 | |
168 static struct frame *updating_frame; | |
169 | |
170 /* The frame (if any) which has the X window that has keyboard focus. | |
171 Zero if none. This is examined by Ffocus_frame in frame.c. */ | |
172 struct frame *x_focus_frame; | |
173 | |
174 /* The frame which currently has the visual highlight, and should get | |
175 keyboard input (other sorts of input have the frame encoded in the | |
176 event). It points to the X focus frame's selected window's | |
177 frame. It differs from x_focus_frame when we're using a global | |
369 | 178 minibuffer. */ |
771 | 179 static struct frame *x_highlight_frame; |
369 | 180 |
286 | 181 /* From .Xdefaults, the value of "emacs.WarpMouse". If non-zero, |
771 | 182 mouse is moved to inside of frame when frame is de-iconified. */ |
286 | 183 |
184 static int warp_mouse_on_deiconify; | |
185 | |
186 /* During an update, maximum vpos for ins/del line operations to affect. */ | |
187 | |
188 static int flexlines; | |
189 | |
190 /* During an update, nonzero if chars output now should be highlighted. */ | |
191 | |
192 static int highlight; | |
193 | |
194 /* Nominal cursor position -- where to draw output. | |
195 During an update, these are different from the cursor-box position. */ | |
196 | |
197 static int curs_x; | |
198 static int curs_y; | |
199 | |
200 #ifdef HAVE_X11 | |
201 /* `t' if a mouse button is depressed. */ | |
202 | |
203 extern Lisp_Object Vmouse_depressed; | |
204 | |
205 /* Tells if a window manager is present or not. */ | |
206 | |
207 extern Lisp_Object Vx_no_window_manager; | |
208 | |
209 /* Timestamp that we requested selection data was made. */ | |
210 extern Time requestor_time; | |
211 | |
212 /* ID of the window requesting selection data. */ | |
213 extern Window requestor_window; | |
214 | |
215 /* Nonzero enables some debugging for the X interface code. */ | |
216 extern int _Xdebug; | |
217 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
218 #else /* ! defined (HAVE_X11) */ |
286 | 219 |
220 /* Bit patterns for the mouse cursor. */ | |
221 | |
222 short MouseCursor[] = { | |
223 0x0000, 0x0008, 0x0018, 0x0038, | |
224 0x0078, 0x00f8, 0x01f8, 0x03f8, | |
225 0x07f8, 0x00f8, 0x00d8, 0x0188, | |
226 0x0180, 0x0300, 0x0300, 0x0000}; | |
227 | |
228 short MouseMask[] = { | |
229 0x000c, 0x001c, 0x003c, 0x007c, | |
230 0x00fc, 0x01fc, 0x03fc, 0x07fc, | |
231 0x0ffc, 0x0ffc, 0x01fc, 0x03dc, | |
232 0x03cc, 0x0780, 0x0780, 0x0300}; | |
233 | |
234 static short grey_bits[] = { | |
235 0x0005, 0x000a, 0x0005, 0x000a}; | |
236 | |
237 static Pixmap GreyPixmap = 0; | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
238 #endif /* ! defined (HAVE_X11) */ |
286 | 239 |
240 /* From time to time we get info on an Emacs window, here. */ | |
241 | |
242 static WINDOWINFO_TYPE windowinfo; | |
243 | |
244 extern int errno; | |
245 | |
246 extern Display *XOpenDisplay (); | |
247 extern Window XCreateWindow (); | |
248 | |
249 extern Cursor XCreateCursor (); | |
250 extern FONT_TYPE *XOpenFont (); | |
251 | |
252 static void flashback (); | |
253 | |
254 #ifndef HAVE_X11 | |
255 static void dumpqueue (); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
256 #endif /* HAVE_X11 */ |
286 | 257 |
258 void dumpborder (); | |
621 | 259 static int XTcursor_to (); |
260 static int XTclear_end_of_line (); | |
1020
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
261 |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
262 |
771 | 263 /* These hooks are called by update_frame at the beginning and end |
264 of a frame update. We record in `updating_frame' the identity | |
265 of the frame being updated, so that the XT... functions do not | |
266 need to take a frame as argument. Most of the XT... functions | |
286 | 267 should never be called except during an update, the only exceptions |
268 being XTcursor_to, XTwrite_char and XTreassert_line_highlight. */ | |
269 | |
270 extern int mouse_track_top, mouse_track_left, mouse_track_width; | |
271 | |
272 static | |
771 | 273 XTupdate_begin (f) |
274 struct frame *f; | |
286 | 275 { |
276 int mask; | |
277 | |
771 | 278 if (f == 0) |
286 | 279 abort (); |
280 | |
771 | 281 updating_frame = f; |
282 flexlines = f->height; | |
286 | 283 highlight = 0; |
284 | |
285 BLOCK_INPUT; | |
286 #ifndef HAVE_X11 | |
287 dumpqueue (); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
288 #endif /* HAVE_X11 */ |
286 | 289 UNBLOCK_INPUT; |
290 } | |
291 | |
292 static void x_do_pending_expose (); | |
293 | |
294 static | |
771 | 295 XTupdate_end (f) |
296 struct frame *f; | |
286 | 297 { |
298 int mask; | |
299 | |
771 | 300 if (updating_frame == 0 |
301 || updating_frame != f) | |
286 | 302 abort (); |
303 | |
304 BLOCK_INPUT; | |
305 #ifndef HAVE_X11 | |
306 dumpqueue (); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
307 #endif /* HAVE_X11 */ |
771 | 308 adjust_scrollbars (f); |
286 | 309 x_do_pending_expose (); |
310 | |
771 | 311 x_display_cursor (f, 1); |
312 | |
313 updating_frame = 0; | |
286 | 314 XFlushQueue (); |
315 UNBLOCK_INPUT; | |
316 } | |
317 | |
318 /* External interface to control of standout mode. | |
319 Call this when about to modify line at position VPOS | |
320 and not change whether it is highlighted. */ | |
321 | |
322 XTreassert_line_highlight (new, vpos) | |
323 int new, vpos; | |
324 { | |
325 highlight = new; | |
326 } | |
327 | |
328 /* Call this when about to modify line at position VPOS | |
329 and change whether it is highlighted. */ | |
330 | |
331 static | |
332 XTchange_line_highlight (new_highlight, vpos, first_unused_hpos) | |
333 int new_highlight, vpos, first_unused_hpos; | |
334 { | |
335 highlight = new_highlight; | |
336 XTcursor_to (vpos, 0); | |
771 | 337 XTclear_end_of_line (updating_frame->width); |
286 | 338 } |
339 | |
340 /* This is used when starting Emacs and when restarting after suspend. | |
341 When starting Emacs, no X window is mapped. And nothing must be done | |
342 to Emacs's own window if it is suspended (though that rarely happens). */ | |
343 | |
344 static | |
345 XTset_terminal_modes () | |
346 { | |
347 } | |
348 | |
349 /* This is called when exiting or suspending Emacs. | |
350 Exiting will make the X-windows go away, and suspending | |
351 requires no action. */ | |
352 | |
353 static | |
354 XTreset_terminal_modes () | |
355 { | |
771 | 356 /* XTclear_frame (); */ |
286 | 357 } |
358 | |
771 | 359 /* Set the nominal cursor position of the frame: |
286 | 360 where display update commands will take effect. |
361 This does not affect the place where the cursor-box is displayed. */ | |
362 | |
621 | 363 static int |
286 | 364 XTcursor_to (row, col) |
365 register int row, col; | |
366 { | |
367 int mask; | |
368 int orow = row; | |
369 | |
370 curs_x = col; | |
371 curs_y = row; | |
372 | |
771 | 373 if (updating_frame == 0) |
286 | 374 { |
375 BLOCK_INPUT; | |
771 | 376 x_display_cursor (selected_frame, 1); |
286 | 377 XFlushQueue (); |
378 UNBLOCK_INPUT; | |
379 } | |
380 } | |
381 | |
382 /* Display a sequence of N glyphs found at GP. | |
383 WINDOW is the x-window to output to. LEFT and TOP are starting coords. | |
384 HL is 1 if this text is highlighted, 2 if the cursor is on it. | |
385 | |
386 FONT is the default font to use (for glyphs whose font-code is 0). */ | |
387 | |
388 static void | |
771 | 389 dumpglyphs (f, left, top, gp, n, hl, font) |
390 struct frame *f; | |
286 | 391 int left, top; |
392 register GLYPH *gp; /* Points to first GLYPH. */ | |
393 register int n; /* Number of glyphs to display. */ | |
394 int hl; | |
395 FONT_TYPE *font; | |
396 { | |
397 register int len; | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
398 Window window = FRAME_X_WINDOW (f); |
771 | 399 GC drawing_gc = (hl == 2 ? f->display.x->cursor_gc |
400 : (hl ? f->display.x->reverse_gc | |
401 : f->display.x->normal_gc)); | |
286 | 402 |
313 | 403 if (sizeof (GLYPH) == sizeof (XChar2b)) |
404 XDrawImageString16 (x_current_display, window, drawing_gc, | |
405 left, top + FONT_BASE (font), (XChar2b *) gp, n); | |
406 else if (sizeof (GLYPH) == sizeof (unsigned char)) | |
407 XDrawImageString (x_current_display, window, drawing_gc, | |
408 left, top + FONT_BASE (font), (char *) gp, n); | |
409 else | |
410 /* What size of glyph ARE you using? And does X have a function to | |
411 draw them? */ | |
412 abort (); | |
286 | 413 } |
414 | |
415 #if 0 | |
416 static void | |
771 | 417 dumpglyphs (f, left, top, gp, n, hl, font) |
418 struct frame *f; | |
286 | 419 int left, top; |
420 register GLYPH *gp; /* Points to first GLYPH. */ | |
421 register int n; /* Number of glyphs to display. */ | |
422 int hl; | |
423 FONT_TYPE *font; | |
424 { | |
771 | 425 char buf[f->width]; /* Holds characters to be displayed. */ |
286 | 426 register char *cp; /* Steps through buf[]. */ |
427 register int tlen = GLYPH_TABLE_LENGTH; | |
428 register Lisp_Object *tbase = GLYPH_TABLE_BASE; | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
429 Window window = FRAME_X_WINDOW (f); |
771 | 430 int cursor_pixel = f->display.x->cursor_pixel; |
431 int fg_pixel = f->display.x->foreground_pixel; | |
432 int bg_pixel = f->display.x->background_pixel; | |
433 int intborder = f->display.x->internal_border_width; | |
286 | 434 |
435 while (n) | |
436 { | |
437 /* Get the face-code of the next GLYPH. */ | |
438 int cf, len; | |
439 int g = *gp; | |
440 | |
441 while (GLYPH_ALIAS_P (tbase, tlen, g)) | |
442 g = GLYPH_ALIAS (tbase, g); | |
443 | |
444 cf = g >> 8; | |
445 | |
446 /* Find the run of consecutive glyphs with the same face-code. | |
447 Extract their character codes into BUF. */ | |
448 cp = buf; | |
449 while (n > 0) | |
450 { | |
451 g = *gp; | |
452 while (GLYPH_ALIAS_P (tbase, tlen, g)) | |
453 g = GLYPH_ALIAS (tbase, g); | |
454 if ((g >> 8) != cf) | |
455 break; | |
456 | |
457 *cp++ = 0377 & g; | |
458 --n; | |
459 ++gp; | |
460 } | |
461 | |
462 /* LEN gets the length of the run. */ | |
463 len = cp - buf; | |
464 | |
465 /* Now output this run of chars, with the font and pixel values | |
466 determined by the face code CF. */ | |
467 if (cf == 0) | |
468 { | |
469 #ifdef HAVE_X11 | |
771 | 470 GC GC_cursor = f->display.x->cursor_gc; |
471 GC GC_reverse = f->display.x->reverse_gc; | |
472 GC GC_normal = f->display.x->normal_gc; | |
286 | 473 |
474 XDrawImageString (x_current_display, window, | |
475 (hl == 2 | |
476 ? GC_cursor | |
477 : (hl ? GC_reverse : GC_normal)), | |
478 left, top + FONT_BASE (font), buf, len); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
479 #else /* ! defined (HAVE_X11) */ |
286 | 480 XText (window, left, top, |
481 buf, | |
482 len, | |
483 font->id, | |
484 (hl == 2 | |
485 ? (cursor_pixel == fg_pixel ? bg_pixel : fg_pixel) | |
486 : hl ? bg_pixel : fg_pixel), | |
487 (hl == 2 ? cursor_pixel | |
488 : hl ? fg_pixel : bg_pixel)); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
489 #endif /* ! defined (HAVE_X11) */ |
286 | 490 } |
491 else | |
492 { | |
493 #ifdef HAVE_X11 | |
494 if (FACE_IS_FONT (cf)) | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
495 XDrawImageString (x_current_display, FRAME_X_WINDOW (f), |
286 | 496 FACE_GC (cf), |
497 left, top + FONT_BASE (FACE_FONT (cf)), | |
498 buf, len); | |
499 else if (FACE_IS_IMAGE (cf)) | |
500 XCopyPlane (x_current_display, FACE_IMAGE (cf), | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
501 FRAME_X_WINDOW (f), |
771 | 502 f->display.x->normal_gc, |
286 | 503 0, 0, |
504 FACE_IMAGE_WIDTH (cf), | |
505 FACE_IMAGE_HEIGHT (cf), left, top); | |
506 else | |
507 abort (); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
508 #else /* ! defined (HAVE_X11) */ |
286 | 509 register struct face *fp = x_face_table[cf]; |
510 | |
511 XText (window, left, top, | |
512 buf, | |
513 len, | |
514 fp->font->id, | |
515 (hl == 2 | |
516 ? (cursor_pixel == fp->fg ? fp->bg : fp->fg) | |
517 : hl ? fp->bg : fp->fg), | |
518 (hl == 2 ? cursor_pixel | |
519 : hl ? fp->fg : fp->bg)); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
520 #endif /* ! defined (HAVE_X11) */ |
286 | 521 } |
522 left += len * FONT_WIDTH (font); | |
523 } | |
524 } | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
525 #endif /* ! 0 */ |
286 | 526 |
771 | 527 /* Output some text at the nominal frame cursor position, |
286 | 528 advancing the cursor over the text. |
529 Output LEN glyphs at START. | |
530 | |
531 `highlight', set up by XTreassert_line_highlight or XTchange_line_highlight, | |
532 controls the pixel values used for foreground and background. */ | |
533 | |
534 static | |
535 XTwrite_glyphs (start, len) | |
536 register GLYPH *start; | |
537 int len; | |
538 { | |
539 register int temp_length; | |
540 int mask; | |
771 | 541 struct frame *f; |
286 | 542 |
543 BLOCK_INPUT; | |
544 | |
771 | 545 f = updating_frame; |
546 if (f == 0) | |
286 | 547 { |
771 | 548 f = selected_frame; |
286 | 549 /* If not within an update, |
771 | 550 output at the frame's visible cursor. */ |
551 curs_x = f->cursor_x; | |
552 curs_y = f->cursor_y; | |
286 | 553 } |
554 | |
771 | 555 dumpglyphs (f, |
556 (curs_x * FONT_WIDTH (f->display.x->font) | |
557 + f->display.x->internal_border_width), | |
558 (curs_y * FONT_HEIGHT (f->display.x->font) | |
559 + f->display.x->internal_border_width), | |
560 start, len, highlight, f->display.x->font); | |
429 | 561 |
562 /* If we drew on top of the cursor, note that it is turned off. */ | |
771 | 563 if (curs_y == f->phys_cursor_y |
564 && curs_x <= f->phys_cursor_x | |
565 && curs_x + len > f->phys_cursor_x) | |
566 f->phys_cursor_x = -1; | |
286 | 567 |
771 | 568 if (updating_frame == 0) |
286 | 569 { |
771 | 570 f->cursor_x += len; |
571 x_display_cursor (f, 1); | |
572 f->cursor_x -= len; | |
286 | 573 } |
574 else | |
575 curs_x += len; | |
576 | |
577 UNBLOCK_INPUT; | |
578 } | |
579 | |
580 /* Erase the current text line from the nominal cursor position (inclusive) | |
581 to column FIRST_UNUSED (exclusive). The idea is that everything | |
582 from FIRST_UNUSED onward is already erased. */ | |
583 | |
621 | 584 static int |
286 | 585 XTclear_end_of_line (first_unused) |
586 register int first_unused; | |
587 { | |
771 | 588 struct frame *f = updating_frame; |
286 | 589 int mask; |
590 | |
771 | 591 if (f == 0) |
286 | 592 abort (); |
593 | |
771 | 594 if (curs_y < 0 || curs_y >= f->height) |
286 | 595 return; |
596 if (first_unused <= 0) | |
597 return; | |
598 | |
771 | 599 if (first_unused >= f->width) |
600 first_unused = f->width; | |
286 | 601 |
602 BLOCK_INPUT; | |
603 | |
429 | 604 /* Notice if the cursor will be cleared by this operation. */ |
771 | 605 if (curs_y == f->phys_cursor_y |
606 && curs_x <= f->phys_cursor_x | |
607 && f->phys_cursor_x < first_unused) | |
608 f->phys_cursor_x = -1; | |
286 | 609 |
610 #ifdef HAVE_X11 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
611 XClearArea (x_current_display, FRAME_X_WINDOW (f), |
771 | 612 curs_x * FONT_WIDTH (f->display.x->font) |
613 + f->display.x->internal_border_width, | |
614 curs_y * FONT_HEIGHT (f->display.x->font) | |
615 + f->display.x->internal_border_width, | |
616 FONT_WIDTH (f->display.x->font) * (first_unused - curs_x), | |
617 FONT_HEIGHT (f->display.x->font), False); | |
286 | 618 |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
619 #else /* ! defined (HAVE_X11) */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
620 XPixSet (FRAME_X_WINDOW (f), |
771 | 621 curs_x * FONT_WIDTH (f->display.x->font) + f->display.x->internal_border_width, |
622 curs_y * FONT_HEIGHT (f->display.x->font) + f->display.x->internal_border_width, | |
623 FONT_WIDTH (f->display.x->font) * (first_unused - curs_x), | |
624 FONT_HEIGHT (f->display.x->font), | |
625 f->display.x->background_pixel); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
626 #endif /* ! defined (HAVE_X11) */ |
286 | 627 |
628 UNBLOCK_INPUT; | |
629 } | |
630 | |
631 static | |
771 | 632 XTclear_frame () |
286 | 633 { |
634 int mask; | |
771 | 635 struct frame *f = updating_frame; |
636 | |
637 if (f == 0) | |
638 f = selected_frame; | |
639 | |
640 f->phys_cursor_x = -1; /* Cursor not visible. */ | |
286 | 641 curs_x = 0; /* Nominal cursor position is top left. */ |
642 curs_y = 0; | |
643 | |
644 BLOCK_INPUT; | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
645 XClear (FRAME_X_WINDOW (f)); |
286 | 646 #ifndef HAVE_X11 |
771 | 647 dumpborder (f, 0); |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
648 #endif /* HAVE_X11 */ |
286 | 649 XFlushQueue (); |
650 UNBLOCK_INPUT; | |
651 } | |
652 | |
771 | 653 /* Paint horzontal bars down the frame for a visible bell. |
286 | 654 Note that this may be way too slow on some machines. */ |
655 | |
771 | 656 XTflash (f) |
657 struct frame *f; | |
286 | 658 { |
771 | 659 register struct frame_glyphs *active_frame = FRAME_CURRENT_GLYPHS (f); |
286 | 660 register int i; |
661 int x, y; | |
662 | |
771 | 663 if (updating_frame != 0) |
286 | 664 abort (); |
665 | |
666 BLOCK_INPUT; | |
667 #ifdef HAVE_X11 | |
668 #if 0 | |
771 | 669 for (i = f->height * FONT_HEIGHT (f->display.x->font) - 10; |
286 | 670 i >= 0; |
671 i -= 100) /* Should be NO LOWER than 75 for speed reasons. */ | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
672 XFillRectangle (x_current_display, FRAME_X_WINDOW (f), |
771 | 673 f->display.x->cursor_gc, |
674 0, i, f->width * FONT_WIDTH (f->display.x->font) | |
675 + 2 * f->display.x->internal_border_width, 25); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
676 #endif /* ! 0 */ |
286 | 677 |
771 | 678 x = (f->width * FONT_WIDTH (f->display.x->font)) / 4; |
679 y = (f->height * FONT_HEIGHT (f->display.x->font)) / 4; | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
680 XFillRectangle (x_current_display, FRAME_X_WINDOW (f), |
771 | 681 f->display.x->cursor_gc, |
286 | 682 x, y, 2 * x, 2 * y); |
771 | 683 dumpglyphs (f, (x + f->display.x->internal_border_width), |
684 (y + f->display.x->internal_border_width), | |
685 &active_frame->glyphs[(f->height / 4) + 1][(f->width / 4)], | |
686 1, 0, f->display.x->font); | |
286 | 687 |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
688 #else /* ! defined (HAVE_X11) */ |
771 | 689 for (i = f->height * FONT_HEIGHT (f->display.x->font) - 10; |
286 | 690 i >= 0; |
691 i -= 50) | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
692 XPixFill (FRAME_X_WINDOW (f), 0, i, |
771 | 693 f->width * FONT_WIDTH (f->display.x->font) |
694 + 2 * f->display.x->internal_border_width, 10, | |
286 | 695 WHITE_PIX_DEFAULT, ClipModeClipped, GXinvert, AllPlanes); |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
696 #endif /* ! defined (HAVE_X11) */ |
286 | 697 |
698 XFlushQueue (); | |
699 UNBLOCK_INPUT; | |
700 } | |
701 | |
771 | 702 /* Flip background and forground colors of the frame. */ |
703 | |
704 x_invert_frame (f) | |
705 struct frame *f; | |
286 | 706 { |
707 #ifdef HAVE_X11 | |
708 GC temp; | |
709 unsigned long pix_temp; | |
710 | |
771 | 711 x_display_cursor (f, 0); |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
712 XClearWindow (x_current_display, FRAME_X_WINDOW (f)); |
771 | 713 temp = f->display.x->normal_gc; |
714 f->display.x->normal_gc = f->display.x->reverse_gc; | |
715 f->display.x->reverse_gc = temp; | |
716 pix_temp = f->display.x->foreground_pixel; | |
717 f->display.x->foreground_pixel = f->display.x->background_pixel; | |
718 f->display.x->background_pixel = pix_temp; | |
719 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
720 XSetWindowBackground (x_current_display, FRAME_X_WINDOW (f), |
771 | 721 f->display.x->background_pixel); |
722 if (f->display.x->background_pixel == f->display.x->cursor_pixel) | |
286 | 723 { |
771 | 724 f->display.x->cursor_pixel = f->display.x->foreground_pixel; |
725 XSetBackground (x_current_display, f->display.x->cursor_gc, | |
726 f->display.x->cursor_pixel); | |
727 XSetForeground (x_current_display, f->display.x->cursor_gc, | |
728 f->display.x->background_pixel); | |
286 | 729 } |
771 | 730 redraw_frame (f); |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
731 #endif /* ! defined (HAVE_X11) */ |
286 | 732 } |
733 | |
734 /* Make audible bell. */ | |
735 | |
736 #ifdef HAVE_X11 | |
737 #define XRINGBELL XBell(x_current_display, 0) | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
738 #else /* ! defined (HAVE_X11) */ |
286 | 739 #define XRINGBELL XFeep(0); |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
740 #endif /* ! defined (HAVE_X11) */ |
286 | 741 |
742 XTring_bell () | |
743 { | |
744 if (visible_bell) | |
745 #if 0 | |
771 | 746 XTflash (selected_frame); |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
747 #endif /* ! 0 */ |
286 | 748 { |
771 | 749 x_invert_frame (selected_frame); |
750 x_invert_frame (selected_frame); | |
286 | 751 } |
752 else | |
753 { | |
754 BLOCK_INPUT; | |
755 XRINGBELL; | |
756 XFlushQueue (); | |
757 UNBLOCK_INPUT; | |
758 } | |
759 } | |
760 | |
761 /* Insert and delete character are not supposed to be used | |
762 because we are supposed to turn off the feature of using them. */ | |
763 | |
764 static | |
765 XTinsert_glyphs (start, len) | |
766 register char *start; | |
767 register int len; | |
768 { | |
769 abort (); | |
770 } | |
771 | |
772 static | |
773 XTdelete_glyphs (n) | |
774 register int n; | |
775 { | |
776 abort (); | |
777 } | |
778 | |
779 /* Specify how many text lines, from the top of the window, | |
780 should be affected by insert-lines and delete-lines operations. | |
781 This, and those operations, are used only within an update | |
782 that is bounded by calls to XTupdate_begin and XTupdate_end. */ | |
783 | |
784 static | |
785 XTset_terminal_window (n) | |
786 register int n; | |
787 { | |
771 | 788 if (updating_frame == 0) |
286 | 789 abort (); |
790 | |
771 | 791 if ((n <= 0) || (n > updating_frame->height)) |
792 flexlines = updating_frame->height; | |
286 | 793 else |
794 flexlines = n; | |
795 } | |
796 | |
797 /* Perform an insert-lines operation, inserting N lines | |
798 at a vertical position curs_y. */ | |
799 | |
800 static void | |
801 stufflines (n) | |
802 register int n; | |
803 { | |
804 register int topregion, bottomregion; | |
805 register int length, newtop, mask; | |
771 | 806 register struct frame *f = updating_frame; |
807 int intborder = f->display.x->internal_border_width; | |
286 | 808 |
809 if (curs_y >= flexlines) | |
810 return; | |
811 | |
812 topregion = curs_y; | |
813 bottomregion = flexlines - (n + 1); | |
814 newtop = topregion + n; | |
815 length = (bottomregion - topregion) + 1; | |
816 | |
817 #ifndef HAVE_X11 | |
818 dumpqueue (); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
819 #endif /* HAVE_X11 */ |
286 | 820 |
821 if ((length > 0) && (newtop <= flexlines)) | |
822 { | |
823 #ifdef HAVE_X11 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
824 XCopyArea (x_current_display, FRAME_X_WINDOW (f), |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
825 FRAME_X_WINDOW (f), f->display.x->normal_gc, |
771 | 826 intborder, topregion * FONT_HEIGHT (f->display.x->font) + intborder, |
827 f->width * FONT_WIDTH (f->display.x->font), | |
828 length * FONT_HEIGHT (f->display.x->font), intborder, | |
829 newtop * FONT_HEIGHT (f->display.x->font) + intborder); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
830 #else /* ! defined (HAVE_X11) */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
831 XMoveArea (FRAME_X_WINDOW (f), |
771 | 832 intborder, topregion * FONT_HEIGHT (f->display.x->font) + intborder, |
833 intborder, newtop * FONT_HEIGHT (f->display.x->font) + intborder, | |
834 f->width * FONT_WIDTH (f->display.x->font), | |
835 length * FONT_HEIGHT (f->display.x->font)); | |
286 | 836 /* Now we must process any ExposeRegion events that occur |
837 if the area being copied from is obscured. | |
838 We can't let it wait because further i/d operations | |
839 may want to copy this area to another area. */ | |
840 x_read_exposes (); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
841 #endif /* ! defined (HAVE_X11) */ |
286 | 842 } |
843 | |
844 newtop = min (newtop, (flexlines - 1)); | |
845 length = newtop - topregion; | |
846 if (length > 0) | |
847 { | |
848 #ifdef HAVE_X11 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
849 XClearArea (x_current_display, FRAME_X_WINDOW (f), intborder, |
771 | 850 topregion * FONT_HEIGHT (f->display.x->font) + intborder, |
851 f->width * FONT_WIDTH (f->display.x->font), | |
852 n * FONT_HEIGHT (f->display.x->font), False); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
853 #else /* ! defined (HAVE_X11) */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
854 XPixSet (FRAME_X_WINDOW (f), |
286 | 855 intborder, |
771 | 856 topregion * FONT_HEIGHT (f->display.x->font) + intborder, |
857 f->width * FONT_WIDTH (f->display.x->font), | |
858 n * FONT_HEIGHT (f->display.x->font), | |
859 f->display.x->background_pixel); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
860 #endif /* ! defined (HAVE_X11) */ |
286 | 861 } |
862 } | |
863 | |
864 /* Perform a delete-lines operation, deleting N lines | |
865 at a vertical position curs_y. */ | |
866 | |
867 static void | |
868 scraplines (n) | |
869 register int n; | |
870 { | |
871 int mask; | |
771 | 872 register struct frame *f = updating_frame; |
873 int intborder = f->display.x->internal_border_width; | |
286 | 874 |
875 if (curs_y >= flexlines) | |
876 return; | |
877 | |
878 #ifndef HAVE_X11 | |
879 dumpqueue (); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
880 #endif /* HAVE_X11 */ |
286 | 881 |
882 if ((curs_y + n) >= flexlines) | |
883 { | |
884 if (flexlines >= (curs_y + 1)) | |
885 { | |
886 #ifdef HAVE_X11 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
887 XClearArea (x_current_display, FRAME_X_WINDOW (f), intborder, |
771 | 888 curs_y * FONT_HEIGHT (f->display.x->font) + intborder, |
889 f->width * FONT_WIDTH (f->display.x->font), | |
890 (flexlines - curs_y) * FONT_HEIGHT (f->display.x->font), False); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
891 #else /* ! defined (HAVE_X11) */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
892 XPixSet (FRAME_X_WINDOW (f), |
771 | 893 intborder, curs_y * FONT_HEIGHT (f->display.x->font) + intborder, |
894 f->width * FONT_WIDTH (f->display.x->font), | |
895 (flexlines - curs_y) * FONT_HEIGHT (f->display.x->font), | |
896 f->display.x->background_pixel); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
897 #endif /* ! defined (HAVE_X11) */ |
286 | 898 } |
899 } | |
900 else | |
901 { | |
902 #ifdef HAVE_X11 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
903 XCopyArea (x_current_display, FRAME_X_WINDOW (f), |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
904 FRAME_X_WINDOW (f), f->display.x->normal_gc, |
286 | 905 intborder, |
771 | 906 (curs_y + n) * FONT_HEIGHT (f->display.x->font) + intborder, |
907 f->width * FONT_WIDTH (f->display.x->font), | |
908 (flexlines - (curs_y + n)) * FONT_HEIGHT (f->display.x->font), | |
909 intborder, curs_y * FONT_HEIGHT (f->display.x->font) + intborder); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
910 XClearArea (x_current_display, FRAME_X_WINDOW (f), |
286 | 911 intborder, |
771 | 912 (flexlines - n) * FONT_HEIGHT (f->display.x->font) + intborder, |
913 f->width * FONT_WIDTH (f->display.x->font), | |
914 n * FONT_HEIGHT (f->display.x->font), False); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
915 #else /* ! defined (HAVE_X11) */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
916 XMoveArea (FRAME_X_WINDOW (f), |
286 | 917 intborder, |
771 | 918 (curs_y + n) * FONT_HEIGHT (f->display.x->font) + intborder, |
919 intborder, curs_y * FONT_HEIGHT (f->display.x->font) + intborder, | |
920 f->width * FONT_WIDTH (f->display.x->font), | |
921 (flexlines - (curs_y + n)) * FONT_HEIGHT (f->display.x->font)); | |
286 | 922 /* Now we must process any ExposeRegion events that occur |
923 if the area being copied from is obscured. | |
924 We can't let it wait because further i/d operations | |
925 may want to copy this area to another area. */ | |
926 x_read_exposes (); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
927 XPixSet (FRAME_X_WINDOW (f), intborder, |
771 | 928 (flexlines - n) * FONT_HEIGHT (f->display.x->font) + intborder, |
929 f->width * FONT_WIDTH (f->display.x->font), | |
930 n * FONT_HEIGHT (f->display.x->font), f->display.x->background_pixel); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
931 #endif /* ! defined (HAVE_X11) */ |
286 | 932 } |
933 } | |
934 | |
935 /* Perform an insert-lines or delete-lines operation, | |
936 inserting N lines or deleting -N lines at vertical position VPOS. */ | |
937 | |
938 XTins_del_lines (vpos, n) | |
939 int vpos, n; | |
940 { | |
771 | 941 if (updating_frame == 0) |
286 | 942 abort (); |
943 | |
429 | 944 /* Hide the cursor. */ |
771 | 945 x_display_cursor (updating_frame, 0); |
286 | 946 |
947 XTcursor_to (vpos, 0); | |
948 | |
949 BLOCK_INPUT; | |
950 if (n >= 0) | |
951 stufflines (n); | |
952 else | |
953 scraplines (-n); | |
954 XFlushQueue (); | |
955 UNBLOCK_INPUT; | |
956 } | |
957 | |
958 static void clear_cursor (); | |
959 | |
771 | 960 /* Output into a rectangle of an X-window (for frame F) |
961 the characters in f->phys_lines that overlap that rectangle. | |
286 | 962 TOP and LEFT are the position of the upper left corner of the rectangle. |
963 ROWS and COLS are the size of the rectangle. */ | |
964 | |
965 static void | |
771 | 966 dumprectangle (f, left, top, cols, rows) |
967 struct frame *f; | |
286 | 968 register int left, top, cols, rows; |
969 { | |
771 | 970 register struct frame_glyphs *active_frame = FRAME_CURRENT_GLYPHS (f); |
286 | 971 int cursor_cleared = 0; |
972 int bottom, right; | |
973 register int y; | |
974 | |
771 | 975 if (FRAME_GARBAGED_P (f)) |
286 | 976 return; |
977 | |
771 | 978 top -= f->display.x->internal_border_width; |
979 left -= f->display.x->internal_border_width; | |
286 | 980 |
981 /* Express rectangle as four edges, instead of position-and-size. */ | |
982 bottom = top + rows; | |
983 right = left + cols; | |
984 | |
985 #ifndef HAVE_X11 /* Window manger does this for X11. */ | |
986 /* If the rectangle includes any of the internal border area, | |
987 redisplay the border emphasis. */ | |
988 if (top < 0 || left < 0 | |
771 | 989 || bottom > f->height * FONT_HEIGHT (f->display.x->font) |
990 || right > f->width * FONT_WIDTH (f->display.x->font)) | |
991 dumpborder (f, 0); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
992 #endif /* HAVE_X11 /* Window manger does this for X11. */ */ |
286 | 993 |
994 /* Convert rectangle edges in pixels to edges in chars. | |
995 Round down for left and top, up for right and bottom. */ | |
771 | 996 top /= FONT_HEIGHT (f->display.x->font); |
997 left /= FONT_WIDTH (f->display.x->font); | |
998 bottom += (FONT_HEIGHT (f->display.x->font) - 1); | |
999 right += (FONT_WIDTH (f->display.x->font) - 1); | |
1000 bottom /= FONT_HEIGHT (f->display.x->font); | |
1001 right /= FONT_WIDTH (f->display.x->font); | |
286 | 1002 |
1003 /* Clip the rectangle to what can be visible. */ | |
1004 if (left < 0) | |
1005 left = 0; | |
1006 if (top < 0) | |
1007 top = 0; | |
771 | 1008 if (right > f->width) |
1009 right = f->width; | |
1010 if (bottom > f->height) | |
1011 bottom = f->height; | |
286 | 1012 |
1013 /* Get size in chars of the rectangle. */ | |
1014 cols = right - left; | |
1015 rows = bottom - top; | |
1016 | |
1017 /* If rectangle has zero area, return. */ | |
1018 if (rows <= 0) return; | |
1019 if (cols <= 0) return; | |
1020 | |
1021 /* Turn off the cursor if it is in the rectangle. | |
1022 We will turn it back on afterward. */ | |
771 | 1023 if ((f->phys_cursor_x >= left) && (f->phys_cursor_x < right) |
1024 && (f->phys_cursor_y >= top) && (f->phys_cursor_y < bottom)) | |
286 | 1025 { |
771 | 1026 clear_cursor (f); |
286 | 1027 cursor_cleared = 1; |
1028 } | |
1029 | |
1030 /* Display the text in the rectangle, one text line at a time. */ | |
1031 | |
1032 for (y = top; y < bottom; y++) | |
1033 { | |
771 | 1034 GLYPH *line = &active_frame->glyphs[y][left]; |
1035 | |
1036 if (! active_frame->enable[y] || left > active_frame->used[y]) | |
286 | 1037 continue; |
1038 | |
771 | 1039 dumpglyphs (f, |
1040 (left * FONT_WIDTH (f->display.x->font) | |
1041 + f->display.x->internal_border_width), | |
1042 (y * FONT_HEIGHT (f->display.x->font) | |
1043 + f->display.x->internal_border_width), | |
1044 line, min (cols, active_frame->used[y] - left), | |
1045 active_frame->highlight[y], f->display.x->font); | |
286 | 1046 } |
1047 | |
1048 /* Turn the cursor on if we turned it off. */ | |
1049 | |
1050 if (cursor_cleared) | |
771 | 1051 x_display_cursor (f, 1); |
286 | 1052 } |
1053 | |
1054 #ifndef HAVE_X11 | |
1055 /* Process all queued ExposeRegion events. */ | |
1056 | |
1057 static void | |
1058 dumpqueue () | |
1059 { | |
1060 register int i; | |
1061 XExposeRegionEvent r; | |
1062 | |
1063 while (dequeue_event (&r, &x_expose_queue)) | |
1064 { | |
771 | 1065 struct frame *f = x_window_to_frame (r.window); |
1066 if (f->display.x->icon_desc == r.window) | |
1067 refreshicon (f); | |
286 | 1068 else |
771 | 1069 dumprectangle (f, r.x, r.y, r.width, r.height); |
286 | 1070 } |
1071 XFlushQueue (); | |
1072 } | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1073 #endif /* HAVE_X11 */ |
286 | 1074 |
1075 /* Process all expose events that are pending. | |
771 | 1076 Redraws the cursor if necessary on any frame that |
1077 is not in the process of being updated with update_frame. */ | |
286 | 1078 |
1079 static void | |
1080 x_do_pending_expose () | |
1081 { | |
1082 int mask; | |
771 | 1083 struct frame *f; |
1084 Lisp_Object tail, frame; | |
286 | 1085 |
1086 if (expose_all_windows) | |
1087 { | |
1088 expose_all_windows = 0; | |
771 | 1089 for (tail = Vframe_list; CONSP (tail); tail = XCONS (tail)->cdr) |
286 | 1090 { |
1091 register int temp_width, temp_height; | |
1092 int intborder; | |
1093 | |
771 | 1094 frame = XCONS (tail)->car; |
1095 if (XTYPE (frame) != Lisp_Frame) | |
286 | 1096 continue; |
771 | 1097 f = XFRAME (frame); |
976
cbdfc337ec8f
* xterm.c (x_wm_hints): New variable.
Jim Blandy <jimb@redhat.com>
parents:
786
diff
changeset
|
1098 if (! FRAME_X_P (f)) |
286 | 1099 continue; |
771 | 1100 if (!f->visible) |
286 | 1101 continue; |
771 | 1102 if (!f->display.x->needs_exposure) |
286 | 1103 continue; |
1104 | |
771 | 1105 intborder = f->display.x->internal_border_width; |
1106 | |
1107 clear_cursor (f); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1108 XGetWindowInfo (FRAME_X_WINDOW (f), &windowinfo); |
286 | 1109 temp_width = ((windowinfo.width - 2 * intborder |
771 | 1110 - f->display.x->v_scrollbar_width) |
1111 / FONT_WIDTH (f->display.x->font)); | |
286 | 1112 temp_height = ((windowinfo.height- 2 * intborder |
771 | 1113 - f->display.x->h_scrollbar_height) |
1114 / FONT_HEIGHT (f->display.x->font)); | |
1115 if (temp_width != f->width || temp_height != f->height) | |
286 | 1116 { |
771 | 1117 change_frame_size (f, max (1, temp_height), |
976
cbdfc337ec8f
* xterm.c (x_wm_hints): New variable.
Jim Blandy <jimb@redhat.com>
parents:
786
diff
changeset
|
1118 max (1, temp_width), 0, 1); |
771 | 1119 x_resize_scrollbars (f); |
286 | 1120 } |
771 | 1121 f->display.x->left_pos = windowinfo.x; |
1122 f->display.x->top_pos = windowinfo.y; | |
1123 dumprectangle (f, 0, 0, PIXEL_WIDTH (f), PIXEL_HEIGHT (f)); | |
286 | 1124 #if 0 |
771 | 1125 dumpborder (f, 0); |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1126 #endif /* ! 0 */ |
771 | 1127 f->display.x->needs_exposure = 0; |
1128 if (updating_frame != f) | |
1129 x_display_cursor (f, 1); | |
286 | 1130 XFlushQueue (); |
1131 } | |
1132 } | |
1133 else | |
1134 /* Handle any individual-rectangle expose events queued | |
1135 for various windows. */ | |
1136 #ifdef HAVE_X11 | |
1137 ; | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1138 #else /* ! defined (HAVE_X11) */ |
286 | 1139 dumpqueue (); |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1140 #endif /* ! defined (HAVE_X11) */ |
286 | 1141 } |
1142 | |
1143 #ifdef HAVE_X11 | |
1144 static void | |
771 | 1145 frame_highlight (frame) |
1146 struct frame *frame; | |
286 | 1147 { |
1148 if (! EQ (Vx_no_window_manager, Qnil)) | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1149 XSetWindowBorder (x_current_display, FRAME_X_WINDOW (frame), |
771 | 1150 frame->display.x->border_pixel); |
1151 x_display_cursor (frame, 1); | |
286 | 1152 } |
1153 | |
1154 static void | |
771 | 1155 frame_unhighlight (frame) |
1156 struct frame *frame; | |
286 | 1157 { |
1158 if (! EQ (Vx_no_window_manager, Qnil)) | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1159 XSetWindowBorderPixmap (x_current_display, FRAME_X_WINDOW (frame), |
771 | 1160 frame->display.x->border_tile); |
1161 x_display_cursor (frame, 1); | |
286 | 1162 } |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1163 #else /* ! defined (HAVE_X11) */ |
771 | 1164 /* Dump the border-emphasis of frame F. |
1165 If F is selected, this is a lining of the same color as the border, | |
286 | 1166 just within the border, occupying a portion of the internal border. |
771 | 1167 If F is not selected, it is background in the same place. |
286 | 1168 If ALWAYS is 0, don't bother explicitly drawing if it's background. |
1169 | |
771 | 1170 ALWAYS = 1 is used when a frame becomes selected or deselected. |
286 | 1171 In that case, we also turn the cursor off and on again |
1172 so it will appear in the proper shape (solid if selected; else hollow.) */ | |
1173 | |
1174 static void | |
771 | 1175 dumpborder (f, always) |
1176 struct frame *f; | |
286 | 1177 int always; |
1178 { | |
771 | 1179 int thickness = f->display.x->internal_border_width / 2; |
1180 int width = PIXEL_WIDTH (f); | |
1181 int height = PIXEL_HEIGHT (f); | |
286 | 1182 int pixel; |
1183 | |
771 | 1184 if (f != selected_frame) |
286 | 1185 { |
1186 if (!always) | |
1187 return; | |
1188 | |
771 | 1189 pixel = f->display.x->background_pixel; |
286 | 1190 } |
1191 else | |
1192 { | |
771 | 1193 pixel = f->display.x->border_pixel; |
286 | 1194 } |
1195 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1196 XPixSet (FRAME_X_WINDOW (f), 0, 0, width, thickness, pixel); |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1197 XPixSet (FRAME_X_WINDOW (f), 0, 0, thickness, height, pixel); |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1198 XPixSet (FRAME_X_WINDOW (f), 0, height - thickness, width, |
286 | 1199 thickness, pixel); |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1200 XPixSet (FRAME_X_WINDOW (f), width - thickness, 0, thickness, |
286 | 1201 height, pixel); |
1202 | |
1203 if (always) | |
771 | 1204 x_display_cursor (f, 1); |
286 | 1205 } |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1206 #endif /* ! defined (HAVE_X11) */ |
286 | 1207 |
771 | 1208 static void XTframe_rehighlight (); |
1209 | |
1210 /* The focus has changed. Update the frames as necessary to reflect | |
1211 the new situation. Note that we can't change the selected frame | |
286 | 1212 here, because the lisp code we are interrupting might become confused. |
771 | 1213 Each event gets marked with the frame in which it occured, so the |
369 | 1214 lisp code can tell when the switch took place by examining the events. */ |
1215 | |
1216 static void | |
771 | 1217 x_new_focus_frame (frame) |
1218 struct frame *frame; | |
286 | 1219 { |
771 | 1220 struct frame *old_focus = x_focus_frame; |
286 | 1221 int events_enqueued = 0; |
1222 | |
771 | 1223 if (frame != x_focus_frame) |
286 | 1224 { |
369 | 1225 /* Set this before calling other routines, so that they see |
771 | 1226 the correct value of x_focus_frame. */ |
1227 x_focus_frame = frame; | |
369 | 1228 |
1229 if (old_focus && old_focus->auto_lower) | |
771 | 1230 x_lower_frame (old_focus); |
286 | 1231 |
1232 #if 0 | |
771 | 1233 selected_frame = frame; |
1234 XSET (XWINDOW (selected_frame->selected_window)->frame, | |
1235 Lisp_Frame, selected_frame); | |
1236 Fselect_window (selected_frame->selected_window); | |
1237 choose_minibuf_frame (); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1238 #endif /* ! 0 */ |
286 | 1239 |
771 | 1240 if (x_focus_frame && x_focus_frame->auto_raise) |
1241 x_raise_frame (x_focus_frame); | |
369 | 1242 } |
1243 | |
771 | 1244 XTframe_rehighlight (); |
369 | 1245 } |
1246 | |
1247 | |
771 | 1248 /* The focus has changed, or we have make a frame's selected window |
1249 point to a window on a different frame (this happens with global | |
1250 minibuffer frames). Shift the highlight as appropriate. */ | |
369 | 1251 static void |
771 | 1252 XTframe_rehighlight () |
369 | 1253 { |
771 | 1254 struct frame *old_highlight = x_highlight_frame; |
1255 | |
1256 if (x_focus_frame) | |
286 | 1257 { |
771 | 1258 x_highlight_frame = XFRAME (FRAME_FOCUS_FRAME (x_focus_frame)); |
1259 if (x_highlight_frame->display.nothing == 0) | |
1260 XSET (FRAME_FOCUS_FRAME (x_focus_frame), Lisp_Frame, | |
1261 (x_highlight_frame = x_focus_frame)); | |
286 | 1262 } |
369 | 1263 else |
771 | 1264 x_highlight_frame = 0; |
1265 | |
1266 if (x_highlight_frame != old_highlight) | |
369 | 1267 { |
1268 if (old_highlight) | |
771 | 1269 frame_unhighlight (old_highlight); |
1270 if (x_highlight_frame) | |
1271 frame_highlight (x_highlight_frame); | |
369 | 1272 } |
286 | 1273 } |
1274 | |
1275 enum window_type | |
1276 { | |
1277 no_window, | |
1278 scrollbar_window, | |
1279 text_window, | |
1280 }; | |
1281 | |
1282 /* Position of the mouse in characters */ | |
1283 unsigned int x_mouse_x, x_mouse_y; | |
1284 | |
1285 /* Offset in buffer of character under the pointer, or 0. */ | |
1286 extern int mouse_buffer_offset; | |
1287 | |
1288 extern int buffer_posn_from_coords (); | |
1289 | |
1290 /* Symbols from xfns.c to denote the different parts of a window. */ | |
1291 extern Lisp_Object Qmodeline_part, Qtext_part; | |
1292 | |
1293 #if 0 | |
1294 /* Set *RESULT to an emacs input_event corresponding to MOTION_EVENT. | |
771 | 1295 F is the frame in which the event occurred. |
286 | 1296 |
1297 WINDOW_TYPE says whether the event happened in a scrollbar window | |
1298 or a text window, affecting the format of the event created. | |
1299 | |
1300 PART specifies which part of the scrollbar the event happened in, | |
1301 if WINDOW_TYPE == scrollbar_window. | |
1302 | |
1303 If the mouse is over the same character as the last time we checked, | |
1304 don't return an event; set result->kind to no_event. */ | |
1305 | |
1306 static void | |
771 | 1307 notice_mouse_movement (result, motion_event, f, window_type, part) |
286 | 1308 struct input_event *result; |
1309 XMotionEvent motion_event; | |
771 | 1310 struct frame *f; |
286 | 1311 int window_type; |
1312 Lisp_Object part; | |
1313 { | |
1314 int x, y, root_x, root_y, pix_x, pix_y; | |
1315 unsigned int keys_and_buttons; | |
1316 Window w, root_window; | |
1317 | |
1318 /* Unless we decide otherwise below, return a non-event. */ | |
1319 result->kind = no_event; | |
1320 | |
1321 if (XQueryPointer (x_current_display, | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1322 FRAME_X_WINDOW (f), |
286 | 1323 &root_window, &w, |
1324 &root_x, &root_y, &pix_x, &pix_y, | |
1325 &keys_and_buttons) | |
1326 == False) | |
1327 return; | |
1328 | |
1329 #if 0 | |
1330 if (w == None) /* Mouse no longer in window. */ | |
1331 return Qnil; | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1332 #endif /* ! 0 */ |
286 | 1333 |
771 | 1334 pixel_to_glyph_translation (f, pix_x, pix_y, &x, &y); |
286 | 1335 if (x == x_mouse_x && y == x_mouse_y) |
1336 return; | |
1337 | |
1338 x_mouse_x = x; | |
1339 x_mouse_y = y; | |
1340 | |
1341 /* What sort of window are we in now? */ | |
1342 if (window_type == text_window) /* Text part */ | |
1343 { | |
1344 int modeline_p; | |
1345 | |
771 | 1346 Vmouse_window = window_from_coordinates (f, x, y, &modeline_p); |
286 | 1347 |
1348 if (XTYPE (Vmouse_window) == Lisp_Window) | |
1349 mouse_buffer_offset | |
1350 = buffer_posn_from_coords (XWINDOW (Vmouse_window), x, y); | |
1351 else | |
1352 mouse_buffer_offset = 0; | |
1353 | |
1354 if (EQ (Vmouse_window, Qnil)) | |
771 | 1355 Vmouse_frame_part = Qnil; |
286 | 1356 else if (modeline_p) |
771 | 1357 Vmouse_frame_part = Qmodeline_part; |
286 | 1358 else |
771 | 1359 Vmouse_frame_part = Qtext_part; |
286 | 1360 |
1361 result->kind = window_sys_event; | |
1362 result->code = Qmouse_moved; | |
1363 | |
1364 return; | |
1365 } | |
1366 else if (window_type == scrollbar_window) /* Scrollbar */ | |
1367 { | |
771 | 1368 Vmouse_window = f->selected_window; |
286 | 1369 mouse_buffer_offset = 0; |
771 | 1370 Vmouse_frame_part = part; |
286 | 1371 |
1372 result->kind = window_sys_event; | |
1373 result->code = Qmouse_moved; | |
1374 | |
1375 return; | |
1376 } | |
1377 | |
1378 return; | |
1379 } | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1380 #endif /* ! 0 */ |
286 | 1381 |
429 | 1382 |
1383 /* Mouse clicks and mouse movement. Rah. */ | |
1384 #ifdef HAVE_X11 | |
1385 | |
771 | 1386 /* Given a pixel position (PIX_X, PIX_Y) on the frame F, return |
429 | 1387 glyph co-ordinates in (*X, *Y). Set *BOUNDS to the rectangle |
1388 that the glyph at X, Y occupies, if BOUNDS != 0. */ | |
1389 static void | |
771 | 1390 pixel_to_glyph_coords (f, pix_x, pix_y, x, y, bounds) |
1391 FRAME_PTR f; | |
286 | 1392 register unsigned int pix_x, pix_y; |
1393 register int *x, *y; | |
429 | 1394 XRectangle *bounds; |
286 | 1395 { |
771 | 1396 int ibw = f->display.x->internal_border_width; |
429 | 1397 int width, height; |
771 | 1398 FONT_TYPE *font = f->display.x->font; |
429 | 1399 |
1400 width = FONT_WIDTH (font); | |
1401 height = FONT_HEIGHT (font); | |
286 | 1402 |
1403 /* What line is it on? */ | |
429 | 1404 if (pix_y < ibw) |
1405 *y = 0; | |
771 | 1406 else if (pix_y > f->display.x->pixel_height - ibw) |
1407 *y = FRAME_HEIGHT (f) - 1; | |
429 | 1408 else |
1409 *y = (pix_y - ibw) / height; | |
1410 | |
1411 /* And what column? */ | |
286 | 1412 if (pix_x < ibw) |
1413 *x = 0; | |
771 | 1414 else if (pix_x > f->display.x->pixel_width - ibw) |
1415 *x = FRAME_WIDTH (f) - 1; | |
286 | 1416 else |
429 | 1417 *x = (pix_x - ibw) / width; |
1418 | |
1419 if (bounds) | |
1420 { | |
1421 bounds->width = width; | |
1422 bounds->height = height; | |
1423 bounds->x = ibw + (*x * width); | |
1424 bounds->y = ibw + (*y * height); | |
1425 } | |
286 | 1426 } |
1427 | |
1428 /* Any buttons grabbed. */ | |
1429 unsigned int x_mouse_grabbed; | |
1430 | |
1279
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1431 /* Which modifier keys are on which modifier bits? |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1432 |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1433 With each keystroke, X returns eight bits indicating which modifier |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1434 keys were held down when the key was pressed. The low three bits |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1435 indicate the state of the shift, shift lock, caps lock, and control |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1436 keys; their interpretation is fixed. However, the interpretation |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1437 of the other five modifier bits depends on what keys are attached |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1438 to them. If the Meta_L and Meta_R keysyms are on mod5, then mod5 |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1439 is the meta bit. |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1440 |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1441 x_meta_mod_mask is a mask containing the bits used for the meta key. |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1442 It may have more than one bit set, if more than one modifier bit |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1443 has meta keys on it. Basically, if EVENT is a KeyPress event, |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1444 the meta key is pressed if (EVENT.state & x_meta_mod_mask) != 0. */ |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1445 static int x_meta_mod_mask; |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1446 |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1447 /* Initialize mode_switch_bit and modifier_meaning. */ |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1448 static void |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1449 x_find_modifier_meanings () |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1450 { |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1451 KeyCode min_code, max_code; |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1452 KeySym *syms; |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1453 int syms_per_code; |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1454 XModifierKeymap *mods; |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1455 |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1456 x_meta_mod_mask = 0; |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1457 |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1458 XDisplayKeycodes (x_current_display, &min_code, &max_code); |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1459 syms = XGetKeyboardMapping (x_current_display, |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1460 min_code, max_code - min_code + 1, |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1461 &syms_per_code); |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1462 mods = XGetModifierMapping (x_current_display); |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1463 |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1464 /* If CapsLock is on the lock modifier, then only letters should be |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1465 affected; since XLookupString takes care of this for us, the lock |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1466 modifier shouldn't set shift_modifier. However, if ShiftLock is |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1467 on the lock modifier, then lock should mean shift. */ |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1468 { |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1469 int row, col; /* The row and column in the modifier table. */ |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1470 |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1471 for (row = 3; row < 8; row++) |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1472 for (col = 0; col < mods->max_keypermod; col++) |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1473 { |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1474 KeyCode code = |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1475 mods->modifiermap[(row * mods->max_keypermod) + col]; |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1476 |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1477 /* Are any of this keycode's keysyms a meta key? */ |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1478 { |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1479 int code_col; |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1480 |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1481 for (code_col = 0; code_col < syms_per_code; code_col++) |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1482 { |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1483 int sym = syms[(code * syms_per_code) + code_col]; |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1484 |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1485 if (sym == XK_Meta_L || sym == XK_Meta_R) |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1486 { |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1487 x_meta_mod_mask |= (1 << row); |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1488 break; |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1489 } |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1490 } |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1491 } |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1492 } |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1493 } |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1494 |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1495 XFree ((char *) syms); |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1496 XFreeModifierMap (mods); |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1497 } |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1498 |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1499 |
286 | 1500 /* Convert a set of X modifier bits to the proper form for a |
1501 struct input_event modifiers value. */ | |
1502 | |
1503 static Lisp_Object | |
1504 x_convert_modifiers (state) | |
1505 unsigned int state; | |
1506 { | |
1507 return ( ((state & (ShiftMask | LockMask)) ? shift_modifier : 0) | |
1508 | ((state & ControlMask) ? ctrl_modifier : 0) | |
1279
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1509 | ((state & x_meta_mod_mask) ? meta_modifier : 0)); |
286 | 1510 } |
1511 | |
771 | 1512 extern struct frame *x_window_to_scrollbar (); |
286 | 1513 extern Lisp_Object Vmouse_event; |
1514 | |
1515 /* Prepare a mouse-event in *RESULT for placement in the input queue. | |
1516 | |
1517 If the event is a button press, then note that we have grabbed | |
1518 the mouse. | |
1519 | |
1520 If PART and PREFIX are 0, then the event occurred in the text part; | |
1521 otherwise it happened in a scrollbar. */ | |
1522 | |
1523 static Lisp_Object | |
771 | 1524 construct_mouse_click (result, event, f, part, prefix) |
286 | 1525 struct input_event *result; |
1526 XButtonEvent *event; | |
771 | 1527 struct frame *f; |
286 | 1528 int prefix; |
1529 Lisp_Object part; | |
1530 { | |
1531 /* Initialize those fields text and scrollbar clicks hold in common. | |
1532 Make the event type no_event; we'll change that when we decide | |
1533 otherwise. */ | |
1534 result->kind = no_event; | |
1535 XSET (result->code, Lisp_Int, event->button); | |
708 | 1536 result->timestamp = event->time; |
286 | 1537 result->modifiers = (x_convert_modifiers (event->state) |
1538 | (event->type == ButtonRelease ? up_modifier : 0)); | |
1539 | |
1540 /* Notice if the mouse is still grabbed. */ | |
1541 if (event->type == ButtonPress) | |
1542 { | |
1543 if (! x_mouse_grabbed) | |
1544 Vmouse_depressed = Qt; | |
429 | 1545 x_mouse_grabbed |= (1 << event->button); |
286 | 1546 } |
1547 else if (event->type == ButtonRelease) | |
1548 { | |
429 | 1549 x_mouse_grabbed &= ~(1 << event->button); |
286 | 1550 if (!x_mouse_grabbed) |
1551 Vmouse_depressed = Qnil; | |
1552 } | |
1553 | |
1554 if (part) /* Scrollbar event */ | |
1555 { | |
1556 int pos, len; | |
1557 | |
771 | 1558 pos = event->y - (f->display.x->v_scrollbar_width - 2); |
286 | 1559 XSET (x_mouse_x, Lisp_Int, pos); |
771 | 1560 len = ((FONT_HEIGHT (f->display.x->font) * f->height) |
1561 + f->display.x->internal_border_width | |
1562 - (2 * (f->display.x->v_scrollbar_width - 2))); | |
286 | 1563 XSET (x_mouse_y, Lisp_Int, len); |
1564 | |
1565 result->kind = scrollbar_click; | |
1566 result->part = part; | |
771 | 1567 XSET (result->x, Lisp_Int, (f->display.x->top_pos - event->y)); |
1568 XSET (result->y, Lisp_Int, f->display.x->pixel_height); | |
1569 result->frame = f; | |
286 | 1570 } |
1571 else /* Text Window Event */ | |
1572 { | |
1573 int row, column; | |
1574 | |
771 | 1575 pixel_to_glyph_coords (f, event->x, event->y, &column, &row, NULL); |
286 | 1576 result->kind = mouse_click; |
1577 result->x = column; | |
1578 result->y = row; | |
771 | 1579 result->frame = f; |
286 | 1580 } |
1581 } | |
1582 | |
1583 | |
429 | 1584 /* Mouse movement. Rah. |
1585 | |
1586 In order to avoid asking for motion events and then throwing most | |
1587 of them away or busy-polling the server for mouse positions, we ask | |
1588 the server for pointer motion hints. This means that we get only | |
1589 one event per group of mouse movements. "Groups" are delimited by | |
1590 other kinds of events (focus changes and button clicks, for | |
1591 example), or by XQueryPointer calls; when one of these happens, we | |
1592 get another MotionNotify event the next time the mouse moves. This | |
732 | 1593 is at least as efficient as getting motion events when mouse |
429 | 1594 tracking is on, and I suspect only negligibly worse when tracking |
1595 is off. | |
1596 | |
1597 The silly O'Reilly & Associates Nutshell guides barely document | |
1598 pointer motion hints at all (I think you have to infer how they | |
1599 work from an example), and the description of XQueryPointer doesn't | |
1600 mention that calling it causes you to get another motion hint from | |
1601 the server, which is very important. */ | |
1602 | |
1603 /* Where the mouse was last time we reported a mouse event. */ | |
771 | 1604 static FRAME_PTR last_mouse_frame; |
429 | 1605 static XRectangle last_mouse_glyph; |
1606 | |
732 | 1607 /* This is a hack. We would really prefer that XTmouse_position would |
1608 return the time associated with the position it returns, but there | |
1609 doesn't seem to be any way to wrest the timestamp from the server | |
1610 along with the position query. So, we just keep track of the time | |
1611 of the last movement we received, and return that in hopes that | |
1612 it's somewhat accurate. */ | |
1613 static Time last_mouse_movement_time; | |
1614 | |
429 | 1615 /* Function to report a mouse movement to the mainstream Emacs code. |
1616 The input handler calls this. | |
1617 | |
1618 We have received a mouse movement event, which is given in *event. | |
1619 If the mouse is over a different glyph than it was last time, tell | |
1620 the mainstream emacs code by setting mouse_moved. If not, ask for | |
1621 another motion event, so we can check again the next time it moves. */ | |
1622 static void | |
771 | 1623 note_mouse_position (frame, event) |
1624 FRAME_PTR frame; | |
429 | 1625 XMotionEvent *event; |
1626 | |
1627 { | |
732 | 1628 last_mouse_movement_time = event->time; |
1629 | |
429 | 1630 /* Has the mouse moved off the glyph it was on at the last sighting? */ |
1631 if (event->x < last_mouse_glyph.x | |
1632 || event->x >= last_mouse_glyph.x + last_mouse_glyph.width | |
1633 || event->y < last_mouse_glyph.y | |
1634 || event->y >= last_mouse_glyph.y + last_mouse_glyph.height) | |
1635 mouse_moved = 1; | |
1636 else | |
1637 { | |
1638 /* It's on the same glyph. Call XQueryPointer so we'll get an | |
1639 event the next time the mouse moves and we can see if it's | |
1640 *still* on the same glyph. */ | |
1641 int dummy; | |
1642 | |
1643 XQueryPointer (event->display, event->window, | |
1644 (Window *) &dummy, (Window *) &dummy, | |
1645 &dummy, &dummy, &dummy, &dummy, | |
1646 (unsigned int *) &dummy); | |
1647 } | |
1648 } | |
1649 | |
1650 /* Return the current position of the mouse. | |
1651 | |
1652 This clears the mouse_moved flag, so we can wait for the next mouse | |
1653 position. This also calls XQueryPointer, which will cause the | |
1654 server to give us another MotionNotify when the mouse moves again. | |
1655 */ | |
1656 | |
1657 static void | |
771 | 1658 XTmouse_position (f, x, y, time) |
1659 FRAME_PTR *f; | |
429 | 1660 Lisp_Object *x, *y; |
732 | 1661 unsigned long *time; |
429 | 1662 { |
1663 int ix, iy, dummy; | |
1664 Display *d = x_current_display; | |
1665 Window guess, root, child; | |
1666 | |
1667 BLOCK_INPUT; | |
1668 | |
1669 /* I would like to have an X function that just told me the | |
1670 innermost window containing the mouse. | |
1671 | |
1672 /* There doesn't seem to be any way to just get the innermost window | |
771 | 1673 containing the pointer, no matter what X frame it's on; you have |
429 | 1674 to guess a window, and then X will tell you which one of that |
1675 window's children it's in. If the pointer isn't in any of that | |
1676 window's children, it gives you a root window that contains it. | |
1677 | |
771 | 1678 So we start with the selected frame's window and chase down |
429 | 1679 branches under the guidance of XQueryPointer until we hit a leaf |
1680 (all of the Emacs windows we care about are leaf windows). If at | |
1681 any time XQueryPointer returns false, that means that the current | |
1682 window does not contain the pointer any more (perhaps it moved), | |
1683 so we start with the root window XQueryPointer has given us and | |
1684 start again. */ | |
1685 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1686 guess = FRAME_X_WINDOW (selected_frame); |
429 | 1687 for (;;) |
1688 if (XQueryPointer (d, guess, &root, &child, | |
1689 &dummy, &dummy, &ix, &iy, (unsigned int *) &dummy)) | |
1690 { | |
1691 if (child == None) | |
1692 /* Guess is a leaf window, and it contains the pointer. */ | |
1693 break; | |
1694 else | |
1695 guess = child; | |
1696 } | |
1697 else | |
1698 /* When XQueryPointer returns False, the pointer isn't in guess | |
771 | 1699 anymore, but root is the root window of the frame we should |
429 | 1700 try instead. */ |
1701 guess = root; | |
1702 | |
771 | 1703 *f = last_mouse_frame = x_window_to_frame (guess); |
1704 if (! *f) | |
429 | 1705 *x = *y = Qnil; |
1706 else | |
1707 { | |
771 | 1708 pixel_to_glyph_coords (*f, ix, iy, &ix, &iy, &last_mouse_glyph); |
429 | 1709 XSET (*x, Lisp_Int, ix); |
1710 XSET (*y, Lisp_Int, iy); | |
1711 } | |
1712 | |
1713 mouse_moved = 0; | |
1714 | |
1715 /* I don't know how to find the time for the last movement; it seems | |
732 | 1716 like XQueryPointer ought to return it, but it doesn't. So, we'll |
1717 return the time of the last MotionNotify event we received. Note | |
1718 that the use of motion hints means that this isn't guaranteed to | |
1719 be accurate at all. */ | |
1720 *time = last_mouse_movement_time; | |
429 | 1721 |
1722 UNBLOCK_INPUT; | |
1723 } | |
1724 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1725 #else /* ! defined (HAVE_X11) */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1726 #define XEvent XKeyPressedEvent |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1727 #endif /* ! defined (HAVE_X11) */ |
429 | 1728 |
286 | 1729 |
1730 /* Timestamp of enter window event. This is only used by XTread_socket, | |
1731 but we have to put it out here, since static variables within functions | |
1732 sometimes don't work. */ | |
1733 static Time enter_timestamp; | |
1734 | |
642 | 1735 /* Communication with window managers. */ |
1736 Atom Xatom_wm_protocols; | |
1737 | |
1738 /* Kinds of protocol things we may receive. */ | |
1739 Atom Xatom_wm_take_focus; | |
1740 Atom Xatom_wm_save_yourself; | |
1741 Atom Xatom_wm_delete_window; | |
1742 | |
1743 /* Other WM communication */ | |
1744 Atom Xatom_wm_configure_denied; /* When our config request is denied */ | |
1745 Atom Xatom_wm_window_moved; /* When the WM moves us. */ | |
1746 | |
286 | 1747 /* Read events coming from the X server. |
1748 This routine is called by the SIGIO handler. | |
1749 We return as soon as there are no more events to be read. | |
1750 | |
1751 Events representing keys are stored in buffer BUFP, | |
1752 which can hold up to NUMCHARS characters. | |
1753 We return the number of characters stored into the buffer, | |
1754 thus pretending to be `read'. | |
1755 | |
1756 WAITP is nonzero if we should block until input arrives. | |
1757 EXPECTED is nonzero if the caller knows input is available. */ | |
1758 | |
1759 Lisp_Object | |
1760 XTread_socket (sd, bufp, numchars, waitp, expected) | |
1761 register int sd; | |
1762 register struct input_event *bufp; | |
1763 register int numchars; | |
1764 int waitp; | |
1765 int expected; | |
1766 { | |
1767 int count = 0; | |
1768 int nbytes = 0; | |
1769 int mask; | |
1770 int items_pending; /* How many items are in the X queue. */ | |
1771 XEvent event; | |
771 | 1772 struct frame *f; |
286 | 1773 int event_found; |
1774 int prefix; | |
1775 Lisp_Object part; | |
1776 | |
1777 if (x_input_blocked) | |
1778 { | |
1779 x_pending_input = 1; | |
1780 return -1; | |
1781 } | |
1782 | |
1783 x_pending_input = 0; | |
1784 BLOCK_INPUT; | |
1785 | |
1786 if (numchars <= 0) | |
1787 abort (); /* Don't think this happens. */ | |
1788 | |
1789 #ifdef FIOSNBIO | |
1790 /* If available, Xlib uses FIOSNBIO to make the socket | |
1791 non-blocking, and then looks for EWOULDBLOCK. If O_NDELAY is set, | |
1792 FIOSNBIO is ignored, and instead of signalling EWOULDBLOCK, | |
1793 a read returns 0, which Xlib interprets as equivalent to EPIPE. */ | |
1794 fcntl (fileno (stdin), F_SETFL, 0); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1795 #endif /* ! defined (FIOSNBIO) */ |
286 | 1796 |
1797 #ifndef SIGIO | |
1798 #ifndef HAVE_SELECT | |
1799 if (! (fcntl (fileno (stdin), F_GETFL, 0) & O_NDELAY)) | |
1800 { | |
1801 extern int read_alarm_should_throw; | |
1802 read_alarm_should_throw = 1; | |
1803 XPeekEvent (XDISPLAY &event); | |
1804 read_alarm_should_throw = 0; | |
1805 } | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1806 #endif /* HAVE_SELECT */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1807 #endif /* SIGIO */ |
286 | 1808 |
1809 while (XStuffPending () != 0) | |
1810 { | |
1811 XNextEvent (XDISPLAY &event); | |
1812 event_found = 1; | |
1813 | |
1814 switch (event.type) | |
1815 { | |
1816 #ifdef HAVE_X11 | |
642 | 1817 case ClientMessage: |
1818 { | |
1819 if (event.xclient.message_type == Xatom_wm_protocols | |
1820 && event.xclient.format == 32) | |
1821 { | |
1822 if (event.xclient.data.l[0] == Xatom_wm_take_focus) | |
1823 { | |
771 | 1824 f = x_window_to_frame (event.xclient.window); |
1825 if (f) | |
1826 x_focus_on_frame (f); | |
642 | 1827 /* Not certain about handling scrollbars here */ |
1828 } | |
1829 else if (event.xclient.data.l[0] == Xatom_wm_save_yourself) | |
1830 { | |
1831 /* Save state modify the WM_COMMAND property to | |
1832 something which can reinstate us. This notifies | |
1833 the session manager, who's looking for such a | |
1834 PropertyNotify. Can restart processing when | |
1835 a keyboard or mouse event arrives. */ | |
1836 if (numchars > 0) | |
1837 { | |
1838 } | |
1839 } | |
1840 else if (event.xclient.data.l[0] == Xatom_wm_delete_window) | |
1841 { | |
771 | 1842 struct frame *f = x_window_to_frame (event.xclient.window); |
1843 | |
1844 if (f) | |
642 | 1845 if (numchars > 0) |
1846 { | |
1847 } | |
1848 } | |
1849 } | |
1850 else if (event.xclient.message_type == Xatom_wm_configure_denied) | |
1851 { | |
1852 } | |
1853 else if (event.xclient.message_type == Xatom_wm_window_moved) | |
1854 { | |
1855 int new_x, new_y; | |
1856 | |
786 | 1857 new_x = event.xclient.data.s[0]; |
1858 new_y = event.xclient.data.s[1]; | |
642 | 1859 } |
1860 } | |
1861 break; | |
286 | 1862 |
1863 case SelectionClear: /* Someone has grabbed ownership. */ | |
1864 x_disown_selection (event.xselectionclear.window, | |
1865 event.xselectionclear.selection, | |
1866 event.xselectionclear.time); | |
1867 break; | |
1868 | |
1869 case SelectionRequest: /* Someone wants our selection. */ | |
1870 x_answer_selection_request (event); | |
1871 break; | |
1872 | |
1873 case PropertyNotify: | |
1279
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1874 |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1875 /* If we're being told about a root window property, then it's |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1876 a cut buffer change. */ |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1877 if (event.xproperty.window == ROOT_WINDOW) |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1878 x_invalidate_cut_buffer_cache (&event.xproperty); |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1879 |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1880 /* Otherwise, we're probably handling an incremental |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1881 selection transmission. */ |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1882 else |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1883 { |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1884 /* If we were to do this synchronously, there'd be no worry |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1885 about re-selecting. */ |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1886 x_send_incremental (event); |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
1887 } |
286 | 1888 break; |
1889 | |
1890 case Expose: | |
771 | 1891 f = x_window_to_frame (event.xexpose.window); |
1892 if (f) | |
286 | 1893 { |
771 | 1894 if (f->visible == 0) |
286 | 1895 { |
771 | 1896 f->visible = 1; |
1897 f->iconified = 0; | |
1898 SET_FRAME_GARBAGED (f); | |
286 | 1899 } |
1900 else | |
771 | 1901 dumprectangle (x_window_to_frame (event.xexpose.window), |
286 | 1902 event.xexpose.x, event.xexpose.y, |
1903 event.xexpose.width, event.xexpose.height); | |
1904 } | |
1905 break; | |
1906 | |
1907 case GraphicsExpose: /* This occurs when an XCopyArea's | |
1908 source area was obscured or not | |
1909 available.*/ | |
771 | 1910 dumprectangle (x_window_to_frame (event.xgraphicsexpose.drawable), |
286 | 1911 event.xgraphicsexpose.x, event.xgraphicsexpose.y, |
1912 event.xgraphicsexpose.width, | |
1913 event.xgraphicsexpose.height); | |
1914 break; | |
1915 | |
1916 case NoExpose: /* This occurs when an XCopyArea's | |
1917 source area was completely | |
1918 available */ | |
1919 break; | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1920 #else /* ! defined (HAVE_X11) */ |
286 | 1921 case ExposeWindow: |
1922 if (event.subwindow != 0) | |
1923 break; /* duplicate event */ | |
771 | 1924 f = x_window_to_frame (event.window); |
1925 if (event.window == f->display.x->icon_desc) | |
286 | 1926 { |
771 | 1927 refreshicon (f); |
1928 f->iconified = 1; | |
286 | 1929 } |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1930 if (event.window == FRAME_X_WINDOW (f)) |
286 | 1931 { |
1932 /* Say must check all windows' needs_exposure flags. */ | |
1933 expose_all_windows = 1; | |
771 | 1934 f->display.x->needs_exposure = 1; |
1935 f->visible = 1; | |
286 | 1936 } |
1937 break; | |
1938 | |
1939 case ExposeRegion: | |
1940 if (event.subwindow != 0) | |
1941 break; /* duplicate event */ | |
771 | 1942 f = x_window_to_frame (event.window); |
1943 if (event.window == f->display.x->icon_desc) | |
286 | 1944 { |
771 | 1945 refreshicon (f); |
286 | 1946 break; |
1947 } | |
1948 /* If window already needs full redraw, ignore this rectangle. */ | |
771 | 1949 if (expose_all_windows && f->display.x->needs_exposure) |
286 | 1950 break; |
1951 /* Put the event on the queue of rectangles to redraw. */ | |
1952 if (enqueue_event (&event, &x_expose_queue)) | |
1953 /* If it is full, we can't record the rectangle, | |
1954 so redraw this entire window. */ | |
1955 { | |
1956 /* Say must check all windows' needs_exposure flags. */ | |
1957 expose_all_windows = 1; | |
771 | 1958 f->display.x->needs_exposure = 1; |
286 | 1959 } |
1960 break; | |
1961 | |
1962 case ExposeCopy: | |
1963 /* This should happen only when we are expecting it, | |
1964 in x_read_exposes. */ | |
1965 abort (); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
1966 #endif /* ! defined (HAVE_X11) */ |
286 | 1967 |
1968 #ifdef HAVE_X11 | |
1969 case UnmapNotify: | |
1970 { | |
1971 XWMHints *hints; | |
1972 | |
771 | 1973 f = x_window_to_frame (event.xunmap.window); |
1974 if (f) /* F may no longer exist if | |
1975 the frame was deleted. */ | |
286 | 1976 { |
771 | 1977 /* While a frame is unmapped, display generation is |
286 | 1978 disabled; you don't want to spend time updating a |
1979 display that won't ever be seen. */ | |
771 | 1980 f->visible = 0; |
286 | 1981 x_mouse_x = x_mouse_y = -1; |
1982 } | |
1983 } | |
1984 break; | |
1985 | |
1986 case MapNotify: | |
771 | 1987 f = x_window_to_frame (event.xmap.window); |
1988 if (f) | |
286 | 1989 { |
771 | 1990 f->visible = 1; |
1991 f->iconified = 0; | |
286 | 1992 |
1993 /* wait_reading_process_input will notice this and update | |
771 | 1994 the frame's display structures. */ |
1995 SET_FRAME_GARBAGED (f); | |
286 | 1996 } |
1997 break; | |
1998 | |
1999 /* Turn off processing if we become fully obscured. */ | |
2000 case VisibilityNotify: | |
2001 break; | |
2002 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2003 #else /* ! defined (HAVE_X11) */ |
286 | 2004 case UnmapWindow: |
771 | 2005 f = x_window_to_frame (event.window); |
2006 if (event.window == f->display.x->icon_desc) | |
2007 f->iconified = 0; | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2008 if (event.window == FRAME_X_WINDOW (f)) |
771 | 2009 f->visible = 0; |
286 | 2010 break; |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2011 #endif /* ! defined (HAVE_X11) */ |
286 | 2012 |
2013 #ifdef HAVE_X11 | |
2014 case KeyPress: | |
771 | 2015 f = x_window_to_frame (event.xkey.window); |
2016 if (f != 0) | |
286 | 2017 { |
2018 KeySym keysym; | |
2019 XComposeStatus status; | |
2020 char copy_buffer[80]; | |
555 | 2021 int modifiers = event.xkey.state; |
2022 | |
2023 /* Some keyboards generate different characters | |
2024 depending on the state of the meta key, in an attempt | |
2025 to support non-English typists. It would be nice to | |
2026 keep this functionality somehow, but for now, we will | |
2027 just clear the meta-key flag to get the 'pure' character. */ | |
2028 event.xkey.state &= ~Mod1Mask; | |
286 | 2029 |
2030 /* This will have to go some day... */ | |
2031 nbytes = XLookupString (&event.xkey, | |
2032 copy_buffer, | |
2033 80, | |
2034 &keysym, | |
2035 &status); | |
2036 | |
395 | 2037 /* Strip off the vendor-specific keysym bit, and take a shot |
2038 at recognizing the codes. HP servers have extra keysyms | |
2039 that fit into the MiscFunctionKey category. */ | |
2040 keysym &= ~(1<<28); | |
2041 | |
286 | 2042 if (numchars > 1) |
2043 { | |
395 | 2044 if (IsCursorKey (keysym) /* 0xff50 <= x < 0xff60 */ |
2045 || IsMiscFunctionKey (keysym) /* 0xff60 <= x < 0xff80 */ | |
2046 || IsKeypadKey (keysym) /* 0xff80 <= x < 0xffbe */ | |
2047 || IsFunctionKey (keysym)) /* 0xffbe <= x < 0xffe1 */ | |
286 | 2048 { |
2049 bufp->kind = non_ascii_keystroke; | |
429 | 2050 XSET (bufp->code, Lisp_Int, (unsigned) keysym - 0xff50); |
771 | 2051 bufp->frame = f; |
555 | 2052 bufp->modifiers = x_convert_modifiers (modifiers); |
708 | 2053 bufp->timestamp = event.xkey.time; |
286 | 2054 bufp++; |
2055 count++; | |
2056 numchars--; | |
2057 } | |
2058 else if (numchars > nbytes) | |
2059 { | |
2060 register int i; | |
2061 | |
2062 if (nbytes == 1) | |
2063 { | |
555 | 2064 if (modifiers & Mod1Mask) |
286 | 2065 *copy_buffer |= METABIT; |
2066 bufp->kind = ascii_keystroke; | |
708 | 2067 XSET (bufp->code, Lisp_Int, *copy_buffer); |
771 | 2068 bufp->frame = f; |
708 | 2069 bufp->timestamp = event.xkey.time; |
286 | 2070 bufp++; |
2071 } | |
2072 else | |
2073 for (i = nbytes - 1; i > 1; i--) | |
2074 { | |
2075 bufp->kind = ascii_keystroke; | |
2076 XSET (bufp->code, Lisp_Int, copy_buffer[i]); | |
771 | 2077 bufp->frame = f; |
708 | 2078 bufp->timestamp = event.xkey.time; |
286 | 2079 bufp++; |
2080 } | |
2081 | |
2082 count += nbytes; | |
2083 numchars -= nbytes; | |
2084 } | |
2085 } | |
2086 } | |
2087 break; | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2088 #else /* ! defined (HAVE_X11) */ |
286 | 2089 case KeyPressed: |
2090 { | |
2091 register char *where_mapping; | |
2092 | |
771 | 2093 f = x_window_to_frame (event.window); |
286 | 2094 /* Ignore keys typed on icon windows. */ |
771 | 2095 if (f != 0 && event.window == f->display.x->icon_desc) |
286 | 2096 break; |
2097 where_mapping = XLookupMapping (&event, &nbytes); | |
2098 /* Nasty fix for arrow keys */ | |
2099 if (!nbytes && IsCursorKey (event.detail & 0xff)) | |
2100 { | |
2101 switch (event.detail & 0xff) | |
2102 { | |
2103 case KC_CURSOR_LEFT: | |
2104 where_mapping = "\002"; | |
2105 break; | |
2106 case KC_CURSOR_RIGHT: | |
2107 where_mapping = "\006"; | |
2108 break; | |
2109 case KC_CURSOR_UP: | |
2110 where_mapping = "\020"; | |
2111 break; | |
2112 case KC_CURSOR_DOWN: | |
2113 where_mapping = "\016"; | |
2114 break; | |
2115 } | |
2116 nbytes = 1; | |
2117 } | |
2118 if (numchars - nbytes > 0) | |
2119 { | |
2120 register int i; | |
2121 | |
2122 for (i = 0; i < nbytes; i++) | |
2123 { | |
2124 bufp->kind = ascii_keystroke; | |
2125 XSET (bufp->code, Lisp_Int, where_mapping[i]); | |
429 | 2126 XSET (bufp->time, Lisp_Int, event.xkey.time); |
771 | 2127 bufp->frame = f; |
286 | 2128 bufp++; |
2129 } | |
2130 count += nbytes; | |
2131 numchars -= nbytes; | |
2132 } | |
2133 } | |
2134 break; | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2135 #endif /* ! defined (HAVE_X11) */ |
286 | 2136 |
2137 #ifdef HAVE_X11 | |
2138 case EnterNotify: | |
771 | 2139 f = x_window_to_frame (event.xcrossing.window); |
369 | 2140 |
286 | 2141 if (event.xcrossing.detail == NotifyInferior) /* Left Scrollbar */ |
2142 ; | |
2143 else if (event.xcrossing.focus) /* Entered Window */ | |
2144 { | |
2145 /* If we decide we want to generate an event to be seen | |
2146 by the rest of Emacs, we put it here. */ | |
2147 struct input_event emacs_event; | |
2148 emacs_event.kind = no_event; | |
2149 | |
2150 /* Avoid nasty pop/raise loops. */ | |
771 | 2151 if (f && (!(f->auto_raise) |
2152 || !(f->auto_lower) | |
286 | 2153 || (event.xcrossing.time - enter_timestamp) > 500)) |
2154 { | |
771 | 2155 x_new_focus_frame (f); |
286 | 2156 enter_timestamp = event.xcrossing.time; |
2157 } | |
2158 #if 0 | |
771 | 2159 else if ((f = x_window_to_scrollbar (event.xcrossing.window, |
286 | 2160 &part, &prefix))) |
2161 /* Fake a motion event */ | |
2162 notice_mouse_movement (&emacs_event, | |
771 | 2163 event.xmotion, f, scrollbar_window, |
286 | 2164 part); |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2165 #endif /* ! 0 */ |
286 | 2166 |
2167 #if 0 | |
2168 if (! EQ (Vx_send_mouse_movement_events, Qnil) | |
2169 && numchars >= 1 | |
2170 && emacs_event.kind != no_event) | |
2171 { | |
2172 bcopy (&emacs_event, bufp, sizeof (struct input_event)); | |
2173 bufp++; | |
2174 count++; | |
2175 numchars--; | |
2176 } | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2177 #endif /* ! 0 */ |
286 | 2178 } |
771 | 2179 else if (f == x_focus_frame) |
2180 x_new_focus_frame (0); | |
286 | 2181 #if 0 |
771 | 2182 else if (f = x_window_to_frame (event.xcrossing.window)) |
2183 x_mouse_frame = f; | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2184 #endif /* ! 0 */ |
286 | 2185 |
2186 break; | |
2187 | |
2188 case FocusIn: | |
771 | 2189 f = x_window_to_frame (event.xfocus.window); |
2190 if (f) | |
2191 x_new_focus_frame (f); | |
286 | 2192 break; |
2193 | |
2194 case LeaveNotify: | |
2195 if (event.xcrossing.detail != NotifyInferior | |
2196 && event.xcrossing.subwindow == None | |
2197 && event.xcrossing.mode == NotifyNormal) | |
2198 { | |
771 | 2199 f = x_window_to_frame (event.xcrossing.window); |
976
cbdfc337ec8f
* xterm.c (x_wm_hints): New variable.
Jim Blandy <jimb@redhat.com>
parents:
786
diff
changeset
|
2200 |
313 | 2201 if (event.xcrossing.focus) |
771 | 2202 x_new_focus_frame (f); |
2203 else if (f == x_focus_frame) | |
2204 x_new_focus_frame (0); | |
286 | 2205 } |
2206 break; | |
2207 | |
2208 case FocusOut: | |
771 | 2209 f = x_window_to_frame (event.xfocus.window); |
2210 if (f && f == x_focus_frame) | |
2211 x_new_focus_frame (0); | |
286 | 2212 break; |
2213 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2214 #else /* ! defined (HAVE_X11) */ |
286 | 2215 |
2216 case EnterWindow: | |
2217 if ((event.detail & 0xFF) == 1) | |
2218 break; /* Coming from our own subwindow */ | |
2219 if (event.subwindow != 0) | |
2220 break; /* Entering our own subwindow. */ | |
2221 | |
2222 { | |
771 | 2223 f = x_window_to_frame (event.window); |
2224 x_mouse_frame = f; | |
2225 | |
2226 x_new_focus_frame (f); | |
286 | 2227 } |
2228 break; | |
2229 | |
2230 case LeaveWindow: | |
2231 if ((event.detail & 0xFF) == 1) | |
2232 break; /* Entering our own subwindow */ | |
2233 if (event.subwindow != 0) | |
2234 break; /* Leaving our own subwindow. */ | |
2235 | |
771 | 2236 x_mouse_frame = 0; |
2237 if (x_focus_frame == 0 | |
2238 && x_input_frame != 0 | |
2239 && x_input_frame == x_window_to_frame (event.window) | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2240 && event.window == FRAME_X_WINDOW (x_input_frame)) |
286 | 2241 { |
771 | 2242 f = x_input_frame; |
2243 x_input_frame = 0; | |
2244 if (f) | |
2245 frame_unhighlight (f); | |
286 | 2246 } |
2247 break; | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2248 #endif /* ! defined (HAVE_X11) */ |
286 | 2249 |
2250 #ifdef HAVE_X11 | |
2251 case MotionNotify: | |
2252 { | |
771 | 2253 f = x_window_to_frame (event.xmotion.window); |
2254 if (f) | |
2255 note_mouse_position (f, &event.xmotion); | |
286 | 2256 #if 0 |
771 | 2257 else if ((f = x_window_to_scrollbar (event.xmotion.window, |
286 | 2258 &part, &prefix))) |
2259 { | |
2260 What should go here? | |
2261 } | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2262 #endif /* ! 0 */ |
286 | 2263 } |
2264 break; | |
2265 | |
2266 case ConfigureNotify: | |
2267 { | |
2268 int rows, columns; | |
771 | 2269 f = x_window_to_frame (event.xconfigure.window); |
2270 if (!f) | |
286 | 2271 break; |
2272 | |
2273 columns = ((event.xconfigure.width - | |
771 | 2274 (2 * f->display.x->internal_border_width) |
2275 - f->display.x->v_scrollbar_width) | |
2276 / FONT_WIDTH (f->display.x->font)); | |
286 | 2277 rows = ((event.xconfigure.height - |
771 | 2278 (2 * f->display.x->internal_border_width) |
2279 - f->display.x->h_scrollbar_height) | |
2280 / FONT_HEIGHT (f->display.x->font)); | |
286 | 2281 |
429 | 2282 /* Even if the number of character rows and columns has |
2283 not changed, the font size may have changed, so we need | |
2284 to check the pixel dimensions as well. */ | |
771 | 2285 if (columns != f->width |
2286 || rows != f->height | |
2287 || event.xconfigure.width != f->display.x->pixel_width | |
2288 || event.xconfigure.height != f->display.x->pixel_height) | |
286 | 2289 { |
976
cbdfc337ec8f
* xterm.c (x_wm_hints): New variable.
Jim Blandy <jimb@redhat.com>
parents:
786
diff
changeset
|
2290 change_frame_size (f, rows, columns, 0, 1); |
771 | 2291 x_resize_scrollbars (f); |
2292 SET_FRAME_GARBAGED (f); | |
286 | 2293 } |
2294 | |
771 | 2295 f->display.x->pixel_width = event.xconfigure.width; |
2296 f->display.x->pixel_height = event.xconfigure.height; | |
2297 f->display.x->left_pos = event.xconfigure.x; | |
2298 f->display.x->top_pos = event.xconfigure.y; | |
286 | 2299 break; |
2300 } | |
2301 | |
2302 case ButtonPress: | |
2303 case ButtonRelease: | |
2304 { | |
2305 /* If we decide we want to generate an event to be seen | |
2306 by the rest of Emacs, we put it here. */ | |
2307 struct input_event emacs_event; | |
2308 emacs_event.kind = no_event; | |
2309 | |
771 | 2310 f = x_window_to_frame (event.xbutton.window); |
2311 if (f) | |
2312 if (!x_focus_frame || (f == x_focus_frame)) | |
286 | 2313 construct_mouse_click (&emacs_event, |
771 | 2314 &event, f, 0, 0); |
286 | 2315 else |
2316 continue; | |
2317 else | |
771 | 2318 if ((f = x_window_to_scrollbar (event.xbutton.window, |
286 | 2319 &part, &prefix))) |
2320 { | |
771 | 2321 if (!x_focus_frame || (selected_frame == x_focus_frame)) |
286 | 2322 construct_mouse_click (&emacs_event, |
771 | 2323 &event, f, part, prefix); |
286 | 2324 else |
2325 continue; | |
2326 } | |
2327 | |
2328 if (numchars >= 1 && emacs_event.kind != no_event) | |
2329 { | |
2330 bcopy (&emacs_event, bufp, sizeof (struct input_event)); | |
2331 bufp++; | |
2332 count++; | |
2333 numchars--; | |
2334 } | |
2335 } | |
2336 break; | |
2337 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2338 #else /* ! defined (HAVE_X11) */ |
286 | 2339 case ButtonPressed: |
2340 case ButtonReleased: | |
771 | 2341 f = x_window_to_frame (event.window); |
2342 if (f) | |
286 | 2343 { |
771 | 2344 if (event.window == f->display.x->icon_desc) |
286 | 2345 { |
771 | 2346 x_make_frame_visible (f); |
286 | 2347 |
2348 if (warp_mouse_on_deiconify) | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2349 XWarpMouse (FRAME_X_WINDOW (f), 10, 10); |
286 | 2350 break; |
2351 } | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2352 if (event.window == FRAME_X_WINDOW (f)) |
286 | 2353 { |
771 | 2354 if (f->auto_raise) |
2355 x_raise_frame (f); | |
286 | 2356 } |
2357 } | |
2358 enqueue_event (&event, &x_mouse_queue); | |
2359 if (numchars >= 2) | |
2360 { | |
2361 bufp->kind = ascii_keystroke; | |
2362 bufp->code = (char) 'X' & 037; /* C-x */ | |
771 | 2363 bufp->frame = f; |
429 | 2364 XSET (bufp->time, Lisp_Int, event.xkey.time); |
286 | 2365 bufp++; |
2366 | |
2367 bufp->kind = ascii_keystroke; | |
2368 bufp->code = (char) 0; /* C-@ */ | |
771 | 2369 bufp->frame = f; |
429 | 2370 XSET (bufp->time, Lisp_Int, event.xkey.time); |
286 | 2371 bufp++; |
2372 | |
2373 count += 2; | |
2374 numchars -= 2; | |
2375 } | |
2376 break; | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2377 #endif /* ! defined (HAVE_X11) */ |
286 | 2378 |
2379 #ifdef HAVE_X11 | |
2380 | |
2381 case CirculateNotify: | |
2382 break; | |
2383 case CirculateRequest: | |
2384 break; | |
2385 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2386 #endif /* ! defined (HAVE_X11) */ |
286 | 2387 |
2388 case MappingNotify: | |
2389 if (event.xmapping.request == MappingKeyboard) | |
2390 /* Someone has changed the keyboard mapping - flush the | |
2391 local cache. */ | |
2392 XRefreshKeyboardMapping (&event.xmapping); | |
2393 break; | |
2394 | |
2395 default: | |
2396 break; | |
2397 } | |
2398 } | |
2399 | |
2400 #if 0 | |
2401 #ifdef HAVE_SELECT | |
2402 if (expected && ! event_found) | |
2403 { | |
2404 /* AOJ 880406: if select returns true but XPending doesn't, it means that | |
2405 there is an EOF condition; in other words, that X has died. | |
2406 Act as if there had been a hangup. */ | |
2407 | |
2408 int fd = ConnectionNumber (x_current_display); | |
2409 int mask = 1 << fd; | |
2410 | |
2411 if (0 != select (fd + 1, &mask, (long *) 0, (long *) 0, | |
555 | 2412 (EMACS_TIME) 0) |
286 | 2413 && !XStuffPending ()) |
2414 kill (getpid (), SIGHUP); | |
2415 } | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2416 #endif /* ! defined (HAVE_SELECT) */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2417 #endif /* ! 0 */ |
286 | 2418 |
771 | 2419 if (updating_frame == 0) |
286 | 2420 x_do_pending_expose (); |
2421 | |
2422 UNBLOCK_INPUT; | |
2423 return count; | |
2424 } | |
2425 | |
2426 #ifndef HAVE_X11 | |
2427 /* Read and process only Expose events | |
2428 until we get an ExposeCopy event; then return. | |
2429 This is used in insert/delete line. | |
2430 We assume input is already blocked. */ | |
2431 | |
2432 static void | |
2433 x_read_exposes () | |
2434 { | |
771 | 2435 struct frame *f; |
286 | 2436 XKeyPressedEvent event; |
2437 | |
2438 while (1) | |
2439 { | |
2440 /* while there are more events*/ | |
2441 XMaskEvent (ExposeWindow | ExposeRegion | ExposeCopy, &event); | |
2442 switch (event.type) | |
2443 { | |
2444 case ExposeWindow: | |
2445 if (event.subwindow != 0) | |
2446 break; /* duplicate event */ | |
771 | 2447 f = x_window_to_frame (event.window); |
2448 if (event.window == f->display.x->icon_desc) | |
286 | 2449 { |
771 | 2450 refreshicon (f); |
286 | 2451 break; |
2452 } | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2453 if (event.window == FRAME_X_WINDOW (f)) |
286 | 2454 { |
2455 expose_all_windows = 1; | |
771 | 2456 f->display.x->needs_exposure = 1; |
286 | 2457 break; |
2458 } | |
2459 break; | |
2460 | |
2461 case ExposeRegion: | |
2462 if (event.subwindow != 0) | |
2463 break; /* duplicate event */ | |
771 | 2464 f = x_window_to_frame (event.window); |
2465 if (event.window == f->display.x->icon_desc) | |
286 | 2466 { |
771 | 2467 refreshicon (f); |
286 | 2468 break; |
2469 } | |
2470 /* If window already needs full redraw, ignore this rectangle. */ | |
771 | 2471 if (expose_all_windows && f->display.x->needs_exposure) |
286 | 2472 break; |
2473 /* Put the event on the queue of rectangles to redraw. */ | |
2474 if (enqueue_event (&event, &x_expose_queue)) | |
2475 /* If it is full, we can't record the rectangle, | |
2476 so redraw this entire window. */ | |
2477 { | |
2478 /* Say must check all windows' needs_exposure flags. */ | |
2479 expose_all_windows = 1; | |
771 | 2480 f->display.x->needs_exposure = 1; |
286 | 2481 } |
2482 break; | |
2483 | |
2484 case ExposeCopy: | |
2485 return; | |
2486 } | |
2487 } | |
2488 } | |
2489 #endif /* HAVE_X11 */ | |
2490 | |
2491 | |
2492 /* Draw a hollow box cursor. Don't change the inside of the box. */ | |
2493 | |
2494 static void | |
771 | 2495 x_draw_box (f) |
2496 struct frame *f; | |
286 | 2497 { |
771 | 2498 int left = f->cursor_x * FONT_WIDTH (f->display.x->font) |
2499 + f->display.x->internal_border_width; | |
2500 int top = f->cursor_y * FONT_HEIGHT (f->display.x->font) | |
2501 + f->display.x->internal_border_width; | |
2502 int width = FONT_WIDTH (f->display.x->font); | |
2503 int height = FONT_HEIGHT (f->display.x->font); | |
286 | 2504 |
2505 #ifdef HAVE_X11 | |
2506 /* Perhaps we should subtract 1 from width and height... */ | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2507 XDrawRectangle (x_current_display, FRAME_X_WINDOW (f), |
771 | 2508 f->display.x->cursor_gc, |
286 | 2509 left, top, width - 1, height - 1); |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2510 #else /* ! defined (HAVE_X11) */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2511 XPixSet (FRAME_X_WINDOW (f), |
286 | 2512 left, top, width, 1, |
771 | 2513 f->display.x->cursor_pixel); |
2514 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2515 XPixSet (FRAME_X_WINDOW (f), |
286 | 2516 left, top, 1, height, |
771 | 2517 f->display.x->cursor_pixel); |
2518 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2519 XPixSet (FRAME_X_WINDOW (f), |
286 | 2520 left+width-1, top, 1, height, |
771 | 2521 f->display.x->cursor_pixel); |
2522 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2523 XPixSet (FRAME_X_WINDOW (f), |
286 | 2524 left, top+height-1, width, 1, |
771 | 2525 f->display.x->cursor_pixel); |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2526 #endif /* ! defined (HAVE_X11) */ |
286 | 2527 } |
2528 | |
771 | 2529 /* Clear the cursor of frame F to background color, |
286 | 2530 and mark the cursor as not shown. |
2531 This is used when the text where the cursor is | |
2532 is about to be rewritten. */ | |
2533 | |
2534 static void | |
771 | 2535 clear_cursor (f) |
2536 struct frame *f; | |
286 | 2537 { |
2538 int mask; | |
2539 | |
771 | 2540 if (! f->visible |
2541 || f->phys_cursor_x < 0) | |
286 | 2542 return; |
2543 | |
2544 #ifdef HAVE_X11 | |
771 | 2545 x_display_cursor (f, 0); |
286 | 2546 #if 0 |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2547 XClearArea (x_current_display, FRAME_X_WINDOW (f), |
771 | 2548 f->phys_cursor_x * FONT_WIDTH (f->display.x->font) |
2549 + f->display.x->internal_border_width, | |
2550 f->phys_cursor_y * FONT_HEIGHT (f->display.x->font) | |
2551 + f->display.x->internal_border_width, | |
2552 FONT_WIDTH (f->display.x->font) + 1, FONT_HEIGHT (f->display.x->font) + 1, False); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2553 #endif /* ! 0 */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2554 #else /* ! defined (HAVE_X11) */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2555 XPixSet (FRAME_X_WINDOW (f), |
771 | 2556 f->phys_cursor_x * FONT_WIDTH (f->display.x->font) + f->display.x->internal_border_width, |
2557 f->phys_cursor_y * FONT_HEIGHT (f->display.x->font) + f->display.x->internal_border_width, | |
2558 FONT_WIDTH (f->display.x->font), FONT_HEIGHT (f->display.x->font), | |
2559 f->display.x->background_pixel); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2560 #endif /* ! defined (HAVE_X11) */ |
771 | 2561 f->phys_cursor_x = -1; |
286 | 2562 } |
2563 | |
429 | 2564 static void |
771 | 2565 x_display_bar_cursor (f, on) |
2566 struct frame *f; | |
286 | 2567 int on; |
2568 { | |
771 | 2569 register int phys_x = f->phys_cursor_x; |
2570 register int phys_y = f->phys_cursor_y; | |
286 | 2571 register int x1; |
2572 register int y1; | |
2573 register int y2; | |
2574 | |
771 | 2575 if (! f->visible || (! on && f->phys_cursor_x < 0)) |
286 | 2576 return; |
2577 | |
2578 #ifdef HAVE_X11 | |
2579 if (phys_x >= 0 && | |
771 | 2580 (!on || phys_x != f->cursor_x || phys_y != f->cursor_y)) |
286 | 2581 { |
771 | 2582 x1 = phys_x * FONT_WIDTH (f->display.x->font) |
2583 + f->display.x->internal_border_width; | |
2584 y1 = phys_y * FONT_HEIGHT (f->display.x->font) | |
2585 + f->display.x->internal_border_width - 1; | |
2586 y2 = y1 + FONT_HEIGHT (f->display.x->font) + 1; | |
2587 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2588 XDrawLine (x_current_display, FRAME_X_WINDOW (f), |
771 | 2589 f->display.x->reverse_gc, x1, y1, x1, y2); |
2590 | |
2591 f->phys_cursor_x = phys_x = -1; | |
286 | 2592 } |
2593 | |
771 | 2594 if (on && f == x_highlight_frame) |
286 | 2595 { |
771 | 2596 x1 = f->cursor_x * FONT_WIDTH (f->display.x->font) |
2597 + f->display.x->internal_border_width; | |
2598 y1 = f->cursor_y * FONT_HEIGHT (f->display.x->font) | |
2599 + f->display.x->internal_border_width - 1; | |
2600 y2 = y1 + FONT_HEIGHT (f->display.x->font) + 1; | |
2601 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2602 XDrawLine (x_current_display, FRAME_X_WINDOW (f), |
771 | 2603 f->display.x->cursor_gc, x1, y1, x1, y2); |
2604 | |
2605 f->phys_cursor_x = f->cursor_x; | |
2606 f->phys_cursor_y = f->cursor_y; | |
286 | 2607 } |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2608 #else /* ! defined (HAVE_X11) */ |
286 | 2609 Give it up, dude. |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2610 #endif /* ! defined (HAVE_X11) */ |
286 | 2611 } |
2612 | |
2613 | |
771 | 2614 /* Redraw the glyph at ROW, COLUMN on frame F, in the style |
429 | 2615 HIGHLIGHT. HIGHLIGHT is as defined for dumpglyphs. Return the |
2616 glyph drawn. */ | |
286 | 2617 |
2618 static void | |
771 | 2619 x_draw_single_glyph (f, row, column, glyph, highlight) |
2620 struct frame *f; | |
286 | 2621 int row, column; |
429 | 2622 GLYPH glyph; |
286 | 2623 int highlight; |
2624 { | |
771 | 2625 dumpglyphs (f, |
2626 (column * FONT_WIDTH (f->display.x->font) | |
2627 + f->display.x->internal_border_width), | |
2628 (row * FONT_HEIGHT (f->display.x->font) | |
2629 + f->display.x->internal_border_width), | |
2630 &glyph, 1, highlight, f->display.x->font); | |
286 | 2631 } |
2632 | |
771 | 2633 /* Turn the displayed cursor of frame F on or off according to ON. |
286 | 2634 If ON is nonzero, where to put the cursor is specified |
771 | 2635 by F->cursor_x and F->cursor_y. */ |
286 | 2636 |
2637 static void | |
771 | 2638 x_display_box_cursor (f, on) |
2639 struct frame *f; | |
286 | 2640 int on; |
2641 { | |
771 | 2642 struct frame_glyphs *current_glyphs = FRAME_CURRENT_GLYPHS (f); |
2643 | |
2644 /* If we're not updating, then we want to use the current frame's | |
708 | 2645 cursor position, not our local idea of where the cursor ought to be. */ |
771 | 2646 if (f != updating_frame) |
708 | 2647 { |
771 | 2648 curs_x = FRAME_CURSOR_X (f); |
2649 curs_y = FRAME_CURSOR_Y (f); | |
708 | 2650 } |
2651 | |
771 | 2652 if (! f->visible) |
286 | 2653 return; |
2654 | |
2655 /* If cursor is off and we want it off, return quickly. */ | |
771 | 2656 if (!on && f->phys_cursor_x < 0) |
286 | 2657 return; |
2658 | |
2659 /* If cursor is currently being shown and we don't want it to be | |
2660 or it is in the wrong place, | |
2661 or we want a hollow box and it's not so, (pout!) | |
2662 erase it. */ | |
771 | 2663 if (f->phys_cursor_x >= 0 |
286 | 2664 && (!on |
771 | 2665 || f->phys_cursor_x != curs_x |
2666 || f->phys_cursor_y != curs_y | |
2667 || (f->display.x->text_cursor_kind != hollow_box_cursor | |
2668 && (f != x_highlight_frame)))) | |
286 | 2669 { |
2670 /* Erase the cursor by redrawing the character underneath it. */ | |
771 | 2671 x_draw_single_glyph (f, f->phys_cursor_y, f->phys_cursor_x, |
2672 f->phys_cursor_glyph, | |
2673 current_glyphs->highlight[f->phys_cursor_y]); | |
2674 f->phys_cursor_x = -1; | |
286 | 2675 } |
2676 | |
2677 /* If we want to show a cursor, | |
2678 or we want a box cursor and it's not so, | |
2679 write it in the right place. */ | |
2680 if (on | |
771 | 2681 && (f->phys_cursor_x < 0 |
2682 || (f->display.x->text_cursor_kind != filled_box_cursor | |
2683 && f == x_highlight_frame))) | |
286 | 2684 { |
771 | 2685 f->phys_cursor_glyph |
708 | 2686 = ((current_glyphs->enable[curs_y] |
2687 && curs_x < current_glyphs->used[curs_y]) | |
2688 ? current_glyphs->glyphs[curs_y][curs_x] | |
429 | 2689 : SPACEGLYPH); |
771 | 2690 if (f != x_highlight_frame) |
286 | 2691 { |
771 | 2692 x_draw_box (f); |
2693 f->display.x->text_cursor_kind = hollow_box_cursor; | |
286 | 2694 } |
2695 else | |
2696 { | |
771 | 2697 x_draw_single_glyph (f, curs_y, curs_x, |
2698 f->phys_cursor_glyph, 2); | |
2699 f->display.x->text_cursor_kind = filled_box_cursor; | |
286 | 2700 } |
2701 | |
771 | 2702 f->phys_cursor_x = curs_x; |
2703 f->phys_cursor_y = curs_y; | |
286 | 2704 } |
2705 | |
771 | 2706 if (updating_frame != f) |
286 | 2707 XFlushQueue (); |
2708 } | |
2709 | |
2710 extern Lisp_Object Vbar_cursor; | |
2711 | |
771 | 2712 x_display_cursor (f, on) |
2713 struct frame *f; | |
286 | 2714 int on; |
2715 { | |
2716 if (EQ (Vbar_cursor, Qnil)) | |
771 | 2717 x_display_box_cursor (f, on); |
286 | 2718 else |
771 | 2719 x_display_bar_cursor (f, on); |
286 | 2720 } |
2721 | |
2722 /* Icons. */ | |
2723 | |
771 | 2724 /* Refresh bitmap kitchen sink icon for frame F |
286 | 2725 when we get an expose event for it. */ |
2726 | |
771 | 2727 refreshicon (f) |
2728 struct frame *f; | |
286 | 2729 { |
2730 #ifdef HAVE_X11 | |
2731 /* Normally, the window manager handles this function. */ | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2732 #else /* ! defined (HAVE_X11) */ |
286 | 2733 int mask; |
2734 | |
771 | 2735 if (f->display.x->icon_bitmap_flag) |
2736 XBitmapBitsPut (f->display.x->icon_desc, 0, 0, sink_width, sink_height, | |
286 | 2737 sink_bits, BlackPixel, WHITE_PIX_DEFAULT, |
2738 icon_bitmap, GXcopy, AllPlanes); | |
2739 else | |
2740 { | |
771 | 2741 extern struct frame *selected_frame; |
286 | 2742 struct Lisp_String *str; |
2743 unsigned char *string; | |
2744 | |
2745 string | |
771 | 2746 = XSTRING (XBUFFER (XWINDOW (f->selected_window)->buffer)->name)->data; |
2747 | |
2748 if (f->display.x->icon_label != string) | |
286 | 2749 { |
771 | 2750 f->display.x->icon_label = string; |
2751 XChangeWindow (f->display.x->icon_desc, | |
286 | 2752 XQueryWidth (string, icon_font_info->id) + 10, |
2753 icon_font_info->height + 10); | |
2754 } | |
2755 | |
771 | 2756 XText (f->display.x->icon_desc, 5, 5, string, |
286 | 2757 str->size, icon_font_info->id, |
2758 BLACK_PIX_DEFAULT, WHITE_PIX_DEFAULT); | |
2759 } | |
2760 XFlushQueue (); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2761 #endif /* ! defined (HAVE_X11) */ |
286 | 2762 } |
2763 | |
771 | 2764 /* Make the x-window of frame F use the kitchen-sink icon |
286 | 2765 that's a window generated by Emacs. */ |
2766 | |
2767 int | |
771 | 2768 x_bitmap_icon (f) |
2769 struct frame *f; | |
286 | 2770 { |
2771 int mask; | |
2772 Window icon_window; | |
2773 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2774 if (FRAME_X_WINDOW (f) == 0) |
286 | 2775 return 1; |
2776 | |
2777 #ifdef HAVE_X11 | |
2778 if (icon_bitmap) | |
2779 XFreePixmap (x_current_display, icon_bitmap); | |
2780 | |
2781 icon_bitmap = | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2782 XCreateBitmapFromData (x_current_display, FRAME_X_WINDOW (f), |
286 | 2783 gnu_bits, gnu_width, gnu_height); |
771 | 2784 x_wm_set_icon_pixmap (f, icon_bitmap); |
2785 f->display.x->icon_bitmap_flag = 1; | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2786 #else /* ! defined (HAVE_X11) */ |
771 | 2787 if (f->display.x->icon_desc) |
286 | 2788 { |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2789 XClearIconWindow (FRAME_X_WINDOW (f)); |
771 | 2790 XDestroyWindow (f->display.x->icon_desc); |
286 | 2791 } |
2792 | |
771 | 2793 icon_window = XCreateWindow (f->display.x->parent_desc, |
286 | 2794 0, 0, sink_width, sink_height, |
2795 2, WhitePixmap, (Pixmap) NULL); | |
2796 | |
2797 if (icon_window == 0) | |
2798 return 1; | |
2799 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2800 XSetIconWindow (FRAME_X_WINDOW (f), icon_window); |
286 | 2801 XSelectInput (icon_window, ExposeWindow | UnmapWindow); |
2802 | |
771 | 2803 f->display.x->icon_desc = icon_window; |
2804 f->display.x->icon_bitmap_flag = 1; | |
286 | 2805 |
2806 if (icon_bitmap == 0) | |
2807 icon_bitmap | |
2808 = XStoreBitmap (sink_mask_width, sink_mask_height, sink_mask_bits); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2809 #endif /* ! defined (HAVE_X11) */ |
286 | 2810 |
2811 return 0; | |
2812 } | |
2813 | |
2814 | |
771 | 2815 /* Make the x-window of frame F use a rectangle with text. */ |
286 | 2816 |
2817 int | |
771 | 2818 x_text_icon (f, icon_name) |
2819 struct frame *f; | |
286 | 2820 char *icon_name; |
2821 { | |
2822 #ifndef HAVE_X11 | |
2823 int mask; | |
2824 int width; | |
2825 Window icon_window; | |
2826 char *X_DefaultValue; | |
2827 Bitmap b1; | |
2828 | |
2829 #ifndef WhitePixel | |
2830 #define WhitePixel 1 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2831 #endif /* WhitePixel */ |
286 | 2832 |
2833 #ifndef BlackPixel | |
2834 #define BlackPixel 0 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2835 #endif /* BlackPixel */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2836 #endif /* HAVE_X11 */ |
286 | 2837 |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2838 if (FRAME_X_WINDOW (f) == 0) |
286 | 2839 return 1; |
2840 | |
2841 if (icon_font_info == 0) | |
2842 icon_font_info | |
395 | 2843 = XGetFont (XGetDefault (XDISPLAY |
2844 (char *) XSTRING (invocation_name)->data, | |
2845 "BodyFont")); | |
286 | 2846 |
2847 #ifdef HAVE_X11 | |
2848 if (icon_name) | |
771 | 2849 f->display.x->icon_label = icon_name; |
286 | 2850 else |
771 | 2851 if (! f->display.x->icon_label) |
2852 f->display.x->icon_label = " *emacs* "; | |
286 | 2853 |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2854 XSetIconName (x_current_display, FRAME_X_WINDOW (f), |
771 | 2855 (char *) f->display.x->icon_label); |
286 | 2856 |
771 | 2857 f->display.x->icon_bitmap_flag = 0; |
976
cbdfc337ec8f
* xterm.c (x_wm_hints): New variable.
Jim Blandy <jimb@redhat.com>
parents:
786
diff
changeset
|
2858 x_wm_set_icon_pixmap (f, 0); |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2859 #else /* ! defined (HAVE_X11) */ |
771 | 2860 if (f->display.x->icon_desc) |
286 | 2861 { |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2862 XClearIconWindow (XDISPLAY FRAME_X_WINDOW (f)); |
771 | 2863 XDestroyWindow (XDISPLAY f->display.x->icon_desc); |
286 | 2864 } |
2865 | |
2866 if (icon_name) | |
771 | 2867 f->display.x->icon_label = (unsigned char *) icon_name; |
286 | 2868 else |
771 | 2869 if (! f->display.x->icon_label) |
2870 f->display.x->icon_label = XSTRING (f->name)->data; | |
2871 | |
2872 width = XStringWidth (f->display.x->icon_label, icon_font_info, 0, 0); | |
2873 icon_window = XCreateWindow (f->display.x->parent_desc, | |
2874 f->display.x->left_pos, | |
2875 f->display.x->top_pos, | |
286 | 2876 width + 10, icon_font_info->height + 10, |
2877 2, BlackPixmap, WhitePixmap); | |
2878 | |
2879 if (icon_window == 0) | |
2880 return 1; | |
2881 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2882 XSetIconWindow (FRAME_X_WINDOW (f), icon_window); |
286 | 2883 XSelectInput (icon_window, ExposeWindow | ExposeRegion | UnmapWindow | ButtonPressed); |
2884 | |
771 | 2885 f->display.x->icon_desc = icon_window; |
2886 f->display.x->icon_bitmap_flag = 0; | |
2887 f->display.x->icon_label = 0; | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2888 #endif /* ! defined (HAVE_X11) */ |
286 | 2889 |
2890 return 0; | |
2891 } | |
2892 | |
621 | 2893 /* Handling X errors. */ |
2894 | |
2895 /* A handler for SIGPIPE, when it occurs on the X server's connection. | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2896 This basically does an orderly shutdown of Emacs. */ |
1020
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
2897 |
621 | 2898 static SIGTYPE |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2899 x_connection_closed () |
621 | 2900 { |
2901 if (_Xdebug) | |
2902 abort (); | |
2903 else | |
2904 Fkill_emacs (make_number (70)); | |
2905 } | |
2906 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2907 /* An X error handler which prints an error message and then kills Emacs. |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2908 This is what's normally installed as Xlib's handler for protocol and |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2909 I/O errors. */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2910 static int |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2911 x_error_quitter (display, error) |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2912 Display *display; |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2913 XErrorEvent *error; |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2914 { |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2915 char buf[256]; |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2916 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2917 /* Note that there is no real way portable across R3/R4 to get the |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2918 original error handler. */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2919 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2920 XGetErrorText (display, error->error_code, buf, sizeof (buf)); |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2921 fprintf (stderr, "X protocol error: %s on protocol request %d\n", |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2922 buf, error->request_code); |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2923 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2924 x_connection_closed (); |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2925 } |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2926 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2927 /* A buffer for storing X error messages. */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2928 static char (*x_caught_error_message)[200]; |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2929 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2930 /* An X error handler which stores the error message in |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2931 x_caught_error_message. This is what's installed when |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2932 x_catch_errors is in effect. */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2933 static int |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2934 x_error_catcher (display, error) |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2935 Display *display; |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2936 XErrorEvent *error; |
286 | 2937 { |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2938 XGetErrorText (display, error->error_code, |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2939 *x_caught_error_message, sizeof (*x_caught_error_message)); |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2940 } |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2941 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2942 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2943 /* Begin trapping X errors. |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2944 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2945 After calling this function, X protocol errors no longer cause |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2946 Emacs to exit; instead, they are recorded in x_cfc_error_message. |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2947 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2948 Calling x_check_errors signals an Emacs error if an X error has |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2949 occurred since the last call to x_catch_errors or x_check_errors. |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2950 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2951 Calling x_uncatch_errors resumes the normal error handling. */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2952 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2953 void x_catch_errors(), x_check_errors (), x_uncatch_errors (); |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2954 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2955 void |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2956 x_catch_errors () |
286 | 2957 { |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2958 /* Make sure any errors from previous requests have been dealt with. */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2959 XSync (x_current_display, False); |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2960 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2961 /* Set up the error buffer. */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2962 x_caught_error_message = |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2963 (char (*)[]) xmalloc (sizeof (*x_caught_error_message)); |
1077
d6ee6ff7562d
* xterm.c (x_catch_errors): Don't forget to initialize
Jim Blandy <jimb@redhat.com>
parents:
1052
diff
changeset
|
2964 (*x_caught_error_message)[0] = '\0'; |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2965 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2966 /* Install our little error handler. */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2967 XHandleError (x_error_catcher); |
286 | 2968 } |
2969 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2970 /* If any X protocol errors have arrived since the last call to |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2971 x_catch_errors or x_check_errors, signal an Emacs error using |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2972 sprintf (a buffer, FORMAT, the x error message text) as the text. */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2973 void |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2974 x_check_errors (format) |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2975 char *format; |
286 | 2976 { |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2977 /* Make sure to catch any errors incurred so far. */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2978 XSync (x_current_display, False); |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2979 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2980 if ((*x_caught_error_message)[0]) |
286 | 2981 { |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2982 char buf[256]; |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2983 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2984 sprintf (buf, format, *x_caught_error_message); |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2985 free (x_caught_error_message); |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2986 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2987 x_uncatch_errors (); |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2988 error (buf); |
286 | 2989 } |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2990 } |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2991 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2992 void |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2993 x_uncatch_errors () |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2994 { |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2995 free (x_caught_error_message); |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
2996 XHandleError (x_error_quitter); |
286 | 2997 } |
2998 | |
2999 #if 0 | |
3000 static unsigned int x_wire_count; | |
3001 x_trace_wire () | |
3002 { | |
3003 fprintf (stderr, "Lib call: %d\n", ++x_wire_count); | |
3004 } | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3005 #endif /* ! 0 */ |
286 | 3006 |
3007 | |
771 | 3008 /* Set the font of the x-window specified by frame F |
286 | 3009 to the font named NEWNAME. This is safe to use |
771 | 3010 even before F has an actual x-window. */ |
286 | 3011 |
3012 #ifdef HAVE_X11 | |
3013 | |
3014 /* A table of all the fonts we have already loaded. */ | |
3015 static XFontStruct **x_font_table; | |
3016 | |
3017 /* The current capacity of x_font_table. */ | |
3018 static int x_font_table_size; | |
3019 | |
3020 /* The number of fonts actually stored in x_font_table. | |
3021 x_font_table[n] is used and valid iff 0 <= n < n_fonts. | |
3022 0 <= n_fonts <= x_font_table_size. */ | |
3023 static int n_fonts; | |
3024 | |
771 | 3025 x_new_font (f, fontname) |
3026 struct frame *f; | |
286 | 3027 register char *fontname; |
3028 { | |
3029 XFontStruct *temp; | |
3030 int already_loaded; | |
3031 int n_matching_fonts; | |
3032 XFontStruct *font_info; | |
3033 char **font_names; | |
3034 | |
3035 /* Get a list of all the fonts that match this name. Once we | |
3036 have a list of matching fonts, we compare them against the fonts | |
3037 we already have by comparing font ids. */ | |
3038 font_names = (char **) XListFontsWithInfo (x_current_display, fontname, | |
3039 1024, &n_matching_fonts, | |
3040 &font_info); | |
3041 /* If the server couldn't find any fonts whose named matched fontname, | |
3042 return an error code. */ | |
3043 if (n_matching_fonts == 0) | |
3044 return 1; | |
3045 | |
429 | 3046 /* See if we've already loaded a matching font. */ |
286 | 3047 { |
3048 int i, j; | |
3049 | |
3050 already_loaded = 0; | |
3051 for (i = 0; i < n_fonts; i++) | |
3052 for (j = 0; j < n_matching_fonts; j++) | |
3053 if (x_font_table[i]->fid == font_info[j].fid) | |
3054 { | |
3055 already_loaded = i; | |
3056 goto found_font; | |
3057 } | |
3058 } | |
3059 found_font: | |
3060 | |
3061 /* If we have, just return it from the table. */ | |
3062 if (already_loaded) | |
771 | 3063 f->display.x->font = x_font_table[already_loaded]; |
429 | 3064 |
286 | 3065 /* Otherwise, load the font and add it to the table. */ |
3066 else | |
3067 { | |
3068 XFontStruct *font; | |
3069 | |
3070 font = (XFontStruct *) XLoadQueryFont (x_current_display, fontname); | |
3071 if (! font) | |
3072 return 1; | |
3073 | |
3074 /* Do we need to create the table? */ | |
3075 if (x_font_table_size == 0) | |
3076 { | |
3077 x_font_table_size = 16; | |
3078 x_font_table | |
3079 = (XFontStruct **) xmalloc (x_font_table_size | |
3080 * sizeof (x_font_table[0])); | |
3081 } | |
3082 /* Do we need to grow the table? */ | |
3083 else if (n_fonts >= x_font_table_size) | |
3084 { | |
429 | 3085 x_font_table_size *= 2; |
286 | 3086 x_font_table |
3087 = (XFontStruct **) xrealloc (x_font_table, | |
3088 (x_font_table_size | |
3089 * sizeof (x_font_table[0]))); | |
3090 } | |
3091 | |
771 | 3092 f->display.x->font = x_font_table[n_fonts++] = font; |
286 | 3093 } |
3094 | |
3095 /* Free the information from XListFontsWithInfo. The data | |
3096 we actually retain comes from XLoadQueryFont. */ | |
3097 XFreeFontInfo (font_names, font_info, n_matching_fonts); | |
3098 | |
771 | 3099 /* Now make the frame display the given font. */ |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3100 if (FRAME_X_WINDOW (f) != 0) |
286 | 3101 { |
771 | 3102 XSetFont (x_current_display, f->display.x->normal_gc, |
3103 f->display.x->font->fid); | |
3104 XSetFont (x_current_display, f->display.x->reverse_gc, | |
3105 f->display.x->font->fid); | |
3106 XSetFont (x_current_display, f->display.x->cursor_gc, | |
3107 f->display.x->font->fid); | |
3108 | |
3109 x_set_window_size (f, f->width, f->height); | |
286 | 3110 } |
3111 | |
3112 return 0; | |
3113 } | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3114 #else /* ! defined (HAVE_X11) */ |
771 | 3115 x_new_font (f, newname) |
3116 struct frame *f; | |
286 | 3117 register char *newname; |
3118 { | |
3119 FONT_TYPE *temp; | |
3120 int mask; | |
3121 | |
3122 temp = XGetFont (newname); | |
3123 if (temp == (FONT_TYPE *) 0) | |
3124 return 1; | |
3125 | |
771 | 3126 if (f->display.x->font) |
3127 XLoseFont (f->display.x->font); | |
3128 | |
3129 f->display.x->font = temp; | |
3130 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3131 if (FRAME_X_WINDOW (f) != 0) |
771 | 3132 x_set_window_size (f, f->width, f->height); |
286 | 3133 |
3134 return 0; | |
3135 } | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3136 #endif /* ! defined (HAVE_X11) */ |
286 | 3137 |
771 | 3138 x_calc_absolute_position (f) |
3139 struct frame *f; | |
286 | 3140 { |
3141 #ifdef HAVE_X11 | |
771 | 3142 if (f->display.x->left_pos < 0) |
3143 f->display.x->left_pos | |
786 | 3144 = XINT (x_screen_width) - PIXEL_WIDTH (f) + f->display.x->left_pos; |
771 | 3145 |
3146 if (f->display.x->top_pos < 0) | |
3147 f->display.x->top_pos | |
786 | 3148 = XINT (x_screen_height) - PIXEL_HEIGHT (f) + f->display.x->top_pos; |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3149 #else /* ! defined (HAVE_X11) */ |
286 | 3150 WINDOWINFO_TYPE parentinfo; |
3151 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3152 XGetWindowInfo (FRAME_X_WINDOW (f), &parentinfo); |
771 | 3153 |
3154 if (f->display.x->left_pos < 0) | |
3155 f->display.x->left_pos = parentinfo.width + (f->display.x->left_pos + 1) | |
3156 - PIXEL_WIDTH (f) - 2 * f->display.x->internal_border_width; | |
3157 | |
3158 if (f->display.x->top_pos < 0) | |
3159 f->display.x->top_pos = parentinfo.height + (f->display.x->top_pos + 1) | |
3160 - PIXEL_HEIGHT (f) - 2 * f->display.x->internal_border_width; | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3161 #endif /* ! defined (HAVE_X11) */ |
286 | 3162 } |
3163 | |
771 | 3164 x_set_offset (f, xoff, yoff) |
3165 struct frame *f; | |
286 | 3166 register int xoff, yoff; |
3167 { | |
771 | 3168 f->display.x->top_pos = yoff; |
3169 f->display.x->left_pos = xoff; | |
3170 x_calc_absolute_position (f); | |
286 | 3171 |
3172 BLOCK_INPUT; | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3173 XMoveWindow (XDISPLAY FRAME_X_WINDOW (f), |
771 | 3174 f->display.x->left_pos, f->display.x->top_pos); |
286 | 3175 #ifdef HAVE_X11 |
771 | 3176 x_wm_set_size_hint (f, 0); |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3177 #endif /* ! defined (HAVE_X11) */ |
286 | 3178 UNBLOCK_INPUT; |
3179 } | |
3180 | |
771 | 3181 /* Call this to change the size of frame F's x-window. */ |
3182 | |
3183 x_set_window_size (f, cols, rows) | |
3184 struct frame *f; | |
976
cbdfc337ec8f
* xterm.c (x_wm_hints): New variable.
Jim Blandy <jimb@redhat.com>
parents:
786
diff
changeset
|
3185 int cols, rows; |
286 | 3186 { |
3187 int pixelwidth, pixelheight; | |
3188 int mask; | |
771 | 3189 int ibw = f->display.x->internal_border_width; |
286 | 3190 |
3191 BLOCK_INPUT; | |
3192 | |
976
cbdfc337ec8f
* xterm.c (x_wm_hints): New variable.
Jim Blandy <jimb@redhat.com>
parents:
786
diff
changeset
|
3193 check_frame_size (f, &rows, &cols); |
771 | 3194 pixelwidth = (cols * FONT_WIDTH (f->display.x->font) + 2 * ibw |
3195 + f->display.x->v_scrollbar_width); | |
3196 pixelheight = (rows * FONT_HEIGHT (f->display.x->font) + 2 * ibw | |
3197 + f->display.x->h_scrollbar_height); | |
286 | 3198 |
3199 #ifdef HAVE_X11 | |
771 | 3200 x_wm_set_size_hint (f, 0); |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3201 #endif /* ! defined (HAVE_X11) */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3202 XChangeWindowSize (FRAME_X_WINDOW (f), pixelwidth, pixelheight); |
976
cbdfc337ec8f
* xterm.c (x_wm_hints): New variable.
Jim Blandy <jimb@redhat.com>
parents:
786
diff
changeset
|
3203 |
cbdfc337ec8f
* xterm.c (x_wm_hints): New variable.
Jim Blandy <jimb@redhat.com>
parents:
786
diff
changeset
|
3204 /* Now, strictly speaking, we can't be sure that this is accurate, |
cbdfc337ec8f
* xterm.c (x_wm_hints): New variable.
Jim Blandy <jimb@redhat.com>
parents:
786
diff
changeset
|
3205 but the window manager will get around to dealing with the size |
cbdfc337ec8f
* xterm.c (x_wm_hints): New variable.
Jim Blandy <jimb@redhat.com>
parents:
786
diff
changeset
|
3206 change request eventually, and we'll hear how it went when the |
cbdfc337ec8f
* xterm.c (x_wm_hints): New variable.
Jim Blandy <jimb@redhat.com>
parents:
786
diff
changeset
|
3207 ConfigureNotify event gets here. */ |
cbdfc337ec8f
* xterm.c (x_wm_hints): New variable.
Jim Blandy <jimb@redhat.com>
parents:
786
diff
changeset
|
3208 FRAME_WIDTH (f) = cols; |
cbdfc337ec8f
* xterm.c (x_wm_hints): New variable.
Jim Blandy <jimb@redhat.com>
parents:
786
diff
changeset
|
3209 FRAME_WIDTH (f) = rows; |
cbdfc337ec8f
* xterm.c (x_wm_hints): New variable.
Jim Blandy <jimb@redhat.com>
parents:
786
diff
changeset
|
3210 PIXEL_WIDTH (f) = pixelwidth; |
cbdfc337ec8f
* xterm.c (x_wm_hints): New variable.
Jim Blandy <jimb@redhat.com>
parents:
786
diff
changeset
|
3211 PIXEL_HEIGHT (f) = pixelheight; |
cbdfc337ec8f
* xterm.c (x_wm_hints): New variable.
Jim Blandy <jimb@redhat.com>
parents:
786
diff
changeset
|
3212 |
286 | 3213 XFlushQueue (); |
3214 UNBLOCK_INPUT; | |
3215 } | |
3216 | |
3217 #ifndef HAVE_X11 | |
771 | 3218 x_set_resize_hint (f) |
3219 struct frame *f; | |
286 | 3220 { |
3221 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3222 XSetResizeHint (FRAME_X_WINDOW (f), 2 * f->display.x->internal_border_width, |
771 | 3223 2 * f->display.x->internal_border_width, |
3224 FONT_WIDTH (f->display.x->font), FONT_HEIGHT (f->display.x->font)); | |
286 | 3225 } |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3226 #endif /* HAVE_X11 */ |
286 | 3227 |
3228 | |
771 | 3229 x_set_mouse_position (f, x, y) |
3230 struct frame *f; | |
286 | 3231 int x, y; |
3232 { | |
3233 int pix_x, pix_y; | |
3234 | |
771 | 3235 x_raise_frame (f); |
286 | 3236 |
3237 if (x < 0) | |
771 | 3238 pix_x = (FRAME_WIDTH (f) |
3239 * FONT_WIDTH (f->display.x->font) | |
3240 + 2 * f->display.x->internal_border_width | |
3241 + f->display.x->v_scrollbar_width) / 2; | |
286 | 3242 else |
771 | 3243 pix_x = x * FONT_WIDTH (f->display.x->font) + 2; /* add 2 pixels to each |
286 | 3244 dimension to move the |
3245 mouse into the char | |
3246 cell */ | |
3247 | |
3248 if (y < 0) | |
771 | 3249 pix_y = (FRAME_HEIGHT (f) |
3250 * FONT_HEIGHT (f->display.x->font) | |
3251 + 2 * f->display.x->internal_border_width | |
3252 + f->display.x->h_scrollbar_height) / 2; | |
286 | 3253 else |
771 | 3254 pix_y = y * FONT_HEIGHT (f->display.x->font) + 2; |
286 | 3255 |
3256 BLOCK_INPUT; | |
3257 x_mouse_x = x; | |
3258 x_mouse_y = y; | |
3259 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3260 XWarpMousePointer (FRAME_X_WINDOW (f), pix_x, pix_y); |
286 | 3261 UNBLOCK_INPUT; |
3262 } | |
3263 | |
3264 #ifdef HAVE_X11 | |
771 | 3265 x_focus_on_frame (f) |
3266 struct frame *f; | |
286 | 3267 { |
771 | 3268 x_raise_frame (f); |
369 | 3269 #if 0 |
3270 /* I don't think that the ICCCM allows programs to do things like this | |
3271 without the interaction of the window manager. Whatever you end up | |
771 | 3272 doing with this code, do it to x_unfocus_frame too. */ |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3273 XSetInputFocus (x_current_display, FRAME_X_WINDOW (f), |
286 | 3274 RevertToPointerRoot, CurrentTime); |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3275 #endif /* ! 0 */ |
286 | 3276 } |
3277 | |
771 | 3278 x_unfocus_frame (f) |
3279 struct frame *f; | |
286 | 3280 { |
369 | 3281 #if 0 |
771 | 3282 /* Look at the remarks in x_focus_on_frame. */ |
3283 if (x_focus_frame == f) | |
286 | 3284 XSetInputFocus (x_current_display, PointerRoot, |
3285 RevertToPointerRoot, CurrentTime); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3286 #endif /* ! 0 */ |
286 | 3287 } |
3288 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3289 #endif /* ! defined (HAVE_X11) */ |
286 | 3290 |
771 | 3291 /* Raise frame F. */ |
3292 | |
3293 x_raise_frame (f) | |
3294 struct frame *f; | |
286 | 3295 { |
771 | 3296 if (f->visible) |
286 | 3297 { |
3298 BLOCK_INPUT; | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3299 XRaiseWindow (XDISPLAY FRAME_X_WINDOW (f)); |
286 | 3300 XFlushQueue (); |
3301 UNBLOCK_INPUT; | |
3302 } | |
3303 } | |
3304 | |
771 | 3305 /* Lower frame F. */ |
3306 | |
3307 x_lower_frame (f) | |
3308 struct frame *f; | |
286 | 3309 { |
771 | 3310 if (f->visible) |
286 | 3311 { |
3312 BLOCK_INPUT; | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3313 XLowerWindow (XDISPLAY FRAME_X_WINDOW (f)); |
286 | 3314 XFlushQueue (); |
3315 UNBLOCK_INPUT; | |
3316 } | |
3317 } | |
3318 | |
3319 /* Change from withdrawn state to mapped state. */ | |
3320 | |
771 | 3321 x_make_frame_visible (f) |
3322 struct frame *f; | |
286 | 3323 { |
3324 int mask; | |
3325 | |
429 | 3326 BLOCK_INPUT; |
3327 | |
771 | 3328 if (! FRAME_VISIBLE_P (f)) |
286 | 3329 { |
3330 #ifdef HAVE_X11 | |
429 | 3331 if (! EQ (Vx_no_window_manager, Qt)) |
771 | 3332 x_wm_set_window_state (f, NormalState); |
3333 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3334 XMapWindow (XDISPLAY FRAME_X_WINDOW (f)); |
771 | 3335 if (f->display.x->v_scrollbar != 0 || f->display.x->h_scrollbar != 0) |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3336 XMapSubwindows (x_current_display, FRAME_X_WINDOW (f)); |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3337 #else /* ! defined (HAVE_X11) */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3338 XMapWindow (XDISPLAY FRAME_X_WINDOW (f)); |
771 | 3339 if (f->display.x->icon_desc != 0) |
3340 XUnmapWindow (f->display.x->icon_desc); | |
429 | 3341 |
3342 /* Handled by the MapNotify event for X11 */ | |
771 | 3343 f->visible = 1; |
3344 f->iconified = 0; | |
3345 | |
3346 /* NOTE: this may cause problems for the first frame. */ | |
429 | 3347 XTcursor_to (0, 0); |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3348 #endif /* ! defined (HAVE_X11) */ |
429 | 3349 } |
286 | 3350 |
3351 XFlushQueue (); | |
429 | 3352 |
286 | 3353 UNBLOCK_INPUT; |
3354 } | |
3355 | |
3356 /* Change from mapped state to withdrawn state. */ | |
3357 | |
771 | 3358 x_make_frame_invisible (f) |
3359 struct frame *f; | |
286 | 3360 { |
3361 int mask; | |
3362 | |
771 | 3363 if (! f->visible) |
286 | 3364 return; |
3365 | |
3366 BLOCK_INPUT; | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3367 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3368 #ifdef HAVE_X11R4 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3369 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3370 if (! XWithdrawWindow (x_current_display, FRAME_X_WINDOW (f), |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3371 DefaultScreen (x_current_display))) |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3372 { |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3373 UNBLOCK_INPUT_RESIGNAL; |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3374 error ("can't notify window manager of window withdrawl"); |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3375 } |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3376 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3377 #else /* ! defined (HAVE_X11R4) */ |
286 | 3378 #ifdef HAVE_X11 |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3379 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3380 /* Tell the window manager what we're going to do. */ |
286 | 3381 if (! EQ (Vx_no_window_manager, Qt)) |
3382 { | |
1020
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3383 XEvent unmap; |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3384 |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3385 unmap.xunmap.type = UnmapNotify; |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3386 unmap.xunmap.window = FRAME_X_WINDOW (f); |
1020
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3387 unmap.xunmap.event = DefaultRootWindow (x_current_display); |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3388 unmap.xunmap.from_configure = False; |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3389 if (! XSendEvent (x_current_display, |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3390 DefaultRootWindow (x_current_display), |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3391 False, |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3392 SubstructureRedirectMask|SubstructureNotifyMask, |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3393 &unmap)) |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3394 { |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3395 UNBLOCK_INPUT_RESIGNAL; |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3396 error ("can't notify window manager of withdrawal"); |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3397 } |
286 | 3398 } |
3399 | |
1020
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3400 /* Unmap the window ourselves. Cheeky! */ |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3401 XUnmapWindow (x_current_display, FRAME_X_WINDOW (f)); |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3402 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3403 #else /* ! defined (HAVE_X11) */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3404 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3405 XUnmapWindow (FRAME_X_WINDOW (f)); |
771 | 3406 f->visible = 0; /* Handled by the UnMap event for X11 */ |
3407 if (f->display.x->icon_desc != 0) | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3408 XUnmapWindow (f->display.x->icon_desc); |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3409 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3410 #endif /* ! defined (HAVE_X11) */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3411 #endif /* ! defined (HAVE_X11R4) */ |
286 | 3412 |
3413 XFlushQueue (); | |
3414 UNBLOCK_INPUT; | |
3415 } | |
3416 | |
1020
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3417 /* Window manager communication. Created in Fx_open_connection. */ |
286 | 3418 extern Atom Xatom_wm_change_state; |
3419 | |
3420 /* Change window state from mapped to iconified. */ | |
3421 | |
771 | 3422 x_iconify_frame (f) |
3423 struct frame *f; | |
286 | 3424 { |
3425 int mask; | |
3426 | |
771 | 3427 if (f->iconified) |
286 | 3428 return; |
3429 | |
3430 BLOCK_INPUT; | |
3431 | |
3432 #ifdef HAVE_X11 | |
1020
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3433 /* Since we don't know which revision of X we're running, we'll use both |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3434 the X11R3 and X11R4 techniques. I don't know if this is a good idea. */ |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3435 |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3436 /* X11R4: send a ClientMessage to the window manager using the |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3437 WM_CHANGE_STATE type. */ |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3438 { |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3439 XEvent message; |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3440 |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3441 message.xclient.window = FRAME_X_WINDOW (f); |
1020
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3442 message.xclient.type = ClientMessage; |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3443 message.xclient.message_type = Xatom_wm_change_state; |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3444 message.xclient.format = 32; |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3445 message.xclient.data.l[0] = IconicState; |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3446 |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3447 if (! XSendEvent (x_current_display, |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3448 DefaultRootWindow (x_current_display), |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3449 False, |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3450 SubstructureRedirectMask | SubstructureNotifyMask, |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3451 &message)) |
286 | 3452 { |
3453 UNBLOCK_INPUT_RESIGNAL; | |
3454 error ("Can't notify window manager of iconification."); | |
3455 } | |
1020
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3456 } |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3457 |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3458 /* X11R3: set the initial_state field of the window manager hints to |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3459 IconicState. */ |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3460 x_wm_set_window_state (f, IconicState); |
286 | 3461 |
771 | 3462 f->iconified = 1; |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3463 #else /* ! defined (HAVE_X11) */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3464 XUnmapWindow (XDISPLAY FRAME_X_WINDOW (f)); |
771 | 3465 |
3466 f->visible = 0; /* Handled in the UnMap event for X11. */ | |
3467 if (f->display.x->icon_desc != 0) | |
286 | 3468 { |
771 | 3469 XMapWindow (XDISPLAY f->display.x->icon_desc); |
3470 refreshicon (f); | |
286 | 3471 } |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3472 #endif /* ! defined (HAVE_X11) */ |
286 | 3473 |
3474 XFlushQueue (); | |
3475 UNBLOCK_INPUT; | |
3476 } | |
3477 | |
771 | 3478 /* Destroy the X window of frame F. |
3479 DISPL is the former f->display (since f->display | |
286 | 3480 has already been nulled out). */ |
3481 | |
771 | 3482 x_destroy_window (f, displ) |
3483 struct frame *f; | |
286 | 3484 union display displ; |
3485 { | |
3486 int mask; | |
3487 | |
3488 BLOCK_INPUT; | |
3489 if (displ.x->icon_desc != 0) | |
3490 XDestroyWindow (XDISPLAY displ.x->icon_desc); | |
3491 XDestroyWindow (XDISPLAY displ.x->window_desc); | |
3492 XFlushQueue (); | |
3493 UNBLOCK_INPUT; | |
3494 | |
3495 free (displ.x); | |
771 | 3496 if (f == x_focus_frame) |
3497 x_focus_frame = 0; | |
3498 if (f == x_highlight_frame) | |
3499 x_highlight_frame = 0; | |
286 | 3500 } |
3501 | |
3502 #ifndef HAVE_X11 | |
3503 | |
3504 /* Manage event queues. | |
3505 | |
3506 This code is only used by the X10 support. | |
3507 | |
3508 We cannot leave events in the X queue and get them when we are ready | |
3509 because X does not provide a subroutine to get only a certain kind | |
3510 of event but not block if there are no queued events of that kind. | |
3511 | |
3512 Therefore, we must examine events as they come in and copy events | |
3513 of certain kinds into our private queues. | |
3514 | |
3515 All ExposeRegion events are put in x_expose_queue. | |
3516 All ButtonPressed and ButtonReleased events are put in x_mouse_queue. */ | |
3517 | |
3518 | |
3519 /* Write the event *P_XREP into the event queue *QUEUE. | |
3520 If the queue is full, do nothing, but return nonzero. */ | |
3521 | |
3522 int | |
3523 enqueue_event (p_xrep, queue) | |
3524 register XEvent *p_xrep; | |
3525 register struct event_queue *queue; | |
3526 { | |
3527 int newindex = queue->windex + 1; | |
3528 if (newindex == EVENT_BUFFER_SIZE) | |
3529 newindex = 0; | |
3530 if (newindex == queue->rindex) | |
3531 return -1; | |
3532 queue->xrep[queue->windex] = *p_xrep; | |
3533 queue->windex = newindex; | |
3534 return 0; | |
3535 } | |
3536 | |
3537 /* Fetch the next event from queue *QUEUE and store it in *P_XREP. | |
3538 If *QUEUE is empty, do nothing and return 0. */ | |
3539 | |
3540 int | |
3541 dequeue_event (p_xrep, queue) | |
3542 register XEvent *p_xrep; | |
3543 register struct event_queue *queue; | |
3544 { | |
3545 if (queue->windex == queue->rindex) | |
3546 return 0; | |
3547 *p_xrep = queue->xrep[queue->rindex++]; | |
3548 if (queue->rindex == EVENT_BUFFER_SIZE) | |
3549 queue->rindex = 0; | |
3550 return 1; | |
3551 } | |
3552 | |
3553 /* Return the number of events buffered in *QUEUE. */ | |
3554 | |
3555 int | |
3556 queue_event_count (queue) | |
3557 register struct event_queue *queue; | |
3558 { | |
3559 int tem = queue->windex - queue->rindex; | |
3560 if (tem >= 0) | |
3561 return tem; | |
3562 return EVENT_BUFFER_SIZE + tem; | |
3563 } | |
3564 | |
3565 /* Return nonzero if mouse input is pending. */ | |
3566 | |
3567 int | |
3568 mouse_event_pending_p () | |
3569 { | |
3570 return queue_event_count (&x_mouse_queue); | |
3571 } | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3572 #endif /* HAVE_X11 */ |
286 | 3573 |
3574 #ifdef HAVE_X11 | |
3575 | |
771 | 3576 x_wm_set_size_hint (f, prompting) |
3577 struct frame *f; | |
286 | 3578 long prompting; |
3579 { | |
3580 XSizeHints size_hints; | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3581 Window window = FRAME_X_WINDOW (f); |
286 | 3582 |
3583 size_hints.flags = PResizeInc | PMinSize | PMaxSize; | |
3584 | |
771 | 3585 flexlines = f->height; |
3586 | |
3587 size_hints.x = f->display.x->left_pos; | |
3588 size_hints.y = f->display.x->top_pos; | |
3589 size_hints.height = PIXEL_HEIGHT (f); | |
3590 size_hints.width = PIXEL_WIDTH (f); | |
3591 size_hints.width_inc = FONT_WIDTH (f->display.x->font); | |
3592 size_hints.height_inc = FONT_HEIGHT (f->display.x->font); | |
976
cbdfc337ec8f
* xterm.c (x_wm_hints): New variable.
Jim Blandy <jimb@redhat.com>
parents:
786
diff
changeset
|
3593 size_hints.max_width = |
cbdfc337ec8f
* xterm.c (x_wm_hints): New variable.
Jim Blandy <jimb@redhat.com>
parents:
786
diff
changeset
|
3594 (x_screen_width - ((2 * f->display.x->internal_border_width) |
cbdfc337ec8f
* xterm.c (x_wm_hints): New variable.
Jim Blandy <jimb@redhat.com>
parents:
786
diff
changeset
|
3595 + f->display.x->v_scrollbar_width)); |
cbdfc337ec8f
* xterm.c (x_wm_hints): New variable.
Jim Blandy <jimb@redhat.com>
parents:
786
diff
changeset
|
3596 size_hints.max_height = |
cbdfc337ec8f
* xterm.c (x_wm_hints): New variable.
Jim Blandy <jimb@redhat.com>
parents:
786
diff
changeset
|
3597 (x_screen_height - ((2 * f->display.x->internal_border_width) |
cbdfc337ec8f
* xterm.c (x_wm_hints): New variable.
Jim Blandy <jimb@redhat.com>
parents:
786
diff
changeset
|
3598 + f->display.x->h_scrollbar_height)); |
cbdfc337ec8f
* xterm.c (x_wm_hints): New variable.
Jim Blandy <jimb@redhat.com>
parents:
786
diff
changeset
|
3599 { |
1127
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3600 int base_width, base_height; |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3601 |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3602 base_width = ((2 * f->display.x->internal_border_width) |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3603 + f->display.x->v_scrollbar_width); |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3604 base_height = ((2 * f->display.x->internal_border_width) |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3605 + f->display.x->h_scrollbar_height); |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3606 |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3607 { |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3608 int min_rows = 0, min_cols = 0; |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3609 check_frame_size (f, &min_rows, &min_cols); |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3610 |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3611 /* The window manager uses the base width hints to calculate the |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3612 current number of rows and columns in the frame while |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3613 resizing; min_width and min_height aren't useful for this |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3614 purpose, since they might not give the dimensions for a |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3615 zero-row, zero-column frame. |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3616 |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3617 We use the base_width and base_height members if we have |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3618 them; otherwise, we set the min_width and min_height members |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3619 to the size for a zero x zero frame. */ |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3620 |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3621 #ifdef HAVE_X11R4 |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3622 size_hints.flags |= PBaseSize; |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3623 size_hints.base_width = base_width; |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3624 size_hints.base_height = base_height; |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3625 size_hints.min_width = base_width + min_cols * size_hints.width_inc; |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3626 size_hints.min_height = base_height + min_rows * size_hints.height_inc; |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3627 #else |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3628 size_hints.min_width = base_width; |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3629 size_hints.min_height = base_height; |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3630 #endif |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3631 } |
1020
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3632 |
976
cbdfc337ec8f
* xterm.c (x_wm_hints): New variable.
Jim Blandy <jimb@redhat.com>
parents:
786
diff
changeset
|
3633 } |
286 | 3634 |
3635 if (prompting) | |
3636 size_hints.flags |= prompting; | |
3637 else | |
3638 { | |
3639 XSizeHints hints; /* Sometimes I hate X Windows... */ | |
3640 | |
3641 XGetNormalHints (x_current_display, window, &hints); | |
3642 if (hints.flags & PSize) | |
3643 size_hints.flags |= PSize; | |
3644 if (hints.flags & PPosition) | |
3645 size_hints.flags |= PPosition; | |
3646 if (hints.flags & USPosition) | |
3647 size_hints.flags |= USPosition; | |
3648 if (hints.flags & USSize) | |
3649 size_hints.flags |= USSize; | |
3650 } | |
1020
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3651 |
1127
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3652 #ifdef HAVE_X11R4 |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3653 XSetWMNormalHints (x_current_display, window, &size_hints); |
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3654 #else |
286 | 3655 XSetNormalHints (x_current_display, window, &size_hints); |
1127
cd3d59155bf7
* xterm.c (x_wm_set_size_hint): Set the base_width and base_height
Jim Blandy <jimb@redhat.com>
parents:
1077
diff
changeset
|
3656 #endif |
286 | 3657 } |
3658 | |
3659 /* Used for IconicState or NormalState */ | |
771 | 3660 x_wm_set_window_state (f, state) |
3661 struct frame *f; | |
286 | 3662 int state; |
3663 { | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3664 Window window = FRAME_X_WINDOW (f); |
286 | 3665 |
1020
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3666 f->display.x->wm_hints.flags |= StateHint; |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3667 f->display.x->wm_hints.initial_state = state; |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3668 |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3669 XSetWMHints (x_current_display, window, &f->display.x->wm_hints); |
286 | 3670 } |
3671 | |
771 | 3672 x_wm_set_icon_pixmap (f, icon_pixmap) |
3673 struct frame *f; | |
286 | 3674 Pixmap icon_pixmap; |
3675 { | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3676 Window window = FRAME_X_WINDOW (f); |
286 | 3677 |
1020
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3678 f->display.x->wm_hints.flags |= IconPixmapHint; |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3679 f->display.x->wm_hints.icon_pixmap = icon_pixmap ? icon_pixmap : None; |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3680 |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3681 XSetWMHints (x_current_display, window, &f->display.x->wm_hints); |
286 | 3682 } |
3683 | |
771 | 3684 x_wm_set_icon_position (f, icon_x, icon_y) |
3685 struct frame *f; | |
286 | 3686 int icon_x, icon_y; |
3687 { | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3688 Window window = FRAME_X_WINDOW (f); |
286 | 3689 |
1020
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3690 f->display.x->wm_hints.flags |= IconPositionHint; |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3691 f->display.x->wm_hints.icon_x = icon_x; |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3692 f->display.x->wm_hints.icon_y = icon_y; |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3693 |
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3694 XSetWMHints (x_current_display, window, &f->display.x->wm_hints); |
286 | 3695 } |
3696 | |
3697 | |
3698 void | |
3699 x_term_init (display_name) | |
3700 char *display_name; | |
3701 { | |
771 | 3702 Lisp_Object frame; |
286 | 3703 char *defaultvalue; |
3704 #ifdef F_SETOWN | |
3705 extern int old_fcntl_owner; | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3706 #endif /* ! defined (F_SETOWN) */ |
369 | 3707 |
771 | 3708 x_focus_frame = x_highlight_frame = 0; |
286 | 3709 |
3710 x_current_display = XOpenDisplay (display_name); | |
3711 if (x_current_display == 0) | |
3712 fatal ("X server %s not responding; check the DISPLAY environment variable or use \"-d\"\n", | |
3713 display_name); | |
3714 | |
3715 #ifdef HAVE_X11 | |
3716 { | |
1020
7c2565dd644c
* xterm.c (x_wm_hints): Variable deleted. This has to be
Jim Blandy <jimb@redhat.com>
parents:
976
diff
changeset
|
3717 int hostname_size = 256; |
398 | 3718 |
3719 hostname = (char *) xmalloc (hostname_size); | |
3720 | |
286 | 3721 #if 0 |
3722 XSetAfterFunction (x_current_display, x_trace_wire); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3723 #endif /* ! 0 */ |
286 | 3724 |
395 | 3725 invocation_name = Ffile_name_nondirectory (Fcar (Vcommand_line_args)); |
398 | 3726 |
3727 /* Try to get the host name; if the buffer is too short, try | |
3728 again. Apparently, the only indication gethostname gives of | |
3729 whether the buffer was large enough is the presence or absence | |
3730 of a '\0' in the string. Eech. */ | |
3731 for (;;) | |
3732 { | |
3733 gethostname (hostname, hostname_size - 1); | |
3734 hostname[hostname_size - 1] = '\0'; | |
3735 | |
3736 /* Was the buffer large enough for gethostname to store the '\0'? */ | |
3737 if (strlen (hostname) < hostname_size - 1) | |
3738 break; | |
3739 | |
3740 hostname_size <<= 1; | |
3741 hostname = (char *) xrealloc (hostname, hostname_size); | |
3742 } | |
3743 x_id_name = (char *) xmalloc (XSTRING (invocation_name)->size | |
3744 + strlen (hostname) | |
3745 + 2); | |
3746 sprintf (x_id_name, "%s@%s", XSTRING (invocation_name)->data, hostname); | |
286 | 3747 } |
1279
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
3748 |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
3749 /* Figure out which modifier bits mean what. */ |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
3750 x_find_modifier_meanings (); |
286 | 3751 |
1279
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
3752 /* Watch for PropertyNotify events on the root window; we use them |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
3753 to figure out when to invalidate our cache of the cut buffers. */ |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
3754 x_watch_cut_buffer_cache (); |
74ae34a80f94
* xterm.c (x_meta_mod_mask): New variable, indicating which X
Jim Blandy <jimb@redhat.com>
parents:
1127
diff
changeset
|
3755 |
286 | 3756 dup2 (ConnectionNumber (x_current_display), 0); |
369 | 3757 |
3758 #ifndef SYSV_STREAMS | |
3759 /* Streams somehow keeps track of which descriptor number | |
3760 is being used to talk to X. So it is not safe to substitute | |
3761 descriptor 0. But it is safe to make descriptor 0 a copy of it. */ | |
286 | 3762 close (ConnectionNumber (x_current_display)); |
369 | 3763 ConnectionNumber (x_current_display) = 0; /* Looks a little strange? |
3764 * check the def of the macro; | |
3765 * it is a genuine lvalue */ | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3766 #endif /* SYSV_STREAMS */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3767 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3768 #endif /* ! defined (HAVE_X11) */ |
286 | 3769 |
3770 #ifdef F_SETOWN | |
3771 old_fcntl_owner = fcntl (0, F_GETOWN, 0); | |
3772 #ifdef F_SETOWN_SOCK_NEG | |
3773 fcntl (0, F_SETOWN, -getpid ()); /* stdin is a socket here */ | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3774 #else /* ! defined (F_SETOWN_SOCK_NEG) */ |
286 | 3775 fcntl (0, F_SETOWN, getpid ()); |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3776 #endif /* ! defined (F_SETOWN_SOCK_NEG) */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3777 #endif /* ! defined (F_SETOWN) */ |
286 | 3778 |
3779 #ifdef SIGIO | |
3780 init_sigio (); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3781 #endif /* ! defined (SIGIO) */ |
286 | 3782 |
3783 /* Must use interrupt input because we cannot otherwise | |
3784 arrange for C-g to be noticed immediately. | |
3785 We cannot connect it to SIGINT. */ | |
3786 Fset_input_mode (Qt, Qnil, Qt, Qnil); | |
3787 | |
3788 expose_all_windows = 0; | |
3789 | |
771 | 3790 clear_frame_hook = XTclear_frame; |
286 | 3791 clear_end_of_line_hook = XTclear_end_of_line; |
3792 ins_del_lines_hook = XTins_del_lines; | |
3793 change_line_highlight_hook = XTchange_line_highlight; | |
3794 insert_glyphs_hook = XTinsert_glyphs; | |
3795 write_glyphs_hook = XTwrite_glyphs; | |
3796 delete_glyphs_hook = XTdelete_glyphs; | |
3797 ring_bell_hook = XTring_bell; | |
3798 reset_terminal_modes_hook = XTreset_terminal_modes; | |
3799 set_terminal_modes_hook = XTset_terminal_modes; | |
3800 update_begin_hook = XTupdate_begin; | |
3801 update_end_hook = XTupdate_end; | |
3802 set_terminal_window_hook = XTset_terminal_window; | |
3803 read_socket_hook = XTread_socket; | |
3804 cursor_to_hook = XTcursor_to; | |
3805 reassert_line_highlight_hook = XTreassert_line_highlight; | |
771 | 3806 frame_rehighlight_hook = XTframe_rehighlight; |
429 | 3807 mouse_position_hook = XTmouse_position; |
286 | 3808 |
771 | 3809 scroll_region_ok = 1; /* we'll scroll partial frames */ |
286 | 3810 char_ins_del_ok = 0; /* just as fast to write the line */ |
3811 line_ins_del_ok = 1; /* we'll just blt 'em */ | |
3812 fast_clear_end_of_line = 1; /* X does this well */ | |
771 | 3813 memory_below_frame = 0; /* we don't remember what scrolls |
286 | 3814 off the bottom */ |
3815 baud_rate = 19200; | |
3816 | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3817 /* Note that there is no real way portable across R3/R4 to get the |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3818 original error handler. */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3819 XHandleError (x_error_quitter); |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3820 XHandleIOError (x_error_quitter); |
286 | 3821 |
3822 /* Disable Window Change signals; they are handled by X events. */ | |
3823 #ifdef SIGWINCH | |
3824 signal (SIGWINCH, SIG_DFL); | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3825 #endif /* ! defined (SIGWINCH) */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3826 |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3827 signal (SIGPIPE, x_connection_closed); |
286 | 3828 } |
395 | 3829 |
3830 void | |
3831 syms_of_xterm () | |
3832 { | |
3833 staticpro (&invocation_name); | |
3834 invocation_name = Qnil; | |
3835 } | |
1052
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3836 #endif /* ! defined (HAVE_X11) */ |
b8defcaf1b61
* xterm.c (x_make_frame_invisible): Don't forget to check the
Jim Blandy <jimb@redhat.com>
parents:
1020
diff
changeset
|
3837 #endif /* ! defined (HAVE_X_WINDOWS) */ |