annotate src/w32term.c @ 27406:fb36ccd8457c

(w32_fill_rect): Do not try to deal with NULL hdc here. Callers changed to always pass real device context. (w32_draw_bitmap): Likewise. (w32_get_glyph_overhangs): Likewise. (w32_draw_box_rect): Make use of s->hdc rather than getting a new one. (w32_set_vertical_scroll_bar): Pass correct HWND parameters to pfnSetScrollInfo and SetScrollRange. (x_get_char_face_and_encoding): Don't turn iso8859-1 characters back into MULE characters after decoding them. (x_get_glyph_face_and_encoding): Likewise. (w32_per_char_metric): Use GetCharExtentPoint32W as fallback when GetCharABCWidthsW fails, since this is defined on Windows 9x. (x_produce_glyphs): Calculate per char metrics for a character that we know exists in default font when font_not_found_p is true.
author Jason Rumney <jasonr@gnu.org>
date Sun, 23 Jan 2000 22:15:12 +0000
parents 044fe520ab6e
children 9625ad0c0f52
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
16884
36babc489b0c Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents: 16588
diff changeset
1 /* Implementation of GUI terminal on the Microsoft W32 API.
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2 Copyright (C) 1989, 93, 94, 95, 96, 97, 98 Free Software Foundation, Inc.
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
3
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4 This file is part of GNU Emacs.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6 GNU Emacs is free software; you can redistribute it and/or modify
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7 it under the terms of the GNU General Public License as published by
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8 the Free Software Foundation; either version 2, or (at your option)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9 any later version.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
11 GNU Emacs is distributed in the hope that it will be useful,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
14 GNU General Public License for more details.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
15
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
15742
80562f089595 Fix FSF address in comment.
Karl Heuer <kwzh@gnu.org>
parents: 15723
diff changeset
17 along with GNU Emacs; see the file COPYING. If not, write to the
80562f089595 Fix FSF address in comment.
Karl Heuer <kwzh@gnu.org>
parents: 15723
diff changeset
18 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
80562f089595 Fix FSF address in comment.
Karl Heuer <kwzh@gnu.org>
parents: 15723
diff changeset
19 Boston, MA 02111-1307, USA. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
20
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 25646
diff changeset
21 #include <config.h>
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
22 #include <signal.h>
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
23 #include <stdio.h>
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
24 #include <stdlib.h>
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
25 #include "lisp.h"
18507
be4c110cda51 Include charset.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16884
diff changeset
26 #include "charset.h"
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
27 #include "fontset.h"
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
28 #include "blockinput.h"
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
29
24674
d0dee612f8e3 [andrewi]
Andrew Innes <andrewi@gnu.org>
parents: 24480
diff changeset
30 #include "w32heap.h"
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
31 #include "w32term.h"
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
32 #include "w32bdf.h"
21885
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
33 #include <shellapi.h>
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
34
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
35 #include "systty.h"
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
36 #include "systime.h"
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
37
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
38 #include <ctype.h>
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
39 #include <errno.h>
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
40 #include <setjmp.h>
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
41 #include <sys/stat.h>
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
42
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
43 #include "frame.h"
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
44 #include "dispextern.h"
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
45 #include "termhooks.h"
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
46 #include "termopts.h"
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
47 #include "termchar.h"
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
48 #include "gnu.h"
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
49 #include "disptab.h"
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
50 #include "buffer.h"
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
51 #include "window.h"
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
52 #include "keyboard.h"
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
53 #include "intervals.h"
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
54 #include "composite.h"
21614
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
55 #include "coding.h"
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
56
21456
c0496e62b737 (min, max): Define as macros.
Karl Heuer <kwzh@gnu.org>
parents: 20179
diff changeset
57 #undef min
c0496e62b737 (min, max): Define as macros.
Karl Heuer <kwzh@gnu.org>
parents: 20179
diff changeset
58 #undef max
c0496e62b737 (min, max): Define as macros.
Karl Heuer <kwzh@gnu.org>
parents: 20179
diff changeset
59 #define min(x, y) (((x) < (y)) ? (x) : (y))
c0496e62b737 (min, max): Define as macros.
Karl Heuer <kwzh@gnu.org>
parents: 20179
diff changeset
60 #define max(x, y) (((x) > (y)) ? (x) : (y))
c0496e62b737 (min, max): Define as macros.
Karl Heuer <kwzh@gnu.org>
parents: 20179
diff changeset
61
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
62 #define abs(x) ((x) < 0 ? -(x) : (x))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
63
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
64 #define BETWEEN(X, LOWER, UPPER) ((X) >= (LOWER) && (X) < (UPPER))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
65
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
66
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
67 /* Bitmaps for truncated lines. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
68
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
69 enum bitmap_type
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
70 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
71 NO_BITMAP,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
72 LEFT_TRUNCATION_BITMAP,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
73 RIGHT_TRUNCATION_BITMAP,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
74 OVERLAY_ARROW_BITMAP,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
75 CONTINUED_LINE_BITMAP,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
76 CONTINUATION_LINE_BITMAP,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
77 ZV_LINE_BITMAP
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
78 };
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
79
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
80 /* Bitmaps are all unsigned short, as Windows requires bitmap data to
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
81 be Word aligned. For some reason they are horizontally reflected
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
82 compared to how they appear on X, so changes in xterm.c should be
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
83 reflected here. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
84
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
85 /* Bitmap drawn to indicate lines not displaying text if
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
86 `indicate-empty-lines' is non-nil. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
87
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
88 #define zv_width 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
89 #define zv_height 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
90 static unsigned short zv_bits[] = {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
91 0x00, 0x00, 0x78, 0x78, 0x78, 0x78, 0x00, 0x00};
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
92
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
93 /* An arrow like this: `<-'. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
94
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
95 #define left_width 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
96 #define left_height 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
97 static unsigned short left_bits[] = {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
98 0x18, 0x30, 0x60, 0xfc, 0xfc, 0x60, 0x30, 0x18};
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
99
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
100 /* Right truncation arrow bitmap `->'. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
101
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
102 #define right_width 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
103 #define right_height 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
104 static unsigned short right_bits[] = {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
105 0x18, 0x0c, 0x06, 0x3f, 0x3f, 0x06, 0x0c, 0x18};
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
106
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
107 /* Marker for continued lines. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
108
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
109 #define continued_width 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
110 #define continued_height 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
111 static unsigned short continued_bits[] = {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
112 0x3c, 0x3e, 0x03, 0x27, 0x3f, 0x3e, 0x3c, 0x3e};
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
113
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
114 /* Marker for continuation lines. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
115
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
116 #define continuation_width 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
117 #define continuation_height 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
118 static unsigned short continuation_bits[] = {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
119 0x3c, 0x7c, 0xc0, 0xe4, 0xfc, 0x7c, 0x3c, 0x7c};
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
120
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
121 /* Overlay arrow bitmap. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
122
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
123 #if 0
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
124 /* A bomb. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
125 #define ov_width 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
126 #define ov_height 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
127 static unsigned short ov_bits[] = {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
128 0x0c, 0x10, 0x3c, 0x7e, 0x5e, 0x5e, 0x46, 0x3c};
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
129 #else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
130 /* A triangular arrow. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
131 #define ov_width 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
132 #define ov_height 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
133 static unsigned short ov_bits[] = {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
134 0xc0, 0xf0, 0xf8, 0xfc, 0xfc, 0xf8, 0xf0, 0xc0};
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
135
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
136 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
137
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
138 extern Lisp_Object Qhelp_echo;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
139
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
140
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
141 /* Non-zero means Emacs uses toolkit scroll bars. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
142
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
143 int x_toolkit_scroll_bars_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
144
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
145 /* If a string, w32_read_socket generates an event to display that string.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
146 (The display is done in read_char.) */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
147
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
148 static Lisp_Object help_echo;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
149
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
150 /* Temporary variable for w32_read_socket. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
151
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
152 static Lisp_Object previous_help_echo;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
153
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
154 /* Non-zero means that a HELP_EVENT has been generated since Emacs
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
155 start. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
156
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
157 static int any_help_event_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
158
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
159 /* Non-zero means draw block and hollow cursor as wide as the glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
160 under it. For example, if a block cursor is over a tab, it will be
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
161 drawn as wide as that tab on the display. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
162
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
163 int x_stretch_cursor_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
164
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
165 #define CP_DEFAULT 1004
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
166
21875
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
167 extern unsigned int msh_mousewheel;
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
168
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
169 extern void free_frame_menubar ();
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
170
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
171 extern Lisp_Object Vwindow_system;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
172
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
173 #define x_any_window_to_frame x_window_to_frame
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
174 #define x_top_window_to_frame x_window_to_frame
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
175
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
176
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
177 /* This is display since w32 does not support multiple ones. */
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
178 struct w32_display_info one_w32_display_info;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
179
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
180 /* This is a list of cons cells, each of the form (NAME . FONT-LIST-CACHE),
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
181 one for each element of w32_display_list and in the same order.
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
182 NAME is the name of the frame.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
183 FONT-LIST-CACHE records previous values returned by x-list-fonts. */
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
184 Lisp_Object w32_display_name_list;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
185
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
186 /* Frame being updated by update_frame. This is declared in term.c.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
187 This is set by update_begin and looked at by all the
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
188 w32 functions. It is zero while not inside an update.
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
189 In that case, the w32 functions assume that `SELECTED_FRAME ()'
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
190 is the frame to apply to. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
191 extern struct frame *updating_frame;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
192
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
193 /* This is a frame waiting to be autoraised, within w32_read_socket. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
194 struct frame *pending_autoraise_frame;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
195
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
196 /* Nominal cursor position -- where to draw output.
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
197 HPOS and VPOS are window relative glyph matrix coordinates.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
198 X and Y are window relative pixel coordinates. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
199
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
200 struct cursor_pos output_cursor;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
201
23639
516fc58a7b7b (w32_enable_unicode_output): Rename from
Geoff Voelker <voelker@cs.washington.edu>
parents: 23638
diff changeset
202 /* Flag to enable Unicode output in case users wish to use programs
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
203 like Twinbridge on '95 rather than installed system level support
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
204 for Far East languages. */
23639
516fc58a7b7b (w32_enable_unicode_output): Rename from
Geoff Voelker <voelker@cs.washington.edu>
parents: 23638
diff changeset
205 int w32_enable_unicode_output;
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
206
16884
36babc489b0c Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents: 16588
diff changeset
207 DWORD dwWindowsThreadId = 0;
36babc489b0c Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents: 16588
diff changeset
208 HANDLE hWindowsThread = NULL;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
209 DWORD dwMainThreadId = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
210 HANDLE hMainThread = NULL;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
211
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
212 #ifndef SIF_ALL
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
213 /* These definitions are new with Windows 95. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
214 #define SIF_RANGE 0x0001
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
215 #define SIF_PAGE 0x0002
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
216 #define SIF_POS 0x0004
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
217 #define SIF_DISABLENOSCROLL 0x0008
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
218 #define SIF_TRACKPOS 0x0010
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
219 #define SIF_ALL (SIF_RANGE | SIF_PAGE | SIF_POS | SIF_TRACKPOS)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
220
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
221 typedef struct tagSCROLLINFO
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
222 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
223 UINT cbSize;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
224 UINT fMask;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
225 int nMin;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
226 int nMax;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
227 UINT nPage;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
228 int nPos;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
229 int nTrackPos;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
230 } SCROLLINFO, FAR *LPSCROLLINFO;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
231 typedef SCROLLINFO CONST FAR *LPCSCROLLINFO;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
232 #endif /* SIF_ALL */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
233
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
234 /* Dynamic linking to new proportional scroll bar functions. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
235 int (PASCAL *pfnSetScrollInfo) (HWND hwnd, int fnBar, LPSCROLLINFO lpsi, BOOL fRedraw);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
236 BOOL (PASCAL *pfnGetScrollInfo) (HWND hwnd, int fnBar, LPSCROLLINFO lpsi);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
237
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
238 int vertical_scroll_bar_min_handle;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
239 int vertical_scroll_bar_top_border;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
240 int vertical_scroll_bar_bottom_border;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
241
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
242 int last_scroll_bar_drag_pos;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
243
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
244 /* Mouse movement. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
245
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
246 /* Where the mouse was last time we reported a mouse event. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
247 FRAME_PTR last_mouse_frame;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
248 static RECT last_mouse_glyph;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
249 static Lisp_Object last_mouse_press_frame;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
250
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
251 Lisp_Object Vw32_num_mouse_buttons;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
252
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
253 Lisp_Object Vw32_swap_mouse_buttons;
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
254
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
255 /* Control whether x_raise_frame also sets input focus. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
256 Lisp_Object Vw32_grab_focus_on_raise;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
257
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
258 /* Control whether Caps Lock affects non-ascii characters. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
259 Lisp_Object Vw32_capslock_is_shiftlock;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
260
21614
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
261 /* Control whether right-alt and left-ctrl should be recognized as AltGr. */
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
262 Lisp_Object Vw32_recognize_altgr;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
263
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
264 /* The scroll bar in which the last motion event occurred.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
265
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
266 If the last motion event occurred in a scroll bar, we set this
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
267 so w32_mouse_position can know whether to report a scroll bar motion or
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
268 an ordinary motion.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
269
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
270 If the last motion event didn't occur in a scroll bar, we set this
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
271 to Qnil, to tell w32_mouse_position to return an ordinary motion event. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
272 Lisp_Object last_mouse_scroll_bar;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
273 int last_mouse_scroll_bar_pos;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
274
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
275 /* This is a hack. We would really prefer that w32_mouse_position would
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
276 return the time associated with the position it returns, but there
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
277 doesn't seem to be any way to wrest the timestamp from the server
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
278 along with the position query. So, we just keep track of the time
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
279 of the last movement we received, and return that in hopes that
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
280 it's somewhat accurate. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
281 Time last_mouse_movement_time;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
282
24131
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
283 /* Associative list linking character set strings to Windows codepages. */
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
284 Lisp_Object Vw32_charset_to_codepage_alist;
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
285
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
286 /* Incremented by w32_read_socket whenever it really tries to read events. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
287 #ifdef __STDC__
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
288 static int volatile input_signal_count;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
289 #else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
290 static int input_signal_count;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
291 #endif
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
292
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
293 extern Lisp_Object Vcommand_line_args, Vsystem_name;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
294
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
295 extern Lisp_Object Qface, Qmouse_face;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
296
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
297 extern int errno;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
298
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
299 /* A mask of extra modifier bits to put into every keyboard char. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
300 extern int extra_keyboard_modifiers;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
301
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
302 /* Enumeration for overriding/changing the face to use for drawing
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
303 glyphs in x_draw_glyphs. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
304
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
305 enum draw_glyphs_face
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
306 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
307 DRAW_NORMAL_TEXT,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
308 DRAW_INVERSE_VIDEO,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
309 DRAW_CURSOR,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
310 DRAW_MOUSE_FACE,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
311 DRAW_IMAGE_RAISED,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
312 DRAW_IMAGE_SUNKEN
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
313 };
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
314
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
315 static void x_update_window_end P_ ((struct window *, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
316 static void frame_to_window_pixel_xy P_ ((struct window *, int *, int *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
317 void w32_delete_display P_ ((struct w32_display_info *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
318 static int fast_find_position P_ ((struct window *, int, int *, int *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
319 int *, int *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
320 static void set_output_cursor P_ ((struct cursor_pos *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
321 static struct glyph *x_y_to_hpos_vpos P_ ((struct window *, int, int,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
322 int *, int *, int *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
323 static void note_mode_line_highlight P_ ((struct window *, int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
324 static void x_check_font P_ ((struct frame *, XFontStruct *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
325 static void note_mouse_highlight P_ ((struct frame *, int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
326 static void note_tool_bar_highlight P_ ((struct frame *f, int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
327 static void w32_handle_tool_bar_click P_ ((struct frame *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
328 struct input_event *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
329 static void show_mouse_face P_ ((struct w32_display_info *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
330 enum draw_glyphs_face));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
331 void clear_mouse_face P_ ((struct w32_display_info *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
332
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
333 void x_lower_frame P_ ((struct frame *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
334 void x_scroll_bar_clear P_ ((struct frame *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
335 void x_wm_set_size_hint P_ ((struct frame *, long, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
336 void x_raise_frame P_ ((struct frame *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
337 void x_set_window_size P_ ((struct frame *, int, int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
338 void x_wm_set_window_state P_ ((struct frame *, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
339 void x_wm_set_icon_pixmap P_ ((struct frame *, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
340 void w32_initialize P_ ((void));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
341 static void x_font_min_bounds P_ ((XFontStruct *, int *, int *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
342 int x_compute_min_glyph_bounds P_ ((struct frame *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
343 static void x_draw_phys_cursor_glyph P_ ((struct window *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
344 struct glyph_row *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
345 enum draw_glyphs_face));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
346 static void x_update_end P_ ((struct frame *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
347 static void w32_frame_up_to_date P_ ((struct frame *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
348 static void w32_reassert_line_highlight P_ ((int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
349 static void x_change_line_highlight P_ ((int, int, int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
350 static void w32_set_terminal_modes P_ ((void));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
351 static void w32_reset_terminal_modes P_ ((void));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
352 static void w32_cursor_to P_ ((int, int, int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
353 static void x_write_glyphs P_ ((struct glyph *, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
354 static void x_clear_end_of_line P_ ((int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
355 static void x_clear_frame P_ ((void));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
356 static void x_clear_cursor P_ ((struct window *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
357 static void frame_highlight P_ ((struct frame *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
358 static void frame_unhighlight P_ ((struct frame *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
359 static void w32_new_focus_frame P_ ((struct w32_display_info *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
360 struct frame *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
361 static void w32_frame_rehighlight P_ ((struct frame *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
362 static void x_frame_rehighlight P_ ((struct w32_display_info *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
363 static void x_draw_hollow_cursor P_ ((struct window *, struct glyph_row *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
364 static void x_draw_bar_cursor P_ ((struct window *, struct glyph_row *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
365 static int w32_intersect_rectangles P_ ((RECT *, RECT *, RECT *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
366 static void expose_frame P_ ((struct frame *, int, int, int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
367 static void expose_window_tree P_ ((struct window *, RECT *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
368 static void expose_window P_ ((struct window *, RECT *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
369 static void expose_area P_ ((struct window *, struct glyph_row *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
370 RECT *, enum glyph_row_area));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
371 static void expose_line P_ ((struct window *, struct glyph_row *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
372 RECT *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
373 void x_update_cursor P_ ((struct frame *, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
374 static void x_update_cursor_in_window_tree P_ ((struct window *, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
375 static void x_update_window_cursor P_ ((struct window *, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
376 static void x_erase_phys_cursor P_ ((struct window *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
377 void x_display_cursor P_ ((struct window *w, int, int, int, int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
378 void x_display_and_set_cursor P_ ((struct window *, int, int, int, int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
379 static void w32_draw_bitmap P_ ((struct window *, HDC hdc, struct glyph_row *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
380 enum bitmap_type));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
381 static int x_phys_cursor_in_rect_p P_ ((struct window *, RECT *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
382 static void x_draw_row_bitmaps P_ ((struct window *, struct glyph_row *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
383 static void note_overwritten_text_cursor P_ ((struct window *, int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
384 static void w32_clip_to_row P_ ((struct window *, struct glyph_row *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
385 HDC, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
386
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
387 static Lisp_Object Qvendor_specific_keysyms;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
388
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
389
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
390 #if 0
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
391 /* This is a function useful for recording debugging information
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
392 about the sequence of occurrences in this file. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
393
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
394 struct record
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
395 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
396 char *locus;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
397 int type;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
398 };
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
399
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
400 struct record event_record[100];
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
401
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
402 int event_record_index;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
403
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
404 record_event (locus, type)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
405 char *locus;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
406 int type;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
407 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
408 if (event_record_index == sizeof (event_record) / sizeof (struct record))
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
409 event_record_index = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
410
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
411 event_record[event_record_index].locus = locus;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
412 event_record[event_record_index].type = type;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
413 event_record_index++;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
414 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
415
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
416 #endif /* 0 */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
417
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
418
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
419 void XChangeGC (void * ignore, XGCValues* gc, unsigned long mask,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
420 XGCValues *xgcv)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
421 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
422 if (mask & GCForeground)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
423 gc->foreground = xgcv->foreground;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
424 if (mask & GCBackground)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
425 gc->background = xgcv->background;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
426 if (mask & GCFont)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
427 gc->font = xgcv->font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
428 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
429
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
430 XGCValues *XCreateGC (void * ignore, Window window, unsigned long mask,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
431 XGCValues *xgcv)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
432 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
433 XGCValues *gc = (XGCValues *) xmalloc (sizeof (XGCValues));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
434 bzero (gc, sizeof (XGCValues));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
435
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
436 XChangeGC (ignore, gc, mask, xgcv);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
437
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
438 return gc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
439 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
440
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
441 void XGetGCValues (void* ignore, XGCValues *gc,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
442 unsigned long mask, XGCValues *xgcv)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
443 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
444 XChangeGC (ignore, xgcv, mask, gc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
445 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
446
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
447 void XTextExtents16 (XFontStruct *font, wchar_t *text, int nchars,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
448 int *direction,int *font_ascent,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
449 int *font_descent, XCharStruct *cs)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
450 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
451 /* NTEMACS_TODO: Use GetTextMetrics to do this and inline it below. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
452 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
453
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
454 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
455 w32_set_clip_rectangle (HDC hdc, RECT *rect)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
456 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
457 if (rect)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
458 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
459 HRGN clip_region = CreateRectRgnIndirect (rect);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
460 SelectClipRgn (hdc, clip_region);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
461 DeleteObject (clip_region);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
462 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
463 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
464 SelectClipRgn (hdc, NULL);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
465 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
466
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
467 /* Return the struct w32_display_info. */
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
468
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
469 struct w32_display_info *
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
470 w32_display_info_for_display ()
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
471 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
472 return (&one_w32_display_info);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
473 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
474
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
475
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
476 /* Draw a hollow rectangle at the specified position. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
477 void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
478 w32_draw_rectangle (HDC hdc, XGCValues *gc, int x, int y,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
479 int width, int height)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
480 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
481 HBRUSH hb, oldhb;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
482 HPEN hp, oldhp;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
483
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
484 hb = CreateSolidBrush (gc->background);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
485 hp = CreatePen (PS_SOLID, 0, gc->foreground);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
486 oldhb = SelectObject (hdc, hb);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
487 oldhp = SelectObject (hdc, hp);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
488
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
489 Rectangle (hdc, x, y, x + width, y + height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
490
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
491 SelectObject (hdc, oldhb);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
492 SelectObject (hdc, oldhp);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
493 DeleteObject (hb);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
494 DeleteObject (hp);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
495 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
496
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
497 /* Draw a filled rectangle at the specified position. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
498 void
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
499 w32_fill_rect (f, hdc, pix, lprect)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
500 FRAME_PTR f;
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
501 HDC hdc;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
502 COLORREF pix;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
503 RECT * lprect;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
504 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
505 HBRUSH hb;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
506 RECT rect;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
507
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
508 hb = CreateSolidBrush (pix);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
509 FillRect (hdc, lprect, hb);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
510 DeleteObject (hb);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
511 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
512
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
513 void
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
514 w32_clear_window (f)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
515 FRAME_PTR f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
516 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
517 RECT rect;
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
518 HDC hdc = get_frame_dc (f);
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
519
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
520 GetClientRect (FRAME_W32_WINDOW (f), &rect);
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
521 w32_clear_rect (f, hdc, &rect);
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
522 release_frame_dc (f, hdc);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
523 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
524
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
525
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
526 /***********************************************************************
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
527 Starting and ending an update
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
528 ***********************************************************************/
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
529
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
530 /* Start an update of frame F. This function is installed as a hook
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
531 for update_begin, i.e. it is called when update_begin is called.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
532 This function is called prior to calls to x_update_window_begin for
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
533 each window being updated. Currently, there is nothing to do here
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
534 because all interesting stuff is done on a window basis. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
535
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
536 static void
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
537 x_update_begin (f)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
538 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
539 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
540 /* Nothing to do. We have to do something though, otherwise the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
541 function gets optimized away and the hook is no longer valid. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
542 struct frame *cf = f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
543 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
544
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
545
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
546 /* Start update of window W. Set the global variable updated_window
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
547 to the window being updated and set output_cursor to the cursor
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
548 position of W. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
549
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
550 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
551 x_update_window_begin (w)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
552 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
553 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
554 struct frame *f = XFRAME (WINDOW_FRAME (w));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
555 struct w32_display_info *display_info = FRAME_W32_DISPLAY_INFO (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
556
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
557 updated_window = w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
558 set_output_cursor (&w->cursor);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
559
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
560 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
561
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
562 /* Regenerate display palette before drawing if list of requested
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
563 colors has changed. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
564 if (display_info->regen_palette)
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
565 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
566 w32_regenerate_palette (f);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
567 display_info->regen_palette = FALSE;
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
568 }
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
569
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
570 if (f == display_info->mouse_face_mouse_frame)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
571 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
572 /* Don't do highlighting for mouse motion during the update. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
573 display_info->mouse_face_defer = 1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
574
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
575 /* If the frame needs to be redrawn,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
576 simply forget about any prior mouse highlighting. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
577 if (FRAME_GARBAGED_P (f))
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
578 display_info->mouse_face_window = Qnil;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
579
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
580 /* Can we tell that this update does not affect the window
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
581 where the mouse highlight is? If so, no need to turn off.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
582 Likewise, don't do anything if the frame is garbaged;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
583 in that case, the frame's current matrix that we would use
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
584 is all wrong, and we will redisplay that line anyway. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
585 if (!NILP (display_info->mouse_face_window)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
586 && w == XWINDOW (display_info->mouse_face_window))
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
587 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
588 int i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
589
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
590 for (i = 0; i < w->desired_matrix->nrows; ++i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
591 if (MATRIX_ROW_ENABLED_P (w->desired_matrix, i))
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
592 break;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
593
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
594 if (i < w->desired_matrix->nrows)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
595 clear_mouse_face (display_info);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
596 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
597 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
598
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
599 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
600 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
601
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
602
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
603 /* Draw a vertical window border to the right of window W if W doesn't
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
604 have vertical scroll bars. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
605
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
606 static void
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
607 x_draw_vertical_border (w)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
608 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
609 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
610 struct frame *f = XFRAME (WINDOW_FRAME (w));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
611
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
612 /* Redraw borders between horizontally adjacent windows. Don't
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
613 do it for frames with vertical scroll bars because either the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
614 right scroll bar of a window, or the left scroll bar of its
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
615 neighbor will suffice as a border. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
616 if (!WINDOW_RIGHTMOST_P (w)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
617 && !FRAME_HAS_VERTICAL_SCROLL_BARS (f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
618 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
619 RECT r;
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
620 HDC hdc;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
621
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
622 window_box_edges (w, -1, &r.left, &r.top, &r.right, &r.bottom);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
623 r.left = r.right + FRAME_X_RIGHT_FLAGS_AREA_WIDTH (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
624 r.right = r.left + 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
625 r.bottom -= 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
626
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
627 hdc = get_frame_dc (f);
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
628 w32_fill_rect (f, hdc, FRAME_FOREGROUND_PIXEL (f), r);
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
629 release_frame_dc (f, hdc);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
630 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
631 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
632
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
633
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
634 /* End update of window W (which is equal to updated_window). Draw
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
635 vertical borders between horizontally adjacent windows, and display
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
636 W's cursor if CURSOR_ON_P is non-zero. W may be a menu bar
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
637 pseudo-window in case we don't have X toolkit support. Such
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
638 windows don't have a cursor, so don't display it here. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
639
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
640 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
641 x_update_window_end (w, cursor_on_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
642 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
643 int cursor_on_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
644 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
645 if (!w->pseudo_window_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
646 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
647 BLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
648 if (cursor_on_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
649 x_display_and_set_cursor (w, 1, output_cursor.hpos,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
650 output_cursor.vpos,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
651 output_cursor.x, output_cursor.y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
652 x_draw_vertical_border (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
653 UNBLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
654 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
655
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
656 updated_window = NULL;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
657 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
658
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
659 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
660 x_update_end (f)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
661 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
662 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
663 /* Mouse highlight may be displayed again. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
664 FRAME_W32_DISPLAY_INFO (f)->mouse_face_defer = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
665 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
666
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
667 /* This function is called from various places in xdisp.c whenever a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
668 complete update has been performed. The global variable
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
669 updated_window is not available here. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
670
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
671 static void
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
672 w32_frame_up_to_date (f)
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
673 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
674 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
675 if (FRAME_W32_P (f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
676 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
677 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
678 if (dpyinfo->mouse_face_deferred_gc
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
679 || f == dpyinfo->mouse_face_mouse_frame)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
680 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
681 BLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
682 if (dpyinfo->mouse_face_mouse_frame)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
683 note_mouse_highlight (dpyinfo->mouse_face_mouse_frame,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
684 dpyinfo->mouse_face_mouse_x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
685 dpyinfo->mouse_face_mouse_y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
686 dpyinfo->mouse_face_deferred_gc = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
687 UNBLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
688 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
689 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
690 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
691
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
692
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
693 /* Draw truncation mark bitmaps, continuation mark bitmaps, overlay
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
694 arrow bitmaps, or clear the areas where they would be displayed
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
695 before DESIRED_ROW is made current. The window being updated is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
696 found in updated_window. This function It is called from
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
697 update_window_line only if it is known that there are differences
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
698 between bitmaps to be drawn between current row and DESIRED_ROW. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
699
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
700 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
701 x_after_update_window_line (desired_row)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
702 struct glyph_row *desired_row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
703 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
704 struct window *w = updated_window;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
705
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
706 xassert (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
707
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
708 if (!desired_row->mode_line_p && !w->pseudo_window_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
709 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
710 BLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
711 x_draw_row_bitmaps (w, desired_row);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
712
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
713 /* When a window has disappeared, make sure that no rest of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
714 full-width rows stays visible in the internal border. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
715 if (windows_or_buffers_changed)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
716 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
717 struct frame *f = XFRAME (w->frame);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
718 int width = FRAME_INTERNAL_BORDER_WIDTH (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
719 int height = desired_row->visible_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
720 int x = (window_box_right (w, -1)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
721 + FRAME_X_RIGHT_FLAGS_AREA_WIDTH (f));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
722 int y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, desired_row->y));
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
723 HDC hdc = get_frame_dc (f);
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
724
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
725 w32_clear_area (f, hdc, x, y, width, height);
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
726 release_frame_dc (f, hdc);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
727 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
728
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
729 UNBLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
730 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
731 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
732
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
733
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
734 /* Draw the bitmap WHICH in one of the areas to the left or right of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
735 window W. ROW is the glyph row for which to display the bitmap; it
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
736 determines the vertical position at which the bitmap has to be
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
737 drawn. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
738
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
739 static void
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
740 w32_draw_bitmap (w, hdc, row, which)
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
741 struct window *w;
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
742 HDC hdc;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
743 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
744 enum bitmap_type which;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
745 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
746 struct frame *f = XFRAME (WINDOW_FRAME (w));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
747 Window window = FRAME_W32_WINDOW (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
748 HDC compat_hdc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
749 int x, y, wd, h, dy;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
750 unsigned short *bits;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
751 HBITMAP pixmap;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
752 HBRUSH fg_brush, orig_brush;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
753 HANDLE horig_obj;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
754 struct face *face;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
755
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
756 /* Must clip because of partially visible lines. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
757 w32_clip_to_row (w, row, hdc, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
758
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
759 switch (which)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
760 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
761 case LEFT_TRUNCATION_BITMAP:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
762 wd = left_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
763 h = left_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
764 bits = left_bits;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
765 x = (WINDOW_TO_FRAME_PIXEL_X (w, 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
766 - wd
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
767 - (FRAME_X_LEFT_FLAGS_AREA_WIDTH (f) - wd) / 2);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
768 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
769
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
770 case OVERLAY_ARROW_BITMAP:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
771 wd = ov_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
772 h = ov_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
773 bits = ov_bits;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
774 x = (WINDOW_TO_FRAME_PIXEL_X (w, 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
775 - wd
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
776 - (FRAME_X_LEFT_FLAGS_AREA_WIDTH (f) - wd) / 2);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
777 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
778
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
779 case RIGHT_TRUNCATION_BITMAP:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
780 wd = right_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
781 h = right_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
782 bits = right_bits;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
783 x = window_box_right (w, -1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
784 x += (FRAME_X_RIGHT_FLAGS_AREA_WIDTH (f) - wd) / 2;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
785 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
786
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
787 case CONTINUED_LINE_BITMAP:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
788 wd = continued_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
789 h = continued_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
790 bits = continued_bits;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
791 x = window_box_right (w, -1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
792 x += (FRAME_X_RIGHT_FLAGS_AREA_WIDTH (f) - wd) / 2;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
793 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
794
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
795 case CONTINUATION_LINE_BITMAP:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
796 wd = continuation_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
797 h = continuation_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
798 bits = continuation_bits;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
799 x = (WINDOW_TO_FRAME_PIXEL_X (w, 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
800 - wd
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
801 - (FRAME_X_LEFT_FLAGS_AREA_WIDTH (f) - wd) / 2);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
802 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
803
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
804 case ZV_LINE_BITMAP:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
805 wd = zv_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
806 h = zv_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
807 bits = zv_bits;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
808 x = (WINDOW_TO_FRAME_PIXEL_X (w, 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
809 - wd
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
810 - (FRAME_X_LEFT_FLAGS_AREA_WIDTH (f) - wd) / 2);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
811 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
812
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
813 default:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
814 abort ();
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
815 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
816
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
817 /* Convert to frame coordinates. Set dy to the offset in the row to
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
818 start drawing the bitmap. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
819 y = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
820 dy = (row->height - h) / 2;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
821
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
822 /* Draw the bitmap. I believe these small pixmaps can be cached
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
823 by the server. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
824 face = FACE_FROM_ID (f, BITMAP_AREA_FACE_ID);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
825 pixmap = CreateBitmap (wd, h, 1, 1, bits);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
826
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
827 compat_hdc = CreateCompatibleDC (hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
828 SaveDC (hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
829 fg_brush = CreateSolidBrush (FRAME_FOREGROUND_PIXEL (f));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
830 orig_brush = SelectObject (hdc, fg_brush);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
831 horig_obj = SelectObject (compat_hdc, pixmap);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
832 SetTextColor (hdc, FRAME_BACKGROUND_PIXEL (f));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
833 SetBkColor (hdc, FRAME_FOREGROUND_PIXEL (f));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
834 #if 0 /* From w32bdf.c (which is from Meadow). */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
835 BitBlt (hdc, x, y + dy, wd, h, compat_hdc, 0, 0, SRCCOPY);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
836 #else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
837 BitBlt (hdc, x, y + dy, wd, h, compat_hdc, 0, 0, 0xB8074A);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
838 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
839 SelectObject (compat_hdc, horig_obj);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
840 SelectObject (hdc, orig_brush);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
841 DeleteObject (pixmap);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
842 DeleteObject (fg_brush);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
843 DeleteDC (compat_hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
844 RestoreDC (hdc, -1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
845 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
846
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
847
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
848 /* Draw flags bitmaps for glyph row ROW on window W. Call this
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
849 function with input blocked. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
850
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
851 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
852 x_draw_row_bitmaps (w, row)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
853 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
854 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
855 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
856 struct frame *f = XFRAME (w->frame);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
857 enum bitmap_type bitmap;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
858 struct face *face;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
859 int header_line_height = -1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
860 HDC hdc = get_frame_dc (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
861
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
862 xassert (interrupt_input_blocked);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
863
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
864 /* If row is completely invisible, because of vscrolling, we
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
865 don't have to draw anything. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
866 if (row->visible_height <= 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
867 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
868
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
869 face = FACE_FROM_ID (f, BITMAP_AREA_FACE_ID);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
870 PREPARE_FACE_FOR_DISPLAY (f, face);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
871
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
872 /* Decide which bitmap to draw at the left side. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
873 if (row->overlay_arrow_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
874 bitmap = OVERLAY_ARROW_BITMAP;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
875 else if (row->truncated_on_left_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
876 bitmap = LEFT_TRUNCATION_BITMAP;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
877 else if (MATRIX_ROW_CONTINUATION_LINE_P (row))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
878 bitmap = CONTINUATION_LINE_BITMAP;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
879 else if (row->indicate_empty_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
880 bitmap = ZV_LINE_BITMAP;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
881 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
882 bitmap = NO_BITMAP;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
883
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
884 /* Clear flags area if no bitmap to draw or if bitmap doesn't fill
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
885 the flags area. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
886 if (bitmap == NO_BITMAP
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
887 || FRAME_FLAGS_BITMAP_WIDTH (f) < FRAME_X_LEFT_FLAGS_AREA_WIDTH (f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
888 || row->height > FRAME_FLAGS_BITMAP_HEIGHT (f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
889 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
890 /* If W has a vertical border to its left, don't draw over it. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
891 int border = ((XFASTINT (w->left) > 0
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
892 && !FRAME_HAS_VERTICAL_SCROLL_BARS (f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
893 ? 1 : 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
894 int left = window_box_left (w, -1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
895
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
896 if (header_line_height < 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
897 header_line_height = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
898
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
899 w32_fill_area (f, hdc, face->background,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
900 left - FRAME_X_LEFT_FLAGS_AREA_WIDTH (f) + border,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
901 WINDOW_TO_FRAME_PIXEL_Y (w, max (header_line_height,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
902 row->y)),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
903 FRAME_X_LEFT_FLAGS_AREA_WIDTH (f) - border,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
904 row->visible_height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
905 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
906
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
907 /* Draw the left bitmap. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
908 if (bitmap != NO_BITMAP)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
909 w32_draw_bitmap (w, hdc, row, bitmap);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
910
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
911 /* Decide which bitmap to draw at the right side. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
912 if (row->truncated_on_right_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
913 bitmap = RIGHT_TRUNCATION_BITMAP;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
914 else if (row->continued_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
915 bitmap = CONTINUED_LINE_BITMAP;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
916 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
917 bitmap = NO_BITMAP;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
918
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
919 /* Clear flags area if no bitmap to draw of if bitmap doesn't fill
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
920 the flags area. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
921 if (bitmap == NO_BITMAP
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
922 || FRAME_FLAGS_BITMAP_WIDTH (f) < FRAME_X_RIGHT_FLAGS_AREA_WIDTH (f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
923 || row->height > FRAME_FLAGS_BITMAP_HEIGHT (f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
924 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
925 int right = window_box_right (w, -1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
926
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
927 if (header_line_height < 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
928 header_line_height = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
929
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
930 w32_fill_area (f, hdc, face->background,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
931 right,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
932 WINDOW_TO_FRAME_PIXEL_Y (w, max (header_line_height,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
933 row->y)),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
934 FRAME_X_RIGHT_FLAGS_AREA_WIDTH (f),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
935 row->visible_height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
936 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
937
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
938 /* Draw the right bitmap. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
939 if (bitmap != NO_BITMAP)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
940 w32_draw_bitmap (w, hdc, row, bitmap);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
941
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
942 release_frame_dc (f, hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
943 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
944
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
945
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
946
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
947 /***********************************************************************
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
948 Line Highlighting
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
949 ***********************************************************************/
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
950
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
951 /* External interface to control of standout mode. Not used for W32
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
952 frames. Aborts when called. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
953
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
954 static void
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
955 w32_reassert_line_highlight (new, vpos)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
956 int new, vpos;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
957 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
958 abort ();
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
959 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
960
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
961 /* Call this when about to modify line at position VPOS and change
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
962 whether it is highlighted. Not used for W32 frames. Aborts when
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
963 called. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
964
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
965 static void
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
966 x_change_line_highlight (new_highlight, vpos, y, first_unused_hpos)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
967 int new_highlight, vpos, y, first_unused_hpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
968 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
969 abort ();
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
970 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
971
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
972 /* This is used when starting Emacs and when restarting after suspend.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
973 When starting Emacs, no window is mapped. And nothing must be done
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
974 to Emacs's own window if it is suspended (though that rarely happens). */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
975
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
976 static void
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
977 w32_set_terminal_modes (void)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
978 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
979 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
980
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
981 /* This is called when exiting or suspending Emacs.
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
982 Exiting will make the W32 windows go away, and suspending
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
983 requires no action. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
984
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
985 static void
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
986 w32_reset_terminal_modes (void)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
987 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
988 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
989
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
990
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
991 /***********************************************************************
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
992 Output Cursor
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
993 ***********************************************************************/
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
994
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
995 /* Set the global variable output_cursor to CURSOR. All cursor
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
996 positions are relative to updated_window. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
997 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
998 set_output_cursor (cursor)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
999 struct cursor_pos *cursor;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1000 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1001 output_cursor.hpos = cursor->hpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1002 output_cursor.vpos = cursor->vpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1003 output_cursor.x = cursor->x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1004 output_cursor.y = cursor->y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1005 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1006
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1007
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1008 /* Set a nominal cursor position.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1009
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1010 HPOS and VPOS are column/row positions in a window glyph matrix. X
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1011 and Y are window text area relative pixel positions.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1012
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1013 If this is done during an update, updated_window will contain the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1014 window that is being updated and the position is the future output
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1015 cursor position for that window. If updated_window is null, use
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1016 selected_window and display the cursor at the given position. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1017
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1018 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1019 w32_cursor_to (vpos, hpos, y, x)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1020 int vpos, hpos, y, x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1021 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1022 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1023
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1024 /* If updated_window is not set, work on selected_window. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1025 if (updated_window)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1026 w = updated_window;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1027 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1028 w = XWINDOW (selected_window);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1029
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1030 /* Set the output cursor. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1031 output_cursor.hpos = hpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1032 output_cursor.vpos = vpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1033 output_cursor.x = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1034 output_cursor.y = y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1035
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1036 /* If not called as part of an update, really display the cursor.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1037 This will also set the cursor position of W. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1038 if (updated_window == NULL)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1039 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1040 BLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1041 x_display_cursor (w, 1, hpos, vpos, x, y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1042 UNBLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1043 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1044 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1045
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1046
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1047 /***********************************************************************
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1048 Display Iterator
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1049 ***********************************************************************/
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1050
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1051 /* Function prototypes of this page. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1052
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1053 static struct face *x_get_glyph_face_and_encoding P_ ((struct frame *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1054 struct glyph *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1055 wchar_t *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1056 static struct face *x_get_char_face_and_encoding P_ ((struct frame *, int,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1057 int, wchar_t *, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1058 static XCharStruct *w32_per_char_metric P_ ((HDC hdc, XFontStruct *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1059 wchar_t *, int unicode_p));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1060 static void x_encode_char P_ ((int, wchar_t *, struct font_info *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1061 static void x_append_glyph P_ ((struct it *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1062 static void x_append_composite_glyph P_ ((struct it *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1063 static void x_append_stretch_glyph P_ ((struct it *it, Lisp_Object,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1064 int, int, double));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1065 static void x_produce_glyphs P_ ((struct it *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1066 static void x_produce_image_glyph P_ ((struct it *it));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1067
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1068
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1069 /* Dealing with bits of wchar_t as if they were an XChar2B. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1070 #define BUILD_WCHAR_T(byte1, byte2) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1071 ((wchar_t)((((byte1) & 0x00ff) << 8) | ((byte2) & 0x00ff)))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1072
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1073
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1074 #define BYTE1(ch) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1075 (((ch) & 0xff00) >> 8)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1076
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1077 #define BYTE2(ch) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1078 ((ch) & 0x00ff)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1079
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1080
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1081 /* Get metrics of character CHAR2B in FONT. Value is always non-null.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1082 If CHAR2B is not contained in FONT, the font's default character
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1083 metric is returned. If unicode_p is non-zero, use unicode functions,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1084 otherwise use ANSI functions. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1085
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1086 static INLINE XCharStruct *
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1087 w32_per_char_metric (hdc, font, char2b, unicode_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1088 HDC hdc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1089 XFontStruct *font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1090 wchar_t *char2b;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1091 int unicode_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1092 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1093 /* The result metric information. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1094 XCharStruct *pcm;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1095 ABC char_widths;
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1096 SIZE sz;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1097 BOOL retval;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1098
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1099 xassert (font && char2b);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1100
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1101 pcm = (XCharStruct *) xmalloc (sizeof (XCharStruct));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1102
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1103 if (font->hfont)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1104 SelectObject (hdc, font->hfont);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1105
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1106 if (unicode_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1107 retval = GetCharABCWidthsW (hdc, *char2b, *char2b, &char_widths);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1108 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1109 retval = GetCharABCWidthsA (hdc, *char2b, *char2b, &char_widths);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1110
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1111 if (retval)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1112 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1113 pcm->width = char_widths.abcA + char_widths.abcB + char_widths.abcC;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1114 pcm->lbearing = char_widths.abcA;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1115 pcm->rbearing = pcm->width - char_widths.abcC;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1116 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1117 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1118 {
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1119 /* Windows 9x does not implement GetCharABCWidthsW, so if that
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1120 failed, try GetTextExtentPoint32W, which is implemented and
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1121 at least gives us some of the info we are after (total
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1122 character width). */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1123 if (unicode_p)
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1124 retval = GetTextExtentPoint32W (hdc, char2b, 1, &sz);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1125
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1126 if (retval)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1127 {
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1128 pcm->width = sz.cx;
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1129 pcm->rbearing = sz.cx;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1130 pcm->lbearing = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1131 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1132 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1133 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1134 pcm->width = FONT_MAX_WIDTH (font);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1135 pcm->rbearing = FONT_MAX_WIDTH (font);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1136 pcm->lbearing = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1137 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1138 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1139
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1140 pcm->ascent = FONT_BASE (font);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1141 pcm->descent = FONT_DESCENT (font);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1142
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1143 return pcm;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1144 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1145
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1146
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1147 /* Encode CHAR2B using encoding information from FONT_INFO. CHAR2B is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1148 the two-byte form of C. Encoding is returned in *CHAR2B. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1149
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1150 static INLINE void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1151 x_encode_char (c, char2b, font_info)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1152 int c;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1153 wchar_t *char2b;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1154 struct font_info *font_info;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1155 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1156 int charset = CHAR_CHARSET (c);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1157 int codepage;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1158 XFontStruct *font = font_info->font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1159
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1160 /* FONT_INFO may define a scheme by which to encode byte1 and byte2.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1161 This may be either a program in a special encoder language or a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1162 fixed encoding. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1163 if (font_info->font_encoder)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1164 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1165 /* It's a program. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1166 struct ccl_program *ccl = font_info->font_encoder;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1167
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1168 if (CHARSET_DIMENSION (charset) == 1)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1169 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1170 ccl->reg[0] = charset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1171 ccl->reg[1] = BYTE2 (*char2b);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1172 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1173 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1174 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1175 ccl->reg[0] = charset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1176 ccl->reg[1] = BYTE1 (*char2b);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1177 ccl->reg[2] = BYTE2 (*char2b);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1178 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1179
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1180 ccl_driver (ccl, NULL, NULL, 0, 0, NULL);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1181
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1182 /* We assume that MSBs are appropriately set/reset by CCL
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1183 program. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1184 /* NTEMACS_TODO : Use GetFontLanguageInfo to determine if
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1185 font is double byte. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1186 #if 0
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1187 if (FONT_MAX_BYTE1 (font) == 0) /* 1-byte font */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1188 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1189 *char2b = BUILD_WCHAR_T (0, ccl->reg[1]);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1190 #if 0
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1191 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1192 *char2b = BUILD_WCHAR_T (ccl->reg[1], ccl->reg[2]);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1193 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1194 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1195 else if (font_info->encoding[charset])
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1196 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1197 /* Fixed encoding scheme. See fontset.h for the meaning of the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1198 encoding numbers. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1199 int enc = font_info->encoding[charset];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1200
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1201 if ((enc == 1 || enc == 2)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1202 && CHARSET_DIMENSION (charset) == 2)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1203 *char2b = BUILD_WCHAR_T (BYTE1 (*char2b) | 0x80, BYTE2 (*char2b));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1204
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1205 if (enc == 1 || enc == 3
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1206 || (enc == 4 && CHARSET_DIMENSION (charset) == 1))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1207 *char2b = BUILD_WCHAR_T (BYTE1 (*char2b), BYTE2 (*char2b) | 0x80);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1208 else if (enc == 4)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1209 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1210 int sjis1, sjis2;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1211
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1212 ENCODE_SJIS (BYTE1 (*char2b), BYTE2 (*char2b),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1213 sjis1, sjis2);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1214 *char2b = BUILD_WCHAR_T (sjis1, sjis2);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1215 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1216 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1217 codepage = w32_codepage_for_font (font_info->name);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1218
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1219 /* If charset is not ASCII or Latin-1, may need to move it into
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1220 Unicode space. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1221 if ( font && !font->bdf && w32_use_unicode_for_codepage (codepage)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1222 && charset != CHARSET_ASCII && charset != charset_latin_iso8859_1)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1223 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1224 char temp[3];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1225 temp[0] = BYTE1 (*char2b);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1226 temp[1] = BYTE2 (*char2b);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1227 temp[2] = '\0';
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1228 if (temp[0])
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1229 MultiByteToWideChar (codepage, 0, temp, 2, char2b, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1230 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1231 MultiByteToWideChar (codepage, 0, temp+1, 1, char2b, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1232 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1233 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1234
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1235
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1236 /* Get face and two-byte form of character C in face FACE_ID on frame
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1237 F. The encoding of C is returned in *CHAR2B. MULTIBYTE_P non-zero
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1238 means we want to display multibyte text. Value is a pointer to a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1239 realized face that is ready for display. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1240
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1241 static INLINE struct face *
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1242 x_get_char_face_and_encoding (f, c, face_id, char2b, multibyte_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1243 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1244 int c, face_id;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1245 wchar_t *char2b;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1246 int multibyte_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1247 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1248 struct face *face = FACE_FROM_ID (f, face_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1249
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1250 if (!multibyte_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1251 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1252 /* Unibyte case. We don't have to encode, but we have to make
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1253 sure to use a face suitable for unibyte. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1254 *char2b = BUILD_WCHAR_T (0, c);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1255
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1256 if (!FACE_SUITABLE_FOR_CHARSET_P (face, -1))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1257 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1258 face_id = FACE_FOR_CHARSET (f, face_id, -1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1259 face = FACE_FROM_ID (f, face_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1260 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1261 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1262 else if (c < 128 && face_id < BASIC_FACE_ID_SENTINEL)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1263 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1264 /* Case of ASCII in a face known to fit ASCII. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1265 *char2b = BUILD_WCHAR_T (0, c);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1266 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1267 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1268 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1269 int c1, c2, charset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1270
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1271 /* Split characters into bytes. If c2 is -1 afterwards, C is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1272 really a one-byte character so that byte1 is zero. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1273 SPLIT_CHAR (c, charset, c1, c2);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1274 if (c2 > 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1275 *char2b = BUILD_WCHAR_T (c1, c2);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1276 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1277 *char2b = BUILD_WCHAR_T (0, c1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1278
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1279 /* Get the face for displaying C. If `face' is not suitable for
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1280 charset, get the one that fits. (This can happen for the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1281 translations of a composition where the glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1282 specifies a face for the first component, but the other
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1283 components have a different charset.) */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1284 if (!FACE_SUITABLE_FOR_CHARSET_P (face, charset))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1285 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1286 face_id = FACE_FOR_CHARSET (f, face_id, charset);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1287 face = FACE_FROM_ID (f, face_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1288 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1289
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1290 /* Maybe encode the character in *CHAR2B. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1291 if (charset != CHARSET_ASCII)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1292 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1293 struct font_info *font_info
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1294 = FONT_INFO_FROM_ID (f, face->font_info_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1295 if (font_info)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1296 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1297 x_encode_char (c, char2b, font_info);
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1298 #if 0 /* NTEMACS_TODO: Isn't this undoing what we just did? Investigate. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1299 if (charset == charset_latin_iso8859_1)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1300 *char2b = BUILD_WCHAR_T (BYTE1 (*char2b),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1301 BYTE2 (*char2b) | 0x80);
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1302 #endif
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1303 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1304 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1305 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1306
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1307 /* Make sure X resources of the face are allocated. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1308 xassert (face != NULL);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1309 PREPARE_FACE_FOR_DISPLAY (f, face);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1310
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1311 return face;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1312 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1313
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1314
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1315 /* Get face and two-byte form of character glyph GLYPH on frame F.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1316 The encoding of GLYPH->u.ch is returned in *CHAR2B. Value is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1317 a pointer to a realized face that is ready for display. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1318
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1319 static INLINE struct face *
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1320 x_get_glyph_face_and_encoding (f, glyph, char2b)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1321 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1322 struct glyph *glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1323 wchar_t *char2b;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1324 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1325 struct face *face;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1326
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1327 xassert (glyph->type == CHAR_GLYPH);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1328 face = FACE_FROM_ID (f, glyph->face_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1329
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1330 if (!glyph->multibyte_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1331 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1332 /* Unibyte case. We don't have to encode, but we have to make
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1333 sure to use a face suitable for unibyte. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1334 *char2b = BUILD_WCHAR_T (0, glyph->u.ch);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1335 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1336 else if (glyph->u.ch < 128
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1337 && glyph->face_id < BASIC_FACE_ID_SENTINEL)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1338 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1339 /* Case of ASCII in a face known to fit ASCII. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1340 *char2b = BUILD_WCHAR_T (0, glyph->u.ch);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1341 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1342 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1343 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1344 int c1, c2, charset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1345
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1346 /* Split characters into bytes. If c2 is -1 afterwards, C is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1347 really a one-byte character so that byte1 is zero. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1348 SPLIT_CHAR (glyph->u.ch, charset, c1, c2);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1349 if (c2 > 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1350 *char2b = BUILD_WCHAR_T (c1, c2);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1351 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1352 *char2b = BUILD_WCHAR_T (0, c1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1353
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1354 /* Maybe encode the character in *CHAR2B. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1355 if (charset != CHARSET_ASCII)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1356 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1357 struct font_info *font_info
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1358 = FONT_INFO_FROM_ID (f, face->font_info_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1359 if (font_info)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1360 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1361 x_encode_char (glyph->u.ch, char2b, font_info);
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1362 #if 0 /* NTEMACS_TODO: Isn't this undoing what we just did? Investigate. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1363 if (charset == charset_latin_iso8859_1)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1364 *char2b = BUILD_WCHAR_T (BYTE1 (*char2b),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1365 BYTE2 (*char2b) | 0x80);
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1366 #endif
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1367 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1368 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1369 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1370
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1371 /* Make sure X resources of the face are allocated. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1372 xassert (face != NULL);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1373 PREPARE_FACE_FOR_DISPLAY (f, face);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1374 return face;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1375 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1376
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1377
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1378 /* Store one glyph for IT->char_to_display in IT->glyph_row.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1379 Called from x_produce_glyphs when IT->glyph_row is non-null. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1380
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1381 static INLINE void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1382 x_append_glyph (it)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1383 struct it *it;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1384 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1385 struct glyph *glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1386 enum glyph_row_area area = it->area;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1387
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1388 xassert (it->glyph_row);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1389 xassert (it->char_to_display != '\n' && it->char_to_display != '\t');
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1390
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1391 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1392 if (glyph < it->glyph_row->glyphs[area + 1])
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1393 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1394 /* Play it safe. If sub-structures of the glyph are not all the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1395 same size, it otherwise be that some bits stay set. This
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1396 would prevent a comparison with GLYPH_EQUAL_P. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1397 glyph->u.val = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1398
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1399 glyph->type = CHAR_GLYPH;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1400 glyph->pixel_width = it->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1401 glyph->u.ch = it->char_to_display;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1402 glyph->face_id = it->face_id;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1403 glyph->charpos = CHARPOS (it->position);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1404 glyph->object = it->object;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1405 glyph->left_box_line_p = it->start_of_box_run_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1406 glyph->right_box_line_p = it->end_of_box_run_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1407 glyph->voffset = it->voffset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1408 glyph->multibyte_p = it->multibyte_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1409 glyph->overlaps_vertically_p = (it->phys_ascent > it->ascent
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1410 || it->phys_descent > it->descent);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1411 ++it->glyph_row->used[area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1412 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1413 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1414
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1415 /* Store one glyph for the composition IT->cmp_id in IT->glyph_row.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1416 Called from x_produce_glyphs when IT->glyph_row is non-null. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1417
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1418 static INLINE void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1419 x_append_composite_glyph (it)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1420 struct it *it;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1421 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1422 struct glyph *glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1423 enum glyph_row_area area = it->area;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1424
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1425 xassert (it->glyph_row);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1426
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1427 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1428 if (glyph < it->glyph_row->glyphs[area + 1])
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1429 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1430 /* Play it safe. If sub-structures of the glyph are not all the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1431 same size, it otherwise be that some bits stay set. This
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1432 would prevent a comparison with GLYPH_EQUAL_P. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1433 glyph->u.val = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1434
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1435 glyph->type = COMPOSITE_GLYPH;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1436 glyph->pixel_width = it->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1437 glyph->u.cmp_id = it->cmp_id;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1438 glyph->face_id = it->face_id;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1439 glyph->charpos = CHARPOS (it->position);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1440 glyph->object = it->object;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1441 glyph->left_box_line_p = it->start_of_box_run_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1442 glyph->right_box_line_p = it->end_of_box_run_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1443 glyph->voffset = it->voffset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1444 glyph->multibyte_p = it->multibyte_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1445 glyph->overlaps_vertically_p = (it->phys_ascent > it->ascent
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1446 || it->phys_descent > it->descent);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1447 ++it->glyph_row->used[area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1448 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1449 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1450
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1451
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1452 /* Change IT->ascent and IT->height according to the setting of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1453 IT->voffset. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1454
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1455 static INLINE void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1456 take_vertical_position_into_account (it)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1457 struct it *it;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1458 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1459 if (it->voffset)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1460 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1461 if (it->voffset < 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1462 /* Increase the ascent so that we can display the text higher
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1463 in the line. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1464 it->ascent += abs (it->voffset);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1465 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1466 /* Increase the descent so that we can display the text lower
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1467 in the line. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1468 it->descent += it->voffset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1469 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1470 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1471
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1472
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1473 /* Produce glyphs/get display metrics for the image IT is loaded with.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1474 See the description of struct display_iterator in dispextern.h for
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1475 an overview of struct display_iterator. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1476
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1477 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1478 x_produce_image_glyph (it)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1479 struct it *it;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1480 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1481 struct image *img;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1482 struct face *face;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1483
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1484 xassert (it->what == IT_IMAGE);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1485
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1486 face = FACE_FROM_ID (it->f, it->face_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1487 img = IMAGE_FROM_ID (it->f, it->image_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1488 xassert (img);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1489
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1490 /* Make sure X resources of the face and image are loaded. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1491 PREPARE_FACE_FOR_DISPLAY (it->f, face);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1492 prepare_image_for_display (it->f, img);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1493
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1494 it->ascent = it->phys_ascent = IMAGE_ASCENT (img);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1495 it->descent = it->phys_descent = img->height + 2 * img->margin - it->ascent;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1496 it->pixel_width = img->width + 2 * img->margin;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1497
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1498 it->nglyphs = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1499
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1500 if (face->box != FACE_NO_BOX)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1501 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1502 it->ascent += face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1503 it->descent += face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1504
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1505 if (it->start_of_box_run_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1506 it->pixel_width += face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1507 if (it->end_of_box_run_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1508 it->pixel_width += face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1509 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1510
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1511 take_vertical_position_into_account (it);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1512
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1513 if (it->glyph_row)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1514 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1515 struct glyph *glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1516 enum glyph_row_area area = it->area;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1517
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1518 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1519 if (glyph < it->glyph_row->glyphs[area + 1])
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1520 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1521 glyph->type = IMAGE_GLYPH;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1522 glyph->u.img_id = img->id;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1523 glyph->face_id = it->face_id;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1524 glyph->pixel_width = it->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1525 glyph->charpos = CHARPOS (it->position);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1526 glyph->object = it->object;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1527 glyph->left_box_line_p = it->start_of_box_run_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1528 glyph->right_box_line_p = it->end_of_box_run_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1529 glyph->voffset = it->voffset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1530 glyph->multibyte_p = it->multibyte_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1531 ++it->glyph_row->used[area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1532 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1533 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1534 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1535
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1536
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1537 /* Append a stretch glyph to IT->glyph_row. OBJECT is the source
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1538 of the glyph, WIDTH and HEIGHT are the width and height of the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1539 stretch. ASCENT is the percentage/100 of HEIGHT to use for the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1540 ascent of the glyph (0 <= ASCENT <= 1). */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1541
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1542 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1543 x_append_stretch_glyph (it, object, width, height, ascent)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1544 struct it *it;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1545 Lisp_Object object;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1546 int width, height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1547 double ascent;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1548 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1549 struct glyph *glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1550 enum glyph_row_area area = it->area;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1551
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1552 xassert (ascent >= 0 && ascent <= 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1553
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1554 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1555 if (glyph < it->glyph_row->glyphs[area + 1])
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1556 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1557 glyph->type = STRETCH_GLYPH;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1558 glyph->u.stretch.ascent = height * ascent;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1559 glyph->u.stretch.height = height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1560 glyph->face_id = it->face_id;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1561 glyph->pixel_width = width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1562 glyph->charpos = CHARPOS (it->position);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1563 glyph->object = object;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1564 glyph->left_box_line_p = it->start_of_box_run_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1565 glyph->right_box_line_p = it->end_of_box_run_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1566 glyph->voffset = it->voffset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1567 glyph->multibyte_p = it->multibyte_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1568 ++it->glyph_row->used[area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1569 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1570 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1571
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1572
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1573 /* Produce a stretch glyph for iterator IT. IT->object is the value
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1574 of the glyph property displayed. The value must be a list
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1575 `(space KEYWORD VALUE ...)' with the following KEYWORD/VALUE pairs
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1576 being recognized:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1577
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1578 1. `:width WIDTH' specifies that the space should be WIDTH *
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1579 canonical char width wide. WIDTH may be an integer or floating
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1580 point number.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1581
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1582 2. `:relative-width FACTOR' specifies that the width of the stretch
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1583 should be computed from the width of the first character having the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1584 `glyph' property, and should be FACTOR times that width.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1585
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1586 3. `:align-to HPOS' specifies that the space should be wide enough
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1587 to reach HPOS, a value in canonical character units.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1588
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1589 Exactly one of the above pairs must be present.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1590
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1591 4. `:height HEIGHT' specifies that the height of the stretch produced
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1592 should be HEIGHT, measured in canonical character units.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1593
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1594 5. `:relative-height FACTOR' specifies that the height of the the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1595 stretch should be FACTOR times the height of the characters having
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1596 the glyph property.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1597
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1598 Either none or exactly one of 4 or 5 must be present.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1599
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1600 6. `:ascent ASCENT' specifies that ASCENT percent of the height
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1601 of the stretch should be used for the ascent of the stretch.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1602 ASCENT must be in the range 0 <= ASCENT <= 100. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1603
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1604 #define NUMVAL(X) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1605 ((INTEGERP (X) || FLOATP (X)) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1606 ? XFLOATINT (X) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1607 : - 1)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1608
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
1609
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
1610 static void
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1611 x_produce_stretch_glyph (it)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1612 struct it *it;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1613 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1614 /* (space :width WIDTH :height HEIGHT. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1615 extern Lisp_Object QCwidth, QCheight, QCascent, Qspace;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1616 extern Lisp_Object QCrelative_width, QCrelative_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1617 extern Lisp_Object QCalign_to;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1618 Lisp_Object prop, plist;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1619 double width = 0, height = 0, ascent = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1620 struct face *face = FACE_FROM_ID (it->f, it->face_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1621 XFontStruct *font = face->font ? face->font : FRAME_FONT (it->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1622
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1623 PREPARE_FACE_FOR_DISPLAY (it->f, face);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1624
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1625 /* List should start with `space'. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1626 xassert (CONSP (it->object) && EQ (XCAR (it->object), Qspace));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1627 plist = XCDR (it->object);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1628
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1629 /* Compute the width of the stretch. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1630 if (prop = Fplist_get (plist, QCwidth),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1631 NUMVAL (prop) > 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1632 /* Absolute width `:width WIDTH' specified and valid. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1633 width = NUMVAL (prop) * CANON_X_UNIT (it->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1634 else if (prop = Fplist_get (plist, QCrelative_width),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1635 NUMVAL (prop) > 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1636 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1637 /* Relative width `:relative-width FACTOR' specified and valid.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1638 Compute the width of the characters having the `glyph'
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1639 property. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1640 struct it it2;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1641 unsigned char *p = BYTE_POS_ADDR (IT_BYTEPOS (*it));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1642
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1643 it2 = *it;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1644 if (it->multibyte_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1645 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1646 int maxlen = ((IT_BYTEPOS (*it) >= GPT ? ZV : GPT)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1647 - IT_BYTEPOS (*it));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1648 it2.c = STRING_CHAR_AND_LENGTH (p, maxlen, it2.len);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1649 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1650 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1651 it2.c = *p, it2.len = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1652
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1653 it2.glyph_row = NULL;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1654 it2.what = IT_CHARACTER;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1655 x_produce_glyphs (&it2);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1656 width = NUMVAL (prop) * it2.pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1657 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1658 else if (prop = Fplist_get (plist, QCalign_to),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1659 NUMVAL (prop) > 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1660 width = NUMVAL (prop) * CANON_X_UNIT (it->f) - it->current_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1661 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1662 /* Nothing specified -> width defaults to canonical char width. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1663 width = CANON_X_UNIT (it->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1664
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1665 /* Compute height. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1666 if (prop = Fplist_get (plist, QCheight),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1667 NUMVAL (prop) > 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1668 height = NUMVAL (prop) * CANON_Y_UNIT (it->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1669 else if (prop = Fplist_get (plist, QCrelative_height),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1670 NUMVAL (prop) > 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1671 height = FONT_HEIGHT (font) * NUMVAL (prop);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1672 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1673 height = FONT_HEIGHT (font);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1674
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1675 /* Compute percentage of height used for ascent. If
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1676 `:ascent ASCENT' is present and valid, use that. Otherwise,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1677 derive the ascent from the font in use. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1678 if (prop = Fplist_get (plist, QCascent),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1679 NUMVAL (prop) > 0 && NUMVAL (prop) <= 100)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1680 ascent = NUMVAL (prop) / 100.0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1681 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1682 ascent = (double) FONT_BASE (font) / FONT_HEIGHT (font);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1683
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1684 if (width <= 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1685 width = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1686 if (height <= 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1687 height = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1688
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1689 if (it->glyph_row)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1690 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1691 Lisp_Object object = it->stack[it->sp - 1].string;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1692 if (!STRINGP (object))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1693 object = it->w->buffer;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1694 x_append_stretch_glyph (it, object, width, height, ascent);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1695 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1696
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1697 it->pixel_width = width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1698 it->ascent = it->phys_ascent = height * ascent;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1699 it->descent = it->phys_descent = height - it->ascent;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1700 it->nglyphs = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1701
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1702 if (face->box != FACE_NO_BOX)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1703 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1704 it->ascent += face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1705 it->descent += face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1706
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1707 if (it->start_of_box_run_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1708 it->pixel_width += face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1709 if (it->end_of_box_run_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1710 it->pixel_width += face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1711 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1712
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1713 take_vertical_position_into_account (it);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1714 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1715
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1716 /* Return proper value to be used as baseline offset of font that has
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1717 ASCENT and DESCENT to draw characters by the font at the vertical
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1718 center of the line of frame F.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1719
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1720 Here, out task is to find the value of BOFF in the following figure;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1721
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1722 -------------------------+-----------+-
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1723 -+-+---------+-+ | |
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1724 | | | | | |
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1725 | | | | F_ASCENT F_HEIGHT
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1726 | | | ASCENT | |
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1727 HEIGHT | | | | |
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1728 | | |-|-+------+-----------|------- baseline
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1729 | | | | BOFF | |
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1730 | |---------|-+-+ | |
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1731 | | | DESCENT | |
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1732 -+-+---------+-+ F_DESCENT |
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1733 -------------------------+-----------+-
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1734
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1735 -BOFF + DESCENT + (F_HEIGHT - HEIGHT) / 2 = F_DESCENT
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1736 BOFF = DESCENT + (F_HEIGHT - HEIGHT) / 2 - F_DESCENT
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1737 DESCENT = FONT->descent
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1738 HEIGHT = FONT_HEIGHT (FONT)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1739 F_DESCENT = (F->output_data.x->font->descent
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1740 - F->output_data.x->baseline_offset)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1741 F_HEIGHT = FRAME_LINE_HEIGHT (F)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1742 */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1743
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1744 #define VCENTER_BASELINE_OFFSET(FONT, F) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1745 (FONT_DESCENT (FONT) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1746 + (FRAME_LINE_HEIGHT ((F)) - FONT_HEIGHT ((FONT))) / 2 \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1747 - (FONT_DESCENT (FRAME_FONT (F)) - FRAME_BASELINE_OFFSET (F)))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1748
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1749 /* Produce glyphs/get display metrics for the display element IT is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1750 loaded with. See the description of struct display_iterator in
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1751 dispextern.h for an overview of struct display_iterator. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1752
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1753 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1754 x_produce_glyphs (it)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1755 struct it *it;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1756 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1757 if (it->what == IT_CHARACTER)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1758 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1759 wchar_t char2b;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1760 XFontStruct *font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1761 struct face *face;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1762 XCharStruct *pcm;
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1763 int font_not_found_p;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1764 struct font_info *font_info;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1765 int boff; /* baseline offset */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1766 HDC hdc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1767
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1768 hdc = get_frame_dc (it->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1769
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1770 /* Maybe translate single-byte characters to multibyte. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1771 it->char_to_display = it->c;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1772 if (unibyte_display_via_language_environment
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1773 && SINGLE_BYTE_CHAR_P (it->c)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1774 && (it->c >= 0240
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1775 || (it->c >= 0200
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1776 && !NILP (Vnonascii_translation_table))))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1777 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1778 it->char_to_display = unibyte_char_to_multibyte (it->c);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1779 it->charset = CHAR_CHARSET (it->char_to_display);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1780 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1781
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1782 /* Get face and font to use. Encode IT->char_to_display. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1783 face = x_get_char_face_and_encoding (it->f, it->char_to_display,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1784 it->face_id, &char2b,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1785 it->multibyte_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1786 font = face->font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1787
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1788 /* When no suitable font found, use the default font. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1789 font_not_found_p = font == NULL;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1790 if (font_not_found_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1791 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1792 font = FRAME_FONT (it->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1793 boff = it->f->output_data.w32->baseline_offset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1794 font_info = NULL;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1795 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1796 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1797 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1798 font_info = FONT_INFO_FROM_ID (it->f, face->font_info_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1799 boff = font_info->baseline_offset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1800 if (font_info->vertical_centering)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1801 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1802 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1803
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1804 if (font->hfont)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1805 SelectObject (hdc, font->hfont);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1806
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1807 if (it->char_to_display >= ' '
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1808 && (!it->multibyte_p || it->char_to_display < 128))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1809 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1810 /* Either unibyte or ASCII. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1811 int stretched_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1812
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1813 it->nglyphs = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1814
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1815 pcm = w32_per_char_metric (hdc, font, &char2b, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1816 it->ascent = FONT_BASE (font) + boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1817 it->descent = FONT_DESCENT (font) - boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1818 it->phys_ascent = pcm->ascent + boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1819 it->phys_descent = pcm->descent - boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1820 it->pixel_width = pcm->width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1821
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1822 /* If this is a space inside a region of text with
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1823 `space-width' property, change its width. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1824 stretched_p = it->char_to_display == ' ' && !NILP (it->space_width);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1825 if (stretched_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1826 it->pixel_width *= XFLOATINT (it->space_width);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1827
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1828 /* If face has a box, add the box thickness to the character
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1829 height. If character has a box line to the left and/or
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1830 right, add the box line width to the character's width. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1831 if (face->box != FACE_NO_BOX)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1832 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1833 int thick = face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1834
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1835 it->ascent += thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1836 it->descent += thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1837
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1838 if (it->start_of_box_run_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1839 it->pixel_width += thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1840 if (it->end_of_box_run_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1841 it->pixel_width += thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1842 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1843
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1844 /* If face has an overline, add the height of the overline
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1845 (1 pixel) and a 1 pixel margin to the character height. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1846 if (face->overline_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1847 it->ascent += 2;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1848
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1849 take_vertical_position_into_account (it);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1850
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1851 /* If we have to actually produce glyphs, do it. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1852 if (it->glyph_row)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1853 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1854 if (stretched_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1855 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1856 /* Translate a space with a `space-width' property
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1857 into a stretch glyph. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1858 double ascent = (double) FONT_BASE (font)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1859 / FONT_HEIGHT (font);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1860 x_append_stretch_glyph (it, it->object, it->pixel_width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1861 it->ascent + it->descent, ascent);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1862 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1863 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1864 x_append_glyph (it);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1865
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1866 /* If characters with lbearing or rbearing are displayed
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1867 in this line, record that fact in a flag of the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1868 glyph row. This is used to optimize X output code. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1869 if (pcm->lbearing < 0
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1870 || pcm->rbearing > pcm->width)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1871 it->glyph_row->contains_overlapping_glyphs_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1872 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1873 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1874 else if (it->char_to_display == '\n')
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1875 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1876 /* A newline has no width but we need the height of the line. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1877 it->pixel_width = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1878 it->nglyphs = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1879 it->ascent = it->phys_ascent = FONT_BASE (font) + boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1880 it->descent = it->phys_descent = FONT_DESCENT (font) - boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1881
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1882 if (face->box != FACE_NO_BOX)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1883 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1884 int thick = face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1885 it->ascent += thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1886 it->descent += thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1887 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1888 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1889 else if (it->char_to_display == '\t')
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1890 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1891 int tab_width = it->tab_width * CANON_X_UNIT (it->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1892 int x = (it->current_x
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1893 - it->prompt_width
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1894 + it->continuation_lines_width);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1895 int next_tab_x = ((1 + x + tab_width - 1) / tab_width) * tab_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1896
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1897 it->pixel_width = next_tab_x - x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1898 it->nglyphs = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1899 it->ascent = it->phys_ascent = FONT_BASE (font) + boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1900 it->descent = it->phys_descent = FONT_DESCENT (font) - boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1901
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1902 if (it->glyph_row)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1903 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1904 double ascent = (double) it->ascent / (it->ascent + it->descent);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1905 x_append_stretch_glyph (it, it->object, it->pixel_width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1906 it->ascent + it->descent, ascent);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1907 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1908 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1909 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1910 {
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1911 /* A multi-byte character.
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1912 If we found a font, this font should give us the right
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1913 metrics. If we didn't find a font, use the frame's
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1914 default font and calculate the width of the character
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1915 from the charset width; this is what old redisplay code
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1916 did. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1917 if (font_not_found_p)
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1918 {
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1919 wchar_t dummy = BUILD_WCHAR_T (0, 'X');
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1920
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1921 /* Get some metrics for the default font. */
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1922 pcm = w32_per_char_metric (hdc, font, &dummy, 0);
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1923
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1924 /* Ignore the width obtained above, and use the average
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1925 width of a character in the default font. */
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1926 it->pixel_width = FONT_WIDTH (font)
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1927 * CHARSET_WIDTH (it->charset);
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1928 }
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1929 else
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1930 {
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1931 pcm = w32_per_char_metric (hdc, font, &char2b, 1);
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1932 it->pixel_width = pcm->width;
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1933 }
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1934
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1935 it->nglyphs = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1936 it->ascent = FONT_BASE (font) + boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1937 it->descent = FONT_DESCENT (font) - boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1938 it->phys_ascent = pcm->ascent + boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1939 it->phys_descent = pcm->descent - boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1940 if (it->glyph_row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1941 && (pcm->lbearing < 0
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1942 || pcm->rbearing > pcm->width))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1943 it->glyph_row->contains_overlapping_glyphs_p = 1;
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
1944
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1945 if (face->box != FACE_NO_BOX)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1946 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1947 int thick = face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1948 it->ascent += thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1949 it->descent += thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1950
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1951 if (it->start_of_box_run_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1952 it->pixel_width += thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1953 if (it->end_of_box_run_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1954 it->pixel_width += thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1955 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1956
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1957 /* If face has an overline, add the height of the overline
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1958 (1 pixel) and a 1 pixel margin to the character height. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1959 if (face->overline_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1960 it->ascent += 2;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1961
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1962 take_vertical_position_into_account (it);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1963
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1964 if (it->glyph_row)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1965 x_append_glyph (it);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1966 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1967 release_frame_dc (it->f, hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1968 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1969 else if (it->what == IT_COMPOSITION)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1970 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1971 #if 0 /* NTEMACS_TODO: Composite glyphs. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1972 /* Note: A composition is represented as one glyph in the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1973 glyph matrix. There are no padding glyphs. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1974 XChar2b char2b;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1975 XFontStruct *font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1976 struct face *face;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1977 XCharStruct *pcm;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1978 int font_not_found_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1979 struct font_info *font_info;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1980 int boff; /* baseline offset */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1981 struct composition *cmp = composition_table[it->cmp_id];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1982
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1983 /* Maybe translate single-byte characters to multibyte. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1984 it->char_to_display = it->c;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1985 if (unibyte_display_via_language_environment
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1986 && SINGLE_BYTE_CHAR_P (it->c)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1987 && (it->c >= 0240
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1988 || (it->c >= 0200
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1989 && !NILP (Vnonascii_translation_table))))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1990 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1991 it->char_to_display = unibyte_char_to_multibyte (it->c);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1992 it->charset = CHAR_CHARSET (it->char_to_display);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1993 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1994
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1995 /* Get face and font to use. Encode IT->char_to_display. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1996 face = x_get_char_face_and_encoding (it->f, it->char_to_display,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1997 it->face_id, &char2b,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1998 it->multibyte_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1999 font = face->font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2000
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2001 /* When no suitable font found, use the default font. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2002 font_not_found_p = font == NULL;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2003 if (font_not_found_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2004 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2005 font = FRAME_FONT (it->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2006 boff = it->f->output_data.x->baseline_offset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2007 font_info = NULL;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2008 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2009 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2010 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2011 font_info = FONT_INFO_FROM_ID (it->f, face->font_info_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2012 boff = font_info->baseline_offset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2013 if (font_info->vertical_centering)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2014 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2015 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2016
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2017 /* There are no padding glyphs, so there is only one glyph to
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2018 produce for the composition. Important is that pixel_width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2019 ascent and descent are the values of what is drawn by
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2020 draw_glyphs (i.e. the values of the overall glyphs composed). */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2021 it->nglyphs = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2022
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2023 /* If we have not yet calculated pixel size data of glyphs of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2024 the composition for the current face font, calculate them
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2025 now. Theoretically, we have to check all fonts for the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2026 glyphs, but that requires much time and memory space. So,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2027 here we check only the font of the first glyph. This leads
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2028 to incorrect display very rarely, and C-l (recenter) can
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2029 correct the display anyway. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2030 if (cmp->font != (void *) font)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2031 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2032 /* Ascent and descent of the font of the first character of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2033 this composition (adjusted by baseline offset). Ascent
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2034 and descent of overall glyphs should not be less than
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2035 them respectively. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2036 int font_ascent = font->ascent + boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2037 int font_descent = font->descent - boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2038 /* Bounding box of the overall glyphs. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2039 int leftmost, rightmost, lowest, highest;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2040 int i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2041
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2042 cmp->font = (void *) font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2043
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2044 /* Initialize the bounding box. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2045 pcm = x_per_char_metric (font, &char2b);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2046 leftmost = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2047 rightmost = pcm->width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2048 lowest = - pcm->descent + boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2049 highest = pcm->ascent + boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2050 if (font_info
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2051 && font_info->default_ascent
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2052 && CHAR_TABLE_P (Vuse_default_ascent)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2053 && !NILP (Faref (Vuse_default_ascent,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2054 make_number (it->char_to_display))))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2055 highest = font_info->default_ascent + boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2056
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2057 /* Draw the first glyph at the normal position. It may be
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2058 shifted to right later if some other glyphs are drawn at
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2059 the left. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2060 cmp->offsets[0] = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2061 cmp->offsets[1] = boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2062
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2063 /* Set cmp->offsets for the remaining glyphs. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2064 for (i = 1; i < cmp->glyph_len; i++)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2065 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2066 int left, right, btm, top;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2067 int ch = COMPOSITION_GLYPH (cmp, i);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2068
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2069 face = x_get_char_face_and_encoding (it->f, ch,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2070 it->face_id, &char2b,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2071 it->multibyte_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2072 font = face->font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2073 if (font == NULL)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2074 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2075 font = FRAME_FONT (it->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2076 boff = it->f->output_data.x->baseline_offset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2077 font_info = NULL;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2078 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2079 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2080 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2081 font_info
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2082 = FONT_INFO_FROM_ID (it->f, face->font_info_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2083 boff = font_info->baseline_offset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2084 if (font_info->vertical_centering)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2085 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2086 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2087
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2088 pcm = x_per_char_metric (font, &char2b);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2089
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2090 if (cmp->method != COMPOSITION_WITH_RULE_ALTCHARS)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2091 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2092 /* Relative composition with or without
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2093 alternate chars. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2094 left = (leftmost + rightmost - pcm->width) / 2;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2095 btm = - pcm->descent + boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2096 if (font_info && font_info->relative_compose
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2097 && (! CHAR_TABLE_P (Vignore_relative_composition)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2098 || NILP (Faref (Vignore_relative_composition,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2099 make_number (ch)))))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2100 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2101
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2102 if (- pcm->descent
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2103 >= font_info->relative_compose)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2104 /* One extra pixel between two glyphs. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2105 btm = highest + 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2106 else if (pcm->ascent <= 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2107 /* One extra pixel between two glyphs. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2108 btm = lowest - 1 - pcm->ascent - pcm->descent;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2109 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2110 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2111 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2112 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2113 /* A composition rule is specified by an integer
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2114 value that encodes global and new reference
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2115 points (GREF and NREF). GREF and NREF are
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2116 specified by numbers as below:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2117
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2118 0---1---2 -- ascent
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2119 | |
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2120 | |
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2121 | |
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2122 9--10--11 -- center
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2123 | |
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2124 ---3---4---5--- baseline
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2125 | |
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2126 6---7---8 -- descent
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2127 */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2128 int rule = COMPOSITION_RULE (cmp, i);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2129 int gref, nref, grefx, grefy, nrefx, nrefy;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2130
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2131 COMPOSITION_DECODE_RULE (rule, gref, nref);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2132 grefx = gref % 3, nrefx = nref % 3;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2133 grefy = gref / 3, nrefy = nref / 3;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2134
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2135 left = (leftmost
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2136 + grefx * (rightmost - leftmost) / 2
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2137 - nrefx * pcm->width / 2);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2138 btm = ((grefy == 0 ? highest
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2139 : grefy == 1 ? 0
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2140 : grefy == 2 ? lowest
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2141 : (highest + lowest) / 2)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2142 - (nrefy == 0 ? pcm->ascent + pcm->descent
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2143 : nrefy == 1 ? pcm->descent - boff
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2144 : nrefy == 2 ? 0
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2145 : (pcm->ascent + pcm->descent) / 2));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2146 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2147
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2148 cmp->offsets[i * 2] = left;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2149 cmp->offsets[i * 2 + 1] = btm + pcm->descent;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2150
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2151 /* Update the bounding box of the overall glyphs. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2152 right = left + pcm->width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2153 top = btm + pcm->descent + pcm->ascent;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2154 if (left < leftmost)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2155 leftmost = left;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2156 if (right > rightmost)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2157 rightmost = right;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2158 if (top > highest)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2159 highest = top;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2160 if (btm < lowest)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2161 lowest = btm;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2162 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2163
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2164 /* If there are glyphs whose x-offsets are negative,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2165 shift all glyphs to the right and make all x-offsets
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2166 non-negative. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2167 if (leftmost < 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2168 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2169 for (i = 0; i < cmp->glyph_len; i++)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2170 cmp->offsets[i * 2] -= leftmost;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2171 rightmost -= leftmost;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2172 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2173
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2174 cmp->pixel_width = rightmost;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2175 cmp->ascent = highest;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2176 cmp->descent = - lowest;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2177 if (cmp->ascent < font_ascent)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2178 cmp->ascent = font_ascent;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2179 if (cmp->descent < font_descent)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2180 cmp->descent = font_descent;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2181 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2182
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2183 it->pixel_width = cmp->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2184 it->ascent = it->phys_ascent = cmp->ascent;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2185 it->descent = it->phys_descent = cmp->descent;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2186
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2187 if (face->box != FACE_NO_BOX)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2188 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2189 int thick = face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2190 it->ascent += thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2191 it->descent += thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2192
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2193 if (it->start_of_box_run_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2194 it->pixel_width += thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2195 if (it->end_of_box_run_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2196 it->pixel_width += thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2197 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2198
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2199 /* If face has an overline, add the height of the overline
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2200 (1 pixel) and a 1 pixel margin to the character height. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2201 if (face->overline_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2202 it->ascent += 2;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2203
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2204 take_vertical_position_into_account (it);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2205
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2206 if (it->glyph_row)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2207 x_append_composite_glyph (it);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2208 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2209 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2210 else if (it->what == IT_IMAGE)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2211 x_produce_image_glyph (it);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2212 else if (it->what == IT_STRETCH)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2213 x_produce_stretch_glyph (it);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2214
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2215 /* Accumulate dimensions. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2216 xassert (it->ascent >= 0 && it->descent > 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2217 if (it->area == TEXT_AREA)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2218 it->current_x += it->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2219
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2220 it->max_ascent = max (it->max_ascent, it->ascent);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2221 it->max_descent = max (it->max_descent, it->descent);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2222 it->max_phys_ascent = max (it->max_phys_ascent, it->phys_ascent);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2223 it->max_phys_descent = max (it->max_phys_descent, it->phys_descent);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2224 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2225
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2226
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2227 /* Estimate the pixel height of the mode or top line on frame F.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2228 FACE_ID specifies what line's height to estimate. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2229
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2230 int
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2231 x_estimate_mode_line_height (f, face_id)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2232 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2233 enum face_id face_id;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2234 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2235 int height = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2236
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2237 /* This function is called so early when Emacs starts that the face
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2238 cache and mode line face are not yet initialized. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2239 if (FRAME_FACE_CACHE (f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2240 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2241 struct face *face = FACE_FROM_ID (f, face_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2242 if (face)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2243 height = FONT_HEIGHT (face->font) + 2 * face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2244 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2245
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2246 return height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2247 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2248
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
2249
24131
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2250 /* Get the Windows codepage corresponding to the specified font. The
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2251 charset info in the font name is used to look up
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2252 w32-charset-to-codepage-alist. */
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
2253 int
24131
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2254 w32_codepage_for_font (char *fontname)
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
2255 {
24131
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2256 Lisp_Object codepage;
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2257 char charset_str[20], *charset, *end;
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2258
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2259 /* Extract charset part of font string. */
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2260 if (sscanf (fontname,
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2261 "-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%19s",
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2262 charset_str) == EOF)
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2263 return CP_DEFAULT;
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2264
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2265 /* Remove leading "*-". */
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2266 if (strncmp ("*-", charset_str, 2) == 0)
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2267 charset = charset_str + 2;
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2268 else
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2269 charset = charset_str;
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2270
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2271 /* Stop match at wildcard (including preceding '-'). */
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2272 if (end = strchr (charset, '*'))
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2273 {
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2274 if (end > charset && *(end-1) == '-')
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2275 end--;
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2276 *end = '\0';
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2277 }
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2278
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2279 codepage = Fcdr (Fassoc (build_string(charset),
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2280 Vw32_charset_to_codepage_alist));
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2281
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2282 if (INTEGERP (codepage))
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2283 return XINT (codepage);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
2284 else
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
2285 return CP_DEFAULT;
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
2286 }
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
2287
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
2288 BOOL
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
2289 w32_use_unicode_for_codepage (codepage)
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2290 int codepage;
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
2291 {
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
2292 /* If the current codepage is supported, use Unicode for output. */
23639
516fc58a7b7b (w32_enable_unicode_output): Rename from
Geoff Voelker <voelker@cs.washington.edu>
parents: 23638
diff changeset
2293 return (w32_enable_unicode_output
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
2294 && codepage != CP_DEFAULT && IsValidCodePage (codepage));
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
2295 }
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
2296
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
2297
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2298 /***********************************************************************
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2299 Glyph display
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2300 ***********************************************************************/
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2301
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2302 /* A sequence of glyphs to be drawn in the same face.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2303
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2304 This data structure is not really completely X specific, so it
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2305 could possibly, at least partially, be useful for other systems. It
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2306 is currently not part of the external redisplay interface because
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2307 it's not clear what other systems will need. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2308
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2309 struct glyph_string
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2310 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2311 /* X-origin of the string. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2312 int x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2313
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2314 /* Y-origin and y-position of the base line of this string. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2315 int y, ybase;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2316
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2317 /* The width of the string, not including a face extension. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2318 int width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2319
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2320 /* The width of the string, including a face extension. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2321 int background_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2322
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2323 /* The height of this string. This is the height of the line this
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2324 string is drawn in, and can be different from the height of the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2325 font the string is drawn in. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2326 int height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2327
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2328 /* Number of pixels this string overwrites in front of its x-origin.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2329 This number is zero if the string has an lbearing >= 0; it is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2330 -lbearing, if the string has an lbearing < 0. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2331 int left_overhang;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2332
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2333 /* Number of pixels this string overwrites past its right-most
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2334 nominal x-position, i.e. x + width. Zero if the string's
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2335 rbearing is <= its nominal width, rbearing - width otherwise. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2336 int right_overhang;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2337
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2338 /* The frame on which the glyph string is drawn. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2339 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2340
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2341 /* The window on which the glyph string is drawn. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2342 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2343
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2344 /* X display and window for convenience. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2345 Window window;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2346
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2347 /* The glyph row for which this string was built. It determines the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2348 y-origin and height of the string. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2349 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2350
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2351 /* The area within row. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2352 enum glyph_row_area area;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2353
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2354 /* Characters to be drawn, and number of characters. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2355 wchar_t *char2b;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2356 int nchars;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2357
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2358 /* Character set of this glyph string. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2359 int charset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2360
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2361 /* A face-override for drawing cursors, mouse face and similar. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2362 enum draw_glyphs_face hl;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2363
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2364 /* Face in which this string is to be drawn. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2365 struct face *face;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2366
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2367 /* Font in which this string is to be drawn. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2368 XFontStruct *font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2369
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2370 /* Font info for this string. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2371 struct font_info *font_info;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2372
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2373 /* Non-null means this string describes (part of) a composition.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2374 All characters from char2b are drawn composed. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2375 struct composition *cmp;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2376
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2377 /* Index of this glyph string's first character in the glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2378 definition of CMP. If this is zero, this glyph string describes
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2379 the first character of a composition. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2380 int gidx;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2381
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2382 /* 1 means this glyph strings face has to be drawn to the right end
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2383 of the window's drawing area. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2384 unsigned extends_to_end_of_line_p : 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2385
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2386 /* 1 means the background of this string has been drawn. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2387 unsigned background_filled_p : 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2388
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2389 /* 1 means glyph string must be drawn with 16-bit functions. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2390 unsigned two_byte_p : 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2391
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2392 /* 1 means that the original font determined for drawing this glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2393 string could not be loaded. The member `font' has been set to
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2394 the frame's default font in this case. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2395 unsigned font_not_found_p : 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2396
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2397 /* 1 means that the face in which this glyph string is drawn has a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2398 stipple pattern. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2399 unsigned stippled_p : 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2400
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2401 /* 1 means only the foreground of this glyph string must be drawn,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2402 and we should use the physical height of the line this glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2403 string appears in as clip rect. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2404 unsigned for_overlaps_p : 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2405
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2406 /* The GC to use for drawing this glyph string. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2407 XGCValues *gc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2408
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2409 HDC hdc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2410
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2411 /* A pointer to the first glyph in the string. This glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2412 corresponds to char2b[0]. Needed to draw rectangles if
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2413 font_not_found_p is 1. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2414 struct glyph *first_glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2415
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2416 /* Image, if any. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2417 struct image *img;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2418
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2419 struct glyph_string *next, *prev;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2420 };
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2421
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2422
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2423 /* Encapsulate the different ways of printing text under W32. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2424
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2425 void W32_TEXTOUT(s, x, y,chars,nchars)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2426 struct glyph_string * s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2427 int x, y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2428 wchar_t * chars;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2429 int nchars;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2430 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2431 int charset_dim = CHARSET_DIMENSION (s->charset);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2432
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2433 if (s->gc->font->bdf)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2434 w32_BDF_TextOut (s->gc->font->bdf, s->hdc,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2435 x, y, (char *) chars, charset_dim, nchars, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2436 else if (s->two_byte_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2437 ExtTextOutW (s->hdc, x, y, 0, NULL, chars, nchars, NULL);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2438 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2439 ExtTextOut (s->hdc, x, y, 0, NULL, (char *) chars,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2440 nchars * charset_dim, NULL);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2441 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2442
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2443 #if 0
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2444
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2445 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2446 x_dump_glyph_string (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2447 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2448 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2449 fprintf (stderr, "glyph string\n");
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2450 fprintf (stderr, " x, y, w, h = %d, %d, %d, %d\n",
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2451 s->x, s->y, s->width, s->height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2452 fprintf (stderr, " ybase = %d\n", s->ybase);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2453 fprintf (stderr, " hl = %d\n", s->hl);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2454 fprintf (stderr, " left overhang = %d, right = %d\n",
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2455 s->left_overhang, s->right_overhang);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2456 fprintf (stderr, " nchars = %d\n", s->nchars);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2457 fprintf (stderr, " extends to end of line = %d\n",
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2458 s->extends_to_end_of_line_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2459 fprintf (stderr, " font height = %d\n", FONT_HEIGHT (s->font));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2460 fprintf (stderr, " bg width = %d\n", s->background_width);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2461 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2462
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2463 #endif /* GLYPH_DEBUG */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2464
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2465
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2466
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2467 static void x_append_glyph_string_lists P_ ((struct glyph_string **,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2468 struct glyph_string **,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2469 struct glyph_string *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2470 struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2471 static void x_prepend_glyph_string_lists P_ ((struct glyph_string **,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2472 struct glyph_string **,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2473 struct glyph_string *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2474 struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2475 static void x_append_glyph_string P_ ((struct glyph_string **,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2476 struct glyph_string **,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2477 struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2478 static int x_left_overwritten P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2479 static int x_left_overwriting P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2480 static int x_right_overwritten P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2481 static int x_right_overwriting P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2482 static int x_fill_glyph_string P_ ((struct glyph_string *, int, int,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2483 int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2484 static void w32_init_glyph_string P_ ((struct glyph_string *, HDC hdc,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2485 wchar_t *, struct window *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2486 struct glyph_row *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2487 enum glyph_row_area, int,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2488 enum draw_glyphs_face));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2489 static int x_draw_glyphs P_ ((struct window *, int , struct glyph_row *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2490 enum glyph_row_area, int, int,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2491 enum draw_glyphs_face, int *, int *, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2492 static void x_set_glyph_string_clipping P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2493 static void x_set_glyph_string_gc P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2494 static void x_draw_glyph_string_background P_ ((struct glyph_string *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2495 int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2496 static void x_draw_glyph_string_foreground P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2497 static void x_draw_composite_glyph_string_foreground P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2498 static void x_draw_glyph_string_underline P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2499 static void x_draw_glyph_string_underline P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2500 static void x_draw_glyph_string_box P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2501 static void x_draw_glyph_string P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2502 static void x_compute_glyph_string_overhangs P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2503 static void x_set_cursor_gc P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2504 static void x_set_mode_line_face_gc P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2505 static void x_set_mouse_face_gc P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2506 static void w32_get_glyph_overhangs P_ ((HDC hdc, struct glyph *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2507 struct frame *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2508 int *, int *, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2509 static void x_compute_overhangs_and_x P_ ((struct glyph_string *, int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2510 static int w32_alloc_lighter_color (struct frame *, COLORREF *, double, int);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2511 static void w32_setup_relief_color P_ ((struct frame *, struct relief *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2512 double, int, COLORREF));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2513 static void x_setup_relief_colors P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2514 static void x_draw_image_glyph_string P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2515 static void x_draw_image_relief P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2516 static void x_draw_image_foreground P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2517 static void w32_draw_image_foreground_1 P_ ((struct glyph_string *, HBITMAP));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2518 static void x_fill_image_glyph_string P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2519 static void x_clear_glyph_string_rect P_ ((struct glyph_string *, int,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2520 int, int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2521 static void w32_draw_relief_rect P_ ((struct frame *, int, int, int, int,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2522 int, int, int, int, RECT *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2523 static void w32_draw_box_rect P_ ((struct glyph_string *, int, int, int, int,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2524 int, int, int, RECT *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2525 static void x_fix_overlapping_area P_ ((struct window *, struct glyph_row *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2526 enum glyph_row_area));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2527
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2528
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2529 /* Append the list of glyph strings with head H and tail T to the list
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2530 with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the result. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2531
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2532 static INLINE void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2533 x_append_glyph_string_lists (head, tail, h, t)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2534 struct glyph_string **head, **tail;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2535 struct glyph_string *h, *t;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2536 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2537 if (h)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2538 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2539 if (*head)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2540 (*tail)->next = h;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2541 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2542 *head = h;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2543 h->prev = *tail;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2544 *tail = t;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2545 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2546 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2547
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2548
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2549 /* Prepend the list of glyph strings with head H and tail T to the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2550 list with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2551 result. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2552
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2553 static INLINE void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2554 x_prepend_glyph_string_lists (head, tail, h, t)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2555 struct glyph_string **head, **tail;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2556 struct glyph_string *h, *t;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2557 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2558 if (h)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2559 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2560 if (*head)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2561 (*head)->prev = t;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2562 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2563 *tail = t;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2564 t->next = *head;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2565 *head = h;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2566 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2567 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2568
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2569
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2570 /* Append glyph string S to the list with head *HEAD and tail *TAIL.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2571 Set *HEAD and *TAIL to the resulting list. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2572
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2573 static INLINE void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2574 x_append_glyph_string (head, tail, s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2575 struct glyph_string **head, **tail;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2576 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2577 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2578 s->next = s->prev = NULL;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2579 x_append_glyph_string_lists (head, tail, s, s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2580 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2581
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2582
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2583 /* Set S->gc to a suitable GC for drawing glyph string S in cursor
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2584 face. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2585
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2586 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2587 x_set_cursor_gc (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2588 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2589 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2590 if (s->font == FRAME_FONT (s->f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2591 && s->face->background == FRAME_BACKGROUND_PIXEL (s->f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2592 && s->face->foreground == FRAME_FOREGROUND_PIXEL (s->f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2593 && !s->cmp)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2594 s->gc = s->f->output_data.w32->cursor_gc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2595 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2596 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2597 /* Cursor on non-default face: must merge. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2598 XGCValues xgcv;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2599 unsigned long mask;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2600
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2601 xgcv.background = s->f->output_data.w32->cursor_pixel;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2602 xgcv.foreground = s->face->background;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2603
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2604 /* If the glyph would be invisible, try a different foreground. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2605 if (xgcv.foreground == xgcv.background)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2606 xgcv.foreground = s->face->foreground;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2607 if (xgcv.foreground == xgcv.background)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2608 xgcv.foreground = s->f->output_data.w32->cursor_foreground_pixel;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2609 if (xgcv.foreground == xgcv.background)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2610 xgcv.foreground = s->face->foreground;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2611
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2612 /* Make sure the cursor is distinct from text in this face. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2613 if (xgcv.background == s->face->background
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2614 && xgcv.foreground == s->face->foreground)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2615 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2616 xgcv.background = s->face->foreground;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2617 xgcv.foreground = s->face->background;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2618 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2619
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2620 IF_DEBUG (x_check_font (s->f, s->font));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2621 xgcv.font = s->font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2622 mask = GCForeground | GCBackground | GCFont;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2623
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2624 if (FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2625 XChangeGC (NULL, FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2626 mask, &xgcv);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2627 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2628 FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2629 = XCreateGC (NULL, s->window, mask, &xgcv);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2630
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2631 s->gc = FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2632 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2633 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2634
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2635
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2636 /* Set up S->gc of glyph string S for drawing text in mouse face. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2637
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2638 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2639 x_set_mouse_face_gc (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2640 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2641 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2642 int face_id;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2643
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2644 /* What face has to be used for the mouse face? */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2645 face_id = FRAME_W32_DISPLAY_INFO (s->f)->mouse_face_face_id;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2646 face_id = FACE_FOR_CHARSET (s->f, face_id, s->charset);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2647 s->face = FACE_FROM_ID (s->f, face_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2648 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2649
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2650 /* If font in this face is same as S->font, use it. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2651 if (s->font == s->face->font)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2652 s->gc = s->face->gc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2653 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2654 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2655 /* Otherwise construct scratch_cursor_gc with values from FACE
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2656 but font FONT. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2657 XGCValues xgcv;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2658 unsigned long mask;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2659
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2660 xgcv.background = s->face->background;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2661 xgcv.foreground = s->face->foreground;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2662 IF_DEBUG (x_check_font (s->f, s->font));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2663 xgcv.font = s->font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2664 mask = GCForeground | GCBackground | GCFont;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2665
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2666 if (FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2667 XChangeGC (NULL, FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2668 mask, &xgcv);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2669 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2670 FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2671 = XCreateGC (NULL, s->window, mask, &xgcv);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2672
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2673 s->gc = FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2674 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2675
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2676 xassert (s->gc != 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2677 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2678
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2679
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2680 /* Set S->gc of glyph string S to a GC suitable for drawing a mode line.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2681 Faces to use in the mode line have already been computed when the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2682 matrix was built, so there isn't much to do, here. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2683
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2684 static INLINE void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2685 x_set_mode_line_face_gc (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2686 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2687 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2688 s->gc = s->face->gc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2689 xassert (s->gc != 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2690 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2691
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2692
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2693 /* Set S->gc of glyph string S for drawing that glyph string. Set
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2694 S->stippled_p to a non-zero value if the face of S has a stipple
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2695 pattern. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2696
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2697 static INLINE void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2698 x_set_glyph_string_gc (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2699 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2700 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2701 if (s->hl == DRAW_NORMAL_TEXT)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2702 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2703 s->gc = s->face->gc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2704 s->stippled_p = s->face->stipple != 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2705 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2706 else if (s->hl == DRAW_INVERSE_VIDEO)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2707 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2708 x_set_mode_line_face_gc (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2709 s->stippled_p = s->face->stipple != 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2710 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2711 else if (s->hl == DRAW_CURSOR)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2712 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2713 x_set_cursor_gc (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2714 s->stippled_p = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2715 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2716 else if (s->hl == DRAW_MOUSE_FACE)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2717 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2718 x_set_mouse_face_gc (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2719 s->stippled_p = s->face->stipple != 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2720 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2721 else if (s->hl == DRAW_IMAGE_RAISED
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2722 || s->hl == DRAW_IMAGE_SUNKEN)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2723 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2724 s->gc = s->face->gc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2725 s->stippled_p = s->face->stipple != 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2726 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2727 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2728 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2729 s->gc = s->face->gc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2730 s->stippled_p = s->face->stipple != 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2731 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2732
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2733 /* GC must have been set. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2734 xassert (s->gc != 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2735 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2736
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2737
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2738 /* Return in *R the clipping rectangle for glyph string S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2739
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2740 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2741 w32_get_glyph_string_clip_rect (s, r)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2742 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2743 RECT *r;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2744 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2745 int r_height, r_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2746
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2747 if (s->row->full_width_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2748 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2749 /* Draw full-width. X coordinates are relative to S->w->left. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2750 int canon_x = CANON_X_UNIT (s->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2751
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2752 r->left = WINDOW_LEFT_MARGIN (s->w) * canon_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2753 r_width = XFASTINT (s->w->width) * canon_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2754
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2755 if (FRAME_HAS_VERTICAL_SCROLL_BARS (s->f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2756 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2757 int width = FRAME_SCROLL_BAR_WIDTH (s->f) * canon_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2758 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (s->f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2759 r->left -= width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2760 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2761
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2762 r->left += FRAME_INTERNAL_BORDER_WIDTH (s->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2763
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2764 /* Unless displaying a mode or menu bar line, which are always
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2765 fully visible, clip to the visible part of the row. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2766 if (s->w->pseudo_window_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2767 r_height = s->row->visible_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2768 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2769 r_height = s->height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2770 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2771 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2772 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2773 /* This is a text line that may be partially visible. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2774 r->left = WINDOW_AREA_TO_FRAME_PIXEL_X (s->w, s->area, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2775 r_width = window_box_width (s->w, s->area);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2776 r_height = s->row->visible_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2777 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2778
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2779 /* Don't use S->y for clipping because it doesn't take partially
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2780 visible lines into account. For example, it can be negative for
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2781 partially visible lines at the top of a window. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2782 if (!s->row->full_width_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2783 && MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P (s->w, s->row))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2784 r->top = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (s->w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2785 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2786 r->top = max (0, s->row->y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2787
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2788 /* If drawing a tool-bar window, draw it over the internal border
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2789 at the top of the window. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2790 if (s->w == XWINDOW (s->f->tool_bar_window))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2791 r->top -= s->f->output_data.w32->internal_border_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2792
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2793 /* If S draws overlapping rows, it's sufficient to use the top and
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2794 bottom of the window for clipping because this glyph string
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2795 intentionally draws over other lines. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2796 if (s->for_overlaps_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2797 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2798 r->top = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (s->w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2799 r_height = window_text_bottom_y (s->w) - r->top;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2800 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2801
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2802 r->top = WINDOW_TO_FRAME_PIXEL_Y (s->w, r->top);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2803
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2804 r->bottom = r->top + r_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2805 r->right = r->left + r_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2806 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2807
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2808
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2809 /* Set clipping for output of glyph string S. S may be part of a mode
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2810 line or menu if we don't have X toolkit support. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2811
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2812 static INLINE void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2813 x_set_glyph_string_clipping (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2814 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2815 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2816 RECT r;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2817 w32_get_glyph_string_clip_rect (s, &r);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2818 w32_set_clip_rectangle (s->hdc, &r);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2819 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2820
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2821
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2822 /* Compute left and right overhang of glyph string S. If S is a glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2823 string for a composition, assume overhangs don't exist. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2824
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2825 static INLINE void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2826 x_compute_glyph_string_overhangs (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2827 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2828 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2829 if (s->cmp == NULL
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2830 && s->first_glyph->type == CHAR_GLYPH)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2831 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2832 XCharStruct cs;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2833 int direction, font_ascent, font_descent;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2834 XTextExtents16 (s->font, s->char2b, s->nchars, &direction,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2835 &font_ascent, &font_descent, &cs);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2836 s->right_overhang = cs.rbearing > cs.width ? cs.rbearing - cs.width : 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2837 s->left_overhang = cs.lbearing < 0 ? -cs.lbearing : 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2838 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2839 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2840
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2841
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2842 /* Compute overhangs and x-positions for glyph string S and its
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2843 predecessors, or successors. X is the starting x-position for S.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2844 BACKWARD_P non-zero means process predecessors. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2845
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2846 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2847 x_compute_overhangs_and_x (s, x, backward_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2848 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2849 int x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2850 int backward_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2851 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2852 if (backward_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2853 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2854 while (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2855 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2856 x_compute_glyph_string_overhangs (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2857 x -= s->width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2858 s->x = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2859 s = s->prev;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2860 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2861 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2862 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2863 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2864 while (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2865 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2866 x_compute_glyph_string_overhangs (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2867 s->x = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2868 x += s->width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2869 s = s->next;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2870 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2871 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2872 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2873
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2874
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2875 /* Set *LEFT and *RIGHT to the left and right overhang of GLYPH on
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2876 frame F. Overhangs of glyphs other than type CHAR_GLYPH are
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2877 assumed to be zero. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2878
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2879 static void
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
2880 w32_get_glyph_overhangs (hdc, glyph, f, left, right, unicode_p)
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
2881 HDC hdc;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2882 struct glyph *glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2883 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2884 int *left, *right, unicode_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2885 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2886 int c;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2887
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2888 *left = *right = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2889
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2890 if (glyph->type == CHAR_GLYPH)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2891 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2892 XFontStruct *font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2893 struct face *face;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2894 struct font_info *font_info;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2895 wchar_t char2b;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2896
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2897 face = x_get_glyph_face_and_encoding (f, glyph, &char2b);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2898 font = face->font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2899 font_info = FONT_INFO_FROM_ID (f, face->font_info_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2900 if (font)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2901 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2902 XCharStruct *pcm = w32_per_char_metric (hdc, font, &char2b,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2903 unicode_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2904
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2905 if (pcm->rbearing > pcm->width)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2906 *right = pcm->rbearing - pcm->width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2907 if (pcm->lbearing < 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2908 *left = -pcm->lbearing;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2909 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2910 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2911 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2912
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2913
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2914 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2915 x_get_glyph_overhangs (glyph, f, left, right)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2916 struct glyph *glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2917 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2918 int *left, *right;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2919 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2920 HDC hdc = get_frame_dc (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2921 w32_get_glyph_overhangs (hdc, glyph, f, left, right, glyph->multibyte_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2922 release_frame_dc (f, hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2923 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2924
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2925
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2926 /* Return the index of the first glyph preceding glyph string S that
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2927 is overwritten by S because of S's left overhang. Value is -1
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2928 if no glyphs are overwritten. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2929
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2930 static int
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2931 x_left_overwritten (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2932 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2933 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2934 int k;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2935
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2936 if (s->left_overhang)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2937 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2938 int x = 0, i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2939 struct glyph *glyphs = s->row->glyphs[s->area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2940 int first = s->first_glyph - glyphs;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2941
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2942 for (i = first - 1; i >= 0 && x > -s->left_overhang; --i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2943 x -= glyphs[i].pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2944
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2945 k = i + 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2946 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2947 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2948 k = -1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2949
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2950 return k;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2951 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2952
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2953
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2954 /* Return the index of the first glyph preceding glyph string S that
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2955 is overwriting S because of its right overhang. Value is -1 if no
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2956 glyph in front of S overwrites S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2957
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2958 static int
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2959 x_left_overwriting (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2960 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2961 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2962 int i, k, x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2963 struct glyph *glyphs = s->row->glyphs[s->area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2964 int first = s->first_glyph - glyphs;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2965
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2966 k = -1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2967 x = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2968 for (i = first - 1; i >= 0; --i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2969 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2970 int left, right;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2971 w32_get_glyph_overhangs (s->hdc, glyphs + i, s->f, &left,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2972 &right, s->two_byte_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2973 if (x + right > 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2974 k = i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2975 x -= glyphs[i].pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2976 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2977
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2978 return k;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2979 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2980
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2981
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2982 /* Return the index of the last glyph following glyph string S that is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2983 not overwritten by S because of S's right overhang. Value is -1 if
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2984 no such glyph is found. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2985
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2986 static int
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2987 x_right_overwritten (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2988 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2989 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2990 int k = -1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2991
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2992 if (s->right_overhang)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2993 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2994 int x = 0, i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2995 struct glyph *glyphs = s->row->glyphs[s->area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2996 int first = (s->first_glyph - glyphs) + (s->cmp ? 1 : s->nchars);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2997 int end = s->row->used[s->area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2998
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2999 for (i = first; i < end && s->right_overhang > x; ++i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3000 x += glyphs[i].pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3001
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3002 k = i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3003 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3004
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3005 return k;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3006 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3007
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3008
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3009 /* Return the index of the last glyph following glyph string S that
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3010 overwrites S because of its left overhang. Value is negative
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3011 if no such glyph is found. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3012
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3013 static int
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3014 x_right_overwriting (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3015 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3016 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3017 int i, k, x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3018 int end = s->row->used[s->area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3019 struct glyph *glyphs = s->row->glyphs[s->area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3020 int first = (s->first_glyph - glyphs) + (s->cmp ? 1 : s->nchars);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3021
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3022 k = -1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3023 x = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3024 for (i = first; i < end; ++i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3025 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3026 int left, right;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3027 w32_get_glyph_overhangs (s->hdc, glyphs + i, s->f, &left,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3028 &right, s->two_byte_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3029 if (x - left < 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3030 k = i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3031 x += glyphs[i].pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3032 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3033
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3034 return k;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3035 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3036
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3037
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3038 /* Fill rectangle X, Y, W, H with background color of glyph string S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3039
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3040 static INLINE void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3041 x_clear_glyph_string_rect (s, x, y, w, h)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3042 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3043 int x, y, w, h;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3044 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3045 int real_x = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3046 int real_y = y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3047 int real_w = w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3048 int real_h = h;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3049 #if 0
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3050 /* Take clipping into account. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3051 if (s->gc->clip_mask == Rect)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3052 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3053 real_x = max (real_x, s->gc->clip_rectangle.left);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3054 real_y = max (real_y, s->gc->clip_rectangle.top);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3055 real_w = min (real_w, s->gc->clip_rectangle.right
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3056 - s->gc->clip_rectangle.left);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3057 real_h = min (real_h, s->gc->clip_rectangle.bottom
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3058 - s->gc->clip_rectangle.top);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3059 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3060 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3061 w32_fill_area (s->f, s->hdc, s->gc->background, real_x, real_y,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3062 real_w, real_h);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3063 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3064
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3065
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3066 /* Draw the background of glyph_string S. If S->background_filled_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3067 is non-zero don't draw it. FORCE_P non-zero means draw the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3068 background even if it wouldn't be drawn normally. This is used
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3069 when a string preceding S draws into the background of S, or S
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3070 contains the first component of a composition. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3071
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3072 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3073 x_draw_glyph_string_background (s, force_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3074 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3075 int force_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3076 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3077 /* Nothing to do if background has already been drawn or if it
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3078 shouldn't be drawn in the first place. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3079 if (!s->background_filled_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3080 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3081 #if 0 /* NTEMACS_TODO: stipple */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3082 if (s->stippled_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3083 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3084 /* Fill background with a stipple pattern. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3085 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3086 XFillRectangle (s->display, s->window, s->gc, s->x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3087 s->y + s->face->box_line_width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3088 s->background_width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3089 s->height - 2 * s->face->box_line_width);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3090 XSetFillStyle (s->display, s->gc, FillSolid);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3091 s->background_filled_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3092 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3093 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3094 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3095 if (FONT_HEIGHT (s->font) < s->height - 2 * s->face->box_line_width
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3096 || s->font_not_found_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3097 || s->extends_to_end_of_line_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3098 || force_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3099 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3100 x_clear_glyph_string_rect (s, s->x, s->y + s->face->box_line_width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3101 s->background_width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3102 s->height - 2 * s->face->box_line_width);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3103 s->background_filled_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3104 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3105 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3106 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3107
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3108
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3109 /* Draw the foreground of glyph string S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3110
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3111 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3112 x_draw_glyph_string_foreground (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3113 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3114 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3115 int i, x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3116
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3117 /* If first glyph of S has a left box line, start drawing the text
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3118 of S to the right of that box line. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3119 if (s->face->box != FACE_NO_BOX
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3120 && s->first_glyph->left_box_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3121 x = s->x + s->face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3122 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3123 x = s->x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3124
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3125 if (s->for_overlaps_p || (s->background_filled_p && s->hl != DRAW_CURSOR))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3126 SetBkMode (s->hdc, TRANSPARENT);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3127 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3128 SetBkMode (s->hdc, OPAQUE);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3129
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3130 SetTextColor (s->hdc, s->gc->foreground);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3131 SetBkColor (s->hdc, s->gc->background);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3132 SetTextAlign (s->hdc, TA_BASELINE | TA_LEFT);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3133
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3134 if (s->font && s->font->hfont)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3135 SelectObject (s->hdc, s->font->hfont);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3136
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3137 /* Draw characters of S as rectangles if S's font could not be
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3138 loaded. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3139 if (s->font_not_found_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3140 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3141 for (i = 0; i < s->nchars; ++i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3142 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3143 struct glyph *g = s->first_glyph + i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3144
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3145 w32_draw_rectangle (s->hdc, s->gc, x, s->y, g->pixel_width - 1,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3146 s->height - 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3147 x += g->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3148 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3149 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3150 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3151 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3152 char *char1b = (char *) s->char2b;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3153 int boff = s->font_info->baseline_offset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3154
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3155 if (s->font_info->vertical_centering)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3156 boff = VCENTER_BASELINE_OFFSET (s->font, s->f) - boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3157
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3158 /* If we can use 8-bit functions, condense S->char2b. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3159 if (!s->two_byte_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3160 for (i = 0; i < s->nchars; ++i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3161 char1b[i] = BYTE2 (s->char2b[i]);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3162
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3163 /* Draw text with TextOut and friends. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3164 W32_TEXTOUT (s, x, s->ybase - boff, s->char2b, s->nchars);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3165 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3166 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3167
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3168 /* Draw the foreground of composite glyph string S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3169
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3170 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3171 x_draw_composite_glyph_string_foreground (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3172 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3173 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3174 int i, x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3175
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3176 /* If first glyph of S has a left box line, start drawing the text
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3177 of S to the right of that box line. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3178 if (s->face->box != FACE_NO_BOX
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3179 && s->first_glyph->left_box_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3180 x = s->x + s->face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3181 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3182 x = s->x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3183
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3184 /* S is a glyph string for a composition. S->gidx is the index of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3185 the first character drawn for glyphs of this composition.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3186 S->gidx == 0 means we are drawing the very first character of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3187 this composition. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3188
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3189 SetTextColor (s->hdc, s->gc->foreground);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3190 SetBkColor (s->hdc, s->gc->background);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3191 SetBkMode (s->hdc, TRANSPARENT);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3192 SetTextAlign (s->hdc, TA_BASELINE | TA_LEFT);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3193
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3194 /* Draw a rectangle for the composition if the font for the very
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3195 first character of the composition could not be loaded. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3196 if (s->font_not_found_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3197 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3198 if (s->gidx == 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3199 w32_draw_rectangle (s->hdc, s->gc, x, s->y, s->width - 1,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3200 s->height - 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3201 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3202 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3203 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3204 for (i = 0; i < s->nchars; i++, ++s->gidx)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3205 W32_TEXTOUT (s, x + s->cmp->offsets[s->gidx * 2],
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3206 s->ybase - s->cmp->offsets[s->gidx * 2 + 1],
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3207 s->char2b + i, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3208 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3209 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3210
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3211 /* Allocate a color which is lighter or darker than *COLOR by FACTOR
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3212 or DELTA. Try a color with RGB values multiplied by FACTOR first.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3213 If this produces the same color as COLOR, try a color where all RGB
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3214 values have DELTA added. Return the allocated color in *COLOR.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3215 DISPLAY is the X display, CMAP is the colormap to operate on.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3216 Value is non-zero if successful. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
3217
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
3218 static int
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3219 w32_alloc_lighter_color (f, color, factor, delta)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3220 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3221 COLORREF *color;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3222 double factor;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3223 int delta;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3224 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3225 COLORREF new;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3226
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3227 /* Change RGB values by specified FACTOR. Avoid overflow! */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3228 xassert (factor >= 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3229 new = PALETTERGB (min (0xff, factor * GetRValue (*color)),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3230 min (0xff, factor * GetGValue (*color)),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3231 min (0xff, factor * GetBValue (*color)));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3232 if (new == *color)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3233 new = PALETTERGB (max (0, min (0xff, delta + GetRValue (*color))),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3234 max (0, min (0xff, delta + GetGValue (*color))),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3235 max (0, min (0xff, delta + GetBValue (*color))));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3236
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3237 if (new == *color)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3238 return 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3239
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3240 *color = new;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3241
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3242 return 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3243 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3244
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3245
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3246 /* Set up the foreground color for drawing relief lines of glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3247 string S. RELIEF is a pointer to a struct relief containing the GC
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3248 with which lines will be drawn. Use a color that is FACTOR or
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3249 DELTA lighter or darker than the relief's background which is found
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3250 in S->f->output_data.x->relief_background. If such a color cannot
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3251 be allocated, use DEFAULT_PIXEL, instead. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3252
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3253 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3254 w32_setup_relief_color (f, relief, factor, delta, default_pixel)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
3255 struct frame *f;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3256 struct relief *relief;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3257 double factor;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3258 int delta;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3259 COLORREF default_pixel;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3260 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3261 XGCValues xgcv;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3262 struct w32_output *di = f->output_data.w32;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3263 unsigned long mask = GCForeground;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3264 COLORREF pixel;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3265 COLORREF background = di->relief_background;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3266 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3267
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3268 /* Allocate new color. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3269 xgcv.foreground = default_pixel;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3270 pixel = background;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3271 if (w32_alloc_lighter_color (f, &pixel, factor, delta))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3272 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3273 relief->allocated_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3274 xgcv.foreground = relief->pixel = pixel;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3275 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3276
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3277 if (relief->gc == 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3278 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3279 #if 0 /* NTEMACS_TODO: stipple */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3280 xgcv.stipple = dpyinfo->gray;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3281 mask |= GCStipple;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3282 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3283 relief->gc = XCreateGC (NULL, FRAME_W32_WINDOW (f), mask, &xgcv);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3284 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3285 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3286 XChangeGC (NULL, relief->gc, mask, &xgcv);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3287 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3288
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3289
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3290 /* Set up colors for the relief lines around glyph string S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3291
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3292 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3293 x_setup_relief_colors (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3294 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3295 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3296 struct w32_output *di = s->f->output_data.w32;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3297 COLORREF color;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3298
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3299 if (s->face->use_box_color_for_shadows_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3300 color = s->face->box_color;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3301 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3302 color = s->gc->background;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3303
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3304 if (di->white_relief.gc == 0
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3305 || color != di->relief_background)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3306 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3307 di->relief_background = color;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3308 w32_setup_relief_color (s->f, &di->white_relief, 1.2, 0x8000,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3309 WHITE_PIX_DEFAULT (s->f));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3310 w32_setup_relief_color (s->f, &di->black_relief, 0.6, 0x4000,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3311 BLACK_PIX_DEFAULT (s->f));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3312 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3313 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3314
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3315
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3316 /* Draw a relief on frame F inside the rectangle given by LEFT_X,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3317 TOP_Y, RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the relief
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3318 to draw, it must be >= 0. RAISED_P non-zero means draw a raised
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3319 relief. LEFT_P non-zero means draw a relief on the left side of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3320 the rectangle. RIGHT_P non-zero means draw a relief on the right
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3321 side of the rectangle. CLIP_RECT is the clipping rectangle to use
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3322 when drawing. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3323
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3324 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3325 w32_draw_relief_rect (f, left_x, top_y, right_x, bottom_y, width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3326 raised_p, left_p, right_p, clip_rect)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3327 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3328 int left_x, top_y, right_x, bottom_y, left_p, right_p, raised_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3329 RECT *clip_rect;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3330 {
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
3331 int i;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3332 XGCValues gc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3333 HDC hdc = get_frame_dc (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3334
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3335 if (raised_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3336 gc.foreground = PALETTERGB (255, 255, 255);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3337 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3338 gc.foreground = PALETTERGB (0, 0, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3339
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3340 w32_set_clip_rectangle (hdc, clip_rect);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3341
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3342 /* Top. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3343 for (i = 0; i < width; ++i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3344 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3345 w32_fill_area (f, hdc, gc.foreground,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3346 left_x + i * left_p, top_y + i,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3347 (right_x + 1 - i * right_p) - (left_x + i * left_p), 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3348 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3349
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3350 /* Left. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3351 if (left_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3352 for (i = 0; i < width; ++i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3353 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3354 w32_fill_area (f, hdc, gc.foreground,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3355 left_x + i, top_y + i, 1,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3356 (bottom_y - i) - (top_y + i));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3357 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3358
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3359 w32_set_clip_rectangle (hdc, NULL);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3360
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3361 if (raised_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3362 gc.foreground = PALETTERGB (0, 0, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3363 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3364 gc.foreground = PALETTERGB (255, 255, 255);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3365
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3366 w32_set_clip_rectangle (hdc, clip_rect);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3367
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3368 /* Bottom. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3369 for (i = 0; i < width; ++i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3370 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3371 w32_fill_area (f, hdc, gc.foreground,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3372 left_x + i * left_p, bottom_y - i,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3373 (right_x + 1 - i * right_p) - left_x + i * left_p, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3374 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3375
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3376 /* Right. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3377 if (right_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3378 for (i = 0; i < width; ++i)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
3379 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3380 w32_fill_area (f, hdc, gc.foreground,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3381 right_x - i, top_y + i + 1, 1,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3382 (bottom_y - i) - (top_y + i + 1));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3383 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3384
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3385 w32_set_clip_rectangle (hdc, NULL);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3386
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3387 release_frame_dc (f, hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3388 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3389
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3390
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3391 /* Draw a box on frame F inside the rectangle given by LEFT_X, TOP_Y,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3392 RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the lines to
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3393 draw, it must be >= 0. LEFT_P non-zero means draw a line on the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3394 left side of the rectangle. RIGHT_P non-zero means draw a line
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3395 on the right side of the rectangle. CLIP_RECT is the clipping
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3396 rectangle to use when drawing. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3397
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3398 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3399 w32_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3400 left_p, right_p, clip_rect)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3401 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3402 int left_x, top_y, right_x, bottom_y, width, left_p, right_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3403 RECT *clip_rect;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3404 {
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
3405 w32_set_clip_rectangle (s->hdc, clip_rect);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3406
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3407 /* Top. */
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
3408 w32_fill_area (s->f, s->hdc, s->face->box_color,
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3409 left_x, top_y, right_x - left_x, width);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3410
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3411 /* Left. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3412 if (left_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3413 {
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
3414 w32_fill_area (s->f, s->hdc, s->face->box_color,
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3415 left_x, top_y, width, bottom_y - top_y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3416 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3417
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3418 /* Bottom. */
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
3419 w32_fill_area (s->f, s->hdc, s->face->box_color,
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3420 left_x, bottom_y - width, right_x - left_x, width);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3421
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3422 /* Right. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3423 if (right_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3424 {
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
3425 w32_fill_area (s->f, s->hdc, s->face->box_color,
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3426 right_x - width, top_y, width, bottom_y - top_y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3427 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3428
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
3429 w32_set_clip_rectangle (s->hdc, NULL);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3430 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3431
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3432
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3433 /* Draw a box around glyph string S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3434
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3435 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3436 x_draw_glyph_string_box (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3437 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3438 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3439 int width, left_x, right_x, top_y, bottom_y, last_x, raised_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3440 int left_p, right_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3441 struct glyph *last_glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3442 RECT clip_rect;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3443
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3444 last_x = window_box_right (s->w, s->area);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3445 if (s->row->full_width_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3446 && !s->w->pseudo_window_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3447 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3448 last_x += FRAME_X_RIGHT_FLAGS_AREA_WIDTH (s->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3449 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (s->f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3450 last_x += FRAME_SCROLL_BAR_WIDTH (s->f) * CANON_X_UNIT (s->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3451 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3452
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3453 /* The glyph that may have a right box line. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3454 last_glyph = (s->cmp || s->img
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3455 ? s->first_glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3456 : s->first_glyph + s->nchars - 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3457
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3458 width = s->face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3459 raised_p = s->face->box == FACE_RAISED_BOX;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3460 left_x = s->x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3461 right_x = ((s->row->full_width_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3462 ? last_x - 1
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3463 : min (last_x, s->x + s->background_width) - 1));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3464 top_y = s->y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3465 bottom_y = top_y + s->height - 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3466
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3467 left_p = (s->first_glyph->left_box_line_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3468 || (s->hl == DRAW_MOUSE_FACE
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3469 && (s->prev == NULL
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3470 || s->prev->hl != s->hl)));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3471 right_p = (last_glyph->right_box_line_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3472 || (s->hl == DRAW_MOUSE_FACE
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3473 && (s->next == NULL
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3474 || s->next->hl != s->hl)));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3475
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3476 w32_get_glyph_string_clip_rect (s, &clip_rect);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3477
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3478 if (s->face->box == FACE_SIMPLE_BOX)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3479 w32_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3480 left_p, right_p, &clip_rect);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3481 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3482 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3483 x_setup_relief_colors (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3484 w32_draw_relief_rect (s->f, left_x, top_y, right_x, bottom_y,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3485 width, raised_p, left_p, right_p, &clip_rect);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3486 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3487 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3488
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3489
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3490 /* Draw foreground of image glyph string S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3491
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3492 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3493 x_draw_image_foreground (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3494 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3495 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3496 int x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3497 int y = s->ybase - IMAGE_ASCENT (s->img);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3498
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3499 /* If first glyph of S has a left box line, start drawing it to the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3500 right of that line. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3501 if (s->face->box != FACE_NO_BOX
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3502 && s->first_glyph->left_box_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3503 x = s->x + s->face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3504 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3505 x = s->x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3506
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3507 /* If there is a margin around the image, adjust x- and y-position
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3508 by that margin. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3509 if (s->img->margin)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3510 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3511 x += s->img->margin;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3512 y += s->img->margin;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3513 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3514
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3515 SaveDC (s->hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3516
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3517 if (s->img->pixmap)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3518 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3519 #if 0 /* NTEMACS_TODO: image mask */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3520 if (s->img->mask)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3521 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3522 /* We can't set both a clip mask and use XSetClipRectangles
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3523 because the latter also sets a clip mask. We also can't
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3524 trust on the shape extension to be available
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3525 (XShapeCombineRegion). So, compute the rectangle to draw
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3526 manually. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3527 unsigned long mask = (GCClipMask | GCClipXOrigin | GCClipYOrigin
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3528 | GCFunction);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3529 XGCValues xgcv;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3530 XRectangle clip_rect, image_rect, r;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3531
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3532 xgcv.clip_mask = s->img->mask;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3533 xgcv.clip_x_origin = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3534 xgcv.clip_y_origin = y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3535 xgcv.function = GXcopy;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3536 XChangeGC (s->display, s->gc, mask, &xgcv);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3537
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3538 w32_get_glyph_string_clip_rect (s, &clip_rect);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3539 image_rect.x = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3540 image_rect.y = y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3541 image_rect.width = s->img->width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3542 image_rect.height = s->img->height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3543 if (w32_intersect_rectangles (&clip_rect, &image_rect, &r))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3544 XCopyArea (s->display, s->img->pixmap, s->window, s->gc,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3545 r.x - x, r.y - y, r.width, r.height, r.x, r.y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3546 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3547 else
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
3548 #endif
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3549 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3550 HDC compat_hdc = CreateCompatibleDC (s->hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3551 HBRUSH fg_brush = CreateSolidBrush (s->gc->foreground);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3552 HBRUSH orig_brush = SelectObject (s->hdc, fg_brush);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3553 HGDIOBJ orig_obj = SelectObject (compat_hdc, s->img->pixmap);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3554
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3555 SetTextColor (s->hdc, s->gc->foreground);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3556 SetBkColor (s->hdc, s->gc->background);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3557 #if 0 /* From w32bdf.c (which is from Meadow). */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3558 BitBlt (s->hdc, x, y, s->img->width, s->img->height,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3559 compat_hdc, 0, 0, SRCCOPY);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3560 #else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3561 BitBlt (s->hdc, x, y, s->img->width, s->img->height,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3562 compat_hdc, 0, 0, 0xB8074A);
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
3563 #endif
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3564 SelectObject (s->hdc, orig_brush);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3565 DeleteObject (fg_brush);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3566 SelectObject (compat_hdc, orig_obj);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3567 DeleteDC (compat_hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3568
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3569 /* When the image has a mask, we can expect that at
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3570 least part of a mouse highlight or a block cursor will
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3571 be visible. If the image doesn't have a mask, make
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3572 a block cursor visible by drawing a rectangle around
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3573 the image. I believe it's looking better if we do
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3574 nothing here for mouse-face. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3575 if (s->hl == DRAW_CURSOR)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3576 w32_draw_rectangle (s->hdc, s->gc, x, y, s->img->width - 1,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3577 s->img->height - 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3578 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3579 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3580 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3581 w32_draw_rectangle (s->hdc, s->gc, x, y, s->img->width -1,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3582 s->img->height - 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3583
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3584 RestoreDC (s->hdc ,-1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3585 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3586
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3587
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3588
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3589 /* Draw a relief around the image glyph string S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3590
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3591 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3592 x_draw_image_relief (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3593 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3594 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3595 int x0, y0, x1, y1, thick, raised_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3596 RECT r;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3597 int x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3598 int y = s->ybase - IMAGE_ASCENT (s->img);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3599
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3600 /* If first glyph of S has a left box line, start drawing it to the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3601 right of that line. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3602 if (s->face->box != FACE_NO_BOX
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3603 && s->first_glyph->left_box_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3604 x = s->x + s->face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3605 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3606 x = s->x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3607
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3608 /* If there is a margin around the image, adjust x- and y-position
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3609 by that margin. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3610 if (s->img->margin)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3611 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3612 x += s->img->margin;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3613 y += s->img->margin;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3614 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3615
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3616 if (s->hl == DRAW_IMAGE_SUNKEN
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3617 || s->hl == DRAW_IMAGE_RAISED)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3618 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3619 thick = tool_bar_button_relief > 0 ? tool_bar_button_relief : 3;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3620 raised_p = s->hl == DRAW_IMAGE_RAISED;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3621 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3622 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3623 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3624 thick = abs (s->img->relief);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3625 raised_p = s->img->relief > 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3626 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3627
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3628 x0 = x - thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3629 y0 = y - thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3630 x1 = x + s->img->width + thick - 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3631 y1 = y + s->img->height + thick - 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3632
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3633 x_setup_relief_colors (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3634 w32_get_glyph_string_clip_rect (s, &r);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3635 w32_draw_relief_rect (s->f, x0, y0, x1, y1, thick, raised_p, 1, 1, &r);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3636 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3637
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3638
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3639 /* Draw the foreground of image glyph string S to PIXMAP. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3640
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3641 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3642 w32_draw_image_foreground_1 (s, pixmap)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3643 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3644 HBITMAP pixmap;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3645 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3646 HDC hdc = CreateCompatibleDC (s->hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3647 HGDIOBJ orig_hdc_obj = SelectObject (hdc, pixmap);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3648 int x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3649 int y = s->ybase - s->y - IMAGE_ASCENT (s->img);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3650
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3651 /* If first glyph of S has a left box line, start drawing it to the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3652 right of that line. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3653 if (s->face->box != FACE_NO_BOX
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3654 && s->first_glyph->left_box_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3655 x = s->face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3656 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3657 x = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3658
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3659 /* If there is a margin around the image, adjust x- and y-position
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3660 by that margin. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3661 if (s->img->margin)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3662 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3663 x += s->img->margin;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3664 y += s->img->margin;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3665 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3666
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3667 if (s->img->pixmap)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3668 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3669 #if 0 /* NTEMACS_TODO: image mask */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3670 if (s->img->mask)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3671 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3672 /* We can't set both a clip mask and use XSetClipRectangles
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3673 because the latter also sets a clip mask. We also can't
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3674 trust on the shape extension to be available
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3675 (XShapeCombineRegion). So, compute the rectangle to draw
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3676 manually. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3677 unsigned long mask = (GCClipMask | GCClipXOrigin | GCClipYOrigin
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3678 | GCFunction);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3679 XGCValues xgcv;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3680
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3681 xgcv.clip_mask = s->img->mask;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3682 xgcv.clip_x_origin = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3683 xgcv.clip_y_origin = y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3684 xgcv.function = GXcopy;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3685 XChangeGC (s->display, s->gc, mask, &xgcv);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3686
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3687 XCopyArea (s->display, s->img->pixmap, pixmap, s->gc,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3688 0, 0, s->img->width, s->img->height, x, y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3689 XSetClipMask (s->display, s->gc, None);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3690 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3691 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3692 #endif
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
3693 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3694 HDC compat_hdc = CreateCompatibleDC (hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3695 HBRUSH fg_brush = CreateSolidBrush (s->gc->foreground);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3696 HBRUSH orig_brush = SelectObject (hdc, fg_brush);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3697 HGDIOBJ orig_obj = SelectObject (compat_hdc, s->img->pixmap);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3698
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3699 SetTextColor (hdc, s->gc->foreground);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3700 SetBkColor (hdc, s->gc->background);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3701 #if 0 /* From w32bdf.c (which is from Meadow). */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3702 BitBlt (hdc, x, y, s->img->width, s->img->height,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3703 compat_hdc, 0, 0, SRCCOPY);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3704 #else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3705 BitBlt (hdc, x, y, s->img->width, s->img->height,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3706 compat_hdc, 0, 0, 0xB8074A);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3707 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3708 SelectObject (hdc, orig_brush);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3709 DeleteObject (fg_brush);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3710 SelectObject (compat_hdc, orig_obj);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3711 DeleteDC (compat_hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3712
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3713 /* When the image has a mask, we can expect that at
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3714 least part of a mouse highlight or a block cursor will
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3715 be visible. If the image doesn't have a mask, make
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3716 a block cursor visible by drawing a rectangle around
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3717 the image. I believe it's looking better if we do
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3718 nothing here for mouse-face. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3719 if (s->hl == DRAW_CURSOR)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3720 w32_draw_rectangle (hdc, s->gc, x, y, s->img->width - 1,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3721 s->img->height - 1);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
3722 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3723 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3724 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3725 w32_draw_rectangle (hdc, s->gc, x, y, s->img->width - 1,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3726 s->img->height - 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3727
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3728 SelectObject (hdc, orig_hdc_obj);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3729 DeleteDC (hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3730 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3731
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3732
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3733 /* Draw part of the background of glyph string S. X, Y, W, and H
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3734 give the rectangle to draw. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3735
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3736 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3737 x_draw_glyph_string_bg_rect (s, x, y, w, h)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3738 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3739 int x, y, w, h;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3740 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3741 #if 0 /* NTEMACS_TODO: stipple */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3742 if (s->stippled_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3743 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3744 /* Fill background with a stipple pattern. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3745 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3746 XFillRectangle (s->display, s->window, s->gc, x, y, w, h);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3747 XSetFillStyle (s->display, s->gc, FillSolid);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3748 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3749 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3750 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3751 x_clear_glyph_string_rect (s, x, y, w, h);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3752 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3753
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3754
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3755 /* Draw image glyph string S.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3756
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3757 s->y
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3758 s->x +-------------------------
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3759 | s->face->box
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3760 |
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3761 | +-------------------------
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3762 | | s->img->margin
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3763 | |
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3764 | | +-------------------
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3765 | | | the image
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3766
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3767 */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3768
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3769 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3770 x_draw_image_glyph_string (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3771 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3772 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3773 int x, y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3774 int box_line_width = s->face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3775 int margin = s->img->margin;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3776 int height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3777 HBITMAP pixmap = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3778
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3779 height = s->height - 2 * box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3780
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3781 /* Fill background with face under the image. Do it only if row is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3782 taller than image or if image has a clip mask to reduce
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3783 flickering. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3784 s->stippled_p = s->face->stipple != 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3785 if (height > s->img->height
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3786 || margin
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3787 #if 0 /* NTEMACS_TODO: image mask */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3788 || s->img->mask
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3789 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3790 || s->img->pixmap == 0
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3791 || s->width != s->background_width)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3792 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3793 if (box_line_width && s->first_glyph->left_box_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3794 x = s->x + box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3795 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3796 x = s->x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3797
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3798 y = s->y + box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3799 #if 0 /* NTEMACS_TODO: image mask */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3800 if (s->img->mask)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3801 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3802 /* Create a pixmap as large as the glyph string Fill it with
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3803 the background color. Copy the image to it, using its
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3804 mask. Copy the temporary pixmap to the display. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3805 Screen *screen = FRAME_X_SCREEN (s->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3806 int depth = DefaultDepthOfScreen (screen);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3807
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3808 /* Create a pixmap as large as the glyph string. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3809 pixmap = XCreatePixmap (s->display, s->window,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3810 s->background_width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3811 s->height, depth);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3812
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3813 /* Don't clip in the following because we're working on the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3814 pixmap. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3815 XSetClipMask (s->display, s->gc, None);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3816
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3817 /* Fill the pixmap with the background color/stipple. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3818 if (s->stippled_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3819 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3820 /* Fill background with a stipple pattern. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3821 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3822 XFillRectangle (s->display, pixmap, s->gc,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3823 0, 0, s->background_width, s->height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3824 XSetFillStyle (s->display, s->gc, FillSolid);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3825 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3826 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3827 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3828 XGCValues xgcv;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3829 XGetGCValues (s->display, s->gc, GCForeground | GCBackground,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3830 &xgcv);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3831 XSetForeground (s->display, s->gc, xgcv.background);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3832 XFillRectangle (s->display, pixmap, s->gc,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3833 0, 0, s->background_width, s->height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3834 XSetForeground (s->display, s->gc, xgcv.foreground);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3835 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3836 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3837 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3838 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3839 /* Implementation idea: Is it possible to construct a mask?
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3840 We could look at the color at the margins of the image, and
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3841 say that this color is probably the background color of the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3842 image. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3843 x_draw_glyph_string_bg_rect (s, x, y, s->background_width, height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3844
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3845 s->background_filled_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3846 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3847
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3848 /* Draw the foreground. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3849 if (pixmap != 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3850 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3851 w32_draw_image_foreground_1 (s, pixmap);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3852 x_set_glyph_string_clipping (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3853 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3854 HDC compat_hdc = CreateCompatibleDC (s->hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3855 HBRUSH fg_brush = CreateSolidBrush (s->gc->foreground);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3856 HBRUSH orig_brush = SelectObject (s->hdc, fg_brush);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3857 HGDIOBJ orig_obj = SelectObject (compat_hdc, pixmap);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3858
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3859 SetTextColor (s->hdc, s->gc->foreground);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3860 SetBkColor (s->hdc, s->gc->background);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3861 #if 0 /* From w32bdf.c (which is from Meadow). */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3862 BitBlt (s->hdc, s->x, s->y, s->background_width, s->height,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3863 compat_hdc, 0, 0, SRCCOPY);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3864 #else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3865 BitBlt (s->hdc, s->x, s->y, s->background_width, s->height,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3866 compat_hdc, 0, 0, 0xB8074A);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3867 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3868 SelectObject (s->hdc, orig_brush);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3869 DeleteObject (fg_brush);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3870 SelectObject (compat_hdc, orig_obj);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3871 DeleteDC (compat_hdc);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
3872 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3873 DeleteObject (pixmap);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3874 pixmap = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3875 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3876 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3877 x_draw_image_foreground (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3878
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3879 /* If we must draw a relief around the image, do it. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3880 if (s->img->relief
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3881 || s->hl == DRAW_IMAGE_RAISED
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3882 || s->hl == DRAW_IMAGE_SUNKEN)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3883 x_draw_image_relief (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3884 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3885
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3886
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3887 /* Draw stretch glyph string S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3888
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3889 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3890 x_draw_stretch_glyph_string (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3891 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3892 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3893 xassert (s->first_glyph->type == STRETCH_GLYPH);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3894 s->stippled_p = s->face->stipple != 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3895
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3896 if (s->hl == DRAW_CURSOR
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3897 && !x_stretch_cursor_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3898 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3899 /* If `x-stretch-block-cursor' is nil, don't draw a block cursor
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3900 as wide as the stretch glyph. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3901 int width = min (CANON_X_UNIT (s->f), s->background_width);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3902
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3903 /* Draw cursor. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3904 x_draw_glyph_string_bg_rect (s, s->x, s->y, width, s->height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3905
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3906 /* Clear rest using the GC of the original non-cursor face. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3907 if (width < s->background_width)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3908 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3909 XGCValues *gc = s->face->gc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3910 int x = s->x + width, y = s->y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3911 int w = s->background_width - width, h = s->height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3912 RECT r;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3913 HDC hdc = s->hdc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3914 w32_get_glyph_string_clip_rect (s, &r);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3915 w32_set_clip_rectangle (hdc, &r);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3916
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3917 #if 0 /* NTEMACS_TODO: stipple */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3918 if (s->face->stipple)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3919 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3920 /* Fill background with a stipple pattern. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3921 XSetFillStyle (s->display, gc, FillOpaqueStippled);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3922 XFillRectangle (s->display, s->window, gc, x, y, w, h);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3923 XSetFillStyle (s->display, gc, FillSolid);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3924 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3925 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3926 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3927 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3928 w32_fill_area (s->f, s->hdc, gc->background, x, y, w, h);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3929 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3930 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3931 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3932 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3933 x_draw_glyph_string_bg_rect (s, s->x, s->y, s->background_width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3934 s->height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3935
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3936 s->background_filled_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3937 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3938
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3939
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3940 /* Draw glyph string S. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
3941
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
3942 static void
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3943 x_draw_glyph_string (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3944 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3945 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3946 /* If S draws into the background of its successor, draw the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3947 background of the successor first so that S can draw into it.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3948 This makes S->next use XDrawString instead of XDrawImageString. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3949 if (s->next && s->right_overhang && !s->for_overlaps_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3950 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3951 xassert (s->next->img == NULL);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3952 x_set_glyph_string_gc (s->next);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3953 x_set_glyph_string_clipping (s->next);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3954 x_draw_glyph_string_background (s->next, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3955 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3956
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3957 /* Set up S->gc, set clipping and draw S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3958 x_set_glyph_string_gc (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3959 x_set_glyph_string_clipping (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3960
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3961 switch (s->first_glyph->type)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3962 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3963 case IMAGE_GLYPH:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3964 x_draw_image_glyph_string (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3965 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3966
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3967 case STRETCH_GLYPH:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3968 x_draw_stretch_glyph_string (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3969 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3970
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3971 case CHAR_GLYPH:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3972 if (s->for_overlaps_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3973 s->background_filled_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3974 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3975 x_draw_glyph_string_background (s, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3976 x_draw_glyph_string_foreground (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3977 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3978
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3979 case COMPOSITE_GLYPH:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3980 if (s->for_overlaps_p || s->gidx > 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3981 s->background_filled_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3982 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3983 x_draw_glyph_string_background (s, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3984 x_draw_composite_glyph_string_foreground (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3985 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3986
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3987 default:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3988 abort ();
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3989 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3990
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3991 if (!s->for_overlaps_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3992 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3993 /* Draw underline. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3994 if (s->face->underline_p && (!s->font->bdf && !s->font->tm.tmUnderlined))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3995 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3996 unsigned long h = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3997 unsigned long dy = s->height - h;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3998
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3999 if (s->face->underline_defaulted_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4000 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4001 w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4002 s->y + dy, s->width, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4003 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4004 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4005 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4006 w32_fill_area (s->f, s->hdc, s->face->underline_color, s->x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4007 s->y + dy, s->width, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4008 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4009 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4010
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4011 /* Draw overline. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4012 if (s->face->overline_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4013 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4014 unsigned long dy = 0, h = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4015
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4016 if (s->face->overline_color_defaulted_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4017 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4018 w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4019 s->y + dy, s->width, h);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4020 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4021 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4022 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4023 w32_fill_area (s->f, s->hdc, s->face->underline_color, s->x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4024 s->y + dy, s->width, h);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4025 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4026 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4027
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4028 /* Draw strike-through. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4029 if (s->face->strike_through_p && (!s->font->bdf &&!s->font->tm.tmStruckOut))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4030 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4031 unsigned long h = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4032 unsigned long dy = (s->height - h) / 2;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4033
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4034 if (s->face->strike_through_color_defaulted_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4035 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4036 w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x, s->y + dy,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4037 s->width, h);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4038 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4039 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4040 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4041 w32_fill_area (s->f, s->hdc, s->face->underline_color, s->x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4042 s->y + dy, s->width, h);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4043 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4044 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4045
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4046 /* Draw relief. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4047 if (s->face->box != FACE_NO_BOX)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4048 x_draw_glyph_string_box (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4049 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4050
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4051 /* Reset clipping. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4052 w32_set_clip_rectangle (s->hdc, NULL);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4053 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4054
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4055
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4056 static int x_fill_composite_glyph_string P_ ((struct glyph_string *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4057 struct face **, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4058
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4059
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4060 /* Load glyph string S with a composition components specified by S->cmp.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4061 FACES is an array of faces for all components of this composition.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4062 S->gidx is the index of the first component for S.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4063 OVERLAPS_P non-zero means S should draw the foreground only, and
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4064 use its lines physical height for clipping.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4065
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4066 Value is the index of a component not in S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4067
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4068 static int
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4069 x_fill_composite_glyph_string (s, faces, overlaps_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4070 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4071 struct face **faces;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4072 int overlaps_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4073 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4074 int i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4075
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4076 xassert (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4077
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4078 s->for_overlaps_p = overlaps_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4079
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4080 s->face = faces[s->gidx];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4081 s->font = s->face->font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4082 s->font_info = FONT_INFO_FROM_ID (s->f, s->face->font_info_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4083
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4084 /* For all glyphs of this composition, starting at the offset
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4085 S->gidx, until we reach the end of the definition or encounter a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4086 glyph that requires the different face, add it to S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4087 ++s->nchars;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4088 for (i = s->gidx + 1; i < s->cmp->glyph_len && faces[i] == s->face; ++i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4089 ++s->nchars;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4090
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4091 /* All glyph strings for the same composition has the same width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4092 i.e. the width set for the first component of the composition. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4093
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4094 s->width = s->first_glyph->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4095
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4096 /* If the specified font could not be loaded, use the frame's
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4097 default font, but record the fact that we couldn't load it in
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4098 the glyph string so that we can draw rectangles for the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4099 characters of the glyph string. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4100 if (s->font == NULL)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4101 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4102 s->font_not_found_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4103 s->font = FRAME_FONT (s->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4104 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4105
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4106 /* Adjust base line for subscript/superscript text. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4107 s->ybase += s->first_glyph->voffset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4108
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4109 xassert (s->face && s->face->gc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4110
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4111 /* This glyph string must always be drawn with 16-bit functions. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4112 s->two_byte_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4113
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4114 return s->gidx + s->nchars;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4115 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4116
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4117
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4118 /* Load glyph string S with a sequence of characters.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4119 FACE_ID is the face id of the string. START is the index of the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4120 first glyph to consider, END is the index of the last + 1.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4121 OVERLAPS_P non-zero means S should draw the foreground only, and
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4122 use its lines physical height for clipping.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4123
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4124 Value is the index of the first glyph not in S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4125
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4126 static int
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4127 x_fill_glyph_string (s, face_id, start, end, overlaps_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4128 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4129 int face_id;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4130 int start, end, overlaps_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4131 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4132 struct glyph *glyph, *last;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4133 int voffset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4134
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4135 xassert (s->f == XFRAME (s->w->frame));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4136 xassert (s->nchars == 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4137 xassert (start >= 0 && end > start);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4138
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4139 s->for_overlaps_p = overlaps_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4140
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4141 glyph = s->row->glyphs[s->area] + start;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4142 last = s->row->glyphs[s->area] + end;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4143 voffset = glyph->voffset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4144
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4145 while (glyph < last
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4146 && glyph->type == CHAR_GLYPH
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4147 && glyph->voffset == voffset
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4148 /* Same face id implies same charset, nowadays. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4149 && glyph->face_id == face_id)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4150 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4151 s->face = x_get_glyph_face_and_encoding (s->f, glyph,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4152 s->char2b + s->nchars);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4153 if (BYTE2(s->char2b[s->nchars]) != 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4154 s->two_byte_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4155
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4156 ++s->nchars;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4157 xassert (s->nchars <= end - start);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4158 s->width += glyph->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4159 ++glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4160 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4161
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4162 s->font = s->face->font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4163 s->font_info = FONT_INFO_FROM_ID (s->f, s->face->font_info_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4164
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4165 /* If the specified font could not be loaded, use the frame's font,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4166 but record the fact that we couldn't load it in
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4167 S->font_not_found_p so that we can draw rectangles for the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4168 characters of the glyph string. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4169 if (s->font == NULL)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4170 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4171 s->font_not_found_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4172 s->font = FRAME_FONT (s->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4173 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4174
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4175 /* Adjust base line for subscript/superscript text. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4176 s->ybase += voffset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4177
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4178 xassert (s->face && s->face->gc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4179 return glyph - s->row->glyphs[s->area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4180 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4181
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4182
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4183 /* Fill glyph string S from image glyph S->first_glyph. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4184
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4185 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4186 x_fill_image_glyph_string (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4187 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4188 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4189 xassert (s->first_glyph->type == IMAGE_GLYPH);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4190 s->img = IMAGE_FROM_ID (s->f, s->first_glyph->u.img_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4191 xassert (s->img);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4192 s->face = FACE_FROM_ID (s->f, s->first_glyph->face_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4193 s->font = s->face->font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4194 s->width = s->first_glyph->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4195
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4196 /* Adjust base line for subscript/superscript text. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4197 s->ybase += s->first_glyph->voffset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4198 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4199
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4200
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4201 /* Fill glyph string S from stretch glyph S->first_glyph. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4202
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
4203 static void
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4204 x_fill_stretch_glyph_string (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4205 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4206 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4207 xassert (s->first_glyph->type == STRETCH_GLYPH);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4208 s->face = FACE_FROM_ID (s->f, s->first_glyph->face_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4209 s->font = s->face->font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4210 s->width = s->first_glyph->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4211
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4212 /* Adjust base line for subscript/superscript text. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4213 s->ybase += s->first_glyph->voffset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4214 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4215
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4216
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4217 /* Initialize glyph string S. CHAR2B is a suitably allocated vector
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4218 of XChar2b structures for S; it can't be allocated in
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4219 x_init_glyph_string because it must be allocated via `alloca'. W
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4220 is the window on which S is drawn. ROW and AREA are the glyph row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4221 and area within the row from which S is constructed. START is the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4222 index of the first glyph structure covered by S. HL is a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4223 face-override for drawing S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4224
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4225 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4226 w32_init_glyph_string (s, hdc, char2b, w, row, area, start, hl)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4227 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4228 HDC hdc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4229 wchar_t *char2b;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4230 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4231 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4232 enum glyph_row_area area;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4233 int start;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4234 enum draw_glyphs_face hl;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4235 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4236 bzero (s, sizeof *s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4237 s->w = w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4238 s->f = XFRAME (w->frame);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4239 s->hdc = hdc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4240 s->window = FRAME_W32_WINDOW (s->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4241 s->char2b = char2b;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4242 s->hl = hl;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4243 s->row = row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4244 s->area = area;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4245 s->first_glyph = row->glyphs[area] + start;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4246 s->height = row->height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4247 s->y = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4248
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4249 /* Display the internal border below the tool-bar window. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4250 if (s->w == XWINDOW (s->f->tool_bar_window))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4251 s->y -= s->f->output_data.w32->internal_border_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4252
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4253 s->ybase = s->y + row->ascent;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4254 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4255
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4256
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4257 /* Set background width of glyph string S. START is the index of the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4258 first glyph following S. LAST_X is the right-most x-position + 1
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4259 in the drawing area. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4260
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4261 static INLINE void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4262 x_set_glyph_string_background_width (s, start, last_x)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4263 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4264 int start;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4265 int last_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4266 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4267 /* If the face of this glyph string has to be drawn to the end of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4268 the drawing area, set S->extends_to_end_of_line_p. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4269 struct face *default_face = FACE_FROM_ID (s->f, DEFAULT_FACE_ID);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4270
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4271 if (start == s->row->used[s->area]
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4272 && s->hl == DRAW_NORMAL_TEXT
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4273 && ((s->area == TEXT_AREA && s->row->fill_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4274 || s->face->background != default_face->background
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4275 || s->face->stipple != default_face->stipple))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4276 s->extends_to_end_of_line_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4277
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4278 /* If S extends its face to the end of the line, set its
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4279 background_width to the distance to the right edge of the drawing
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4280 area. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4281 if (s->extends_to_end_of_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4282 s->background_width = last_x - s->x + 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4283 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4284 s->background_width = s->width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4285 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4286
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4287
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4288 /* Add a glyph string for a stretch glyph to the list of strings
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4289 between HEAD and TAIL. START is the index of the stretch glyph in
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4290 row area AREA of glyph row ROW. END is the index of the last glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4291 in that glyph row area. X is the current output position assigned
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4292 to the new glyph string constructed. HL overrides that face of the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4293 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4294 is the right-most x-position of the drawing area. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4295
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4296 #define BUILD_STRETCH_GLYPH_STRING(hdc, W, ROW, AREA, START, END, HEAD, TAIL, HL, X, LAST_X) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4297 do \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4298 { \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4299 s = (struct glyph_string *) alloca (sizeof *s); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4300 w32_init_glyph_string (s, hdc, NULL, W, ROW, AREA, START, HL); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4301 x_fill_stretch_glyph_string (s); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4302 x_append_glyph_string (&HEAD, &TAIL, s); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4303 ++START; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4304 s->x = (X); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4305 } \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4306 while (0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4307
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4308
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4309 /* Add a glyph string for an image glyph to the list of strings
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4310 between HEAD and TAIL. START is the index of the image glyph in
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4311 row area AREA of glyph row ROW. END is the index of the last glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4312 in that glyph row area. X is the current output position assigned
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4313 to the new glyph string constructed. HL overrides that face of the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4314 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4315 is the right-most x-position of the drawing area. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4316
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4317 #define BUILD_IMAGE_GLYPH_STRING(hdc, W, ROW, AREA, START, END, HEAD, TAIL, HL, X, LAST_X) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4318 do \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4319 { \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4320 s = (struct glyph_string *) alloca (sizeof *s); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4321 w32_init_glyph_string (s, hdc, NULL, W, ROW, AREA, START, HL); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4322 x_fill_image_glyph_string (s); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4323 x_append_glyph_string (&HEAD, &TAIL, s); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4324 ++START; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4325 s->x = (X); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4326 } \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4327 while (0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4328
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4329
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4330 /* Add a glyph string for a sequence of character glyphs to the list
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4331 of strings between HEAD and TAIL. START is the index of the first
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4332 glyph in row area AREA of glyph row ROW that is part of the new
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4333 glyph string. END is the index of the last glyph in that glyph row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4334 area. X is the current output position assigned to the new glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4335 string constructed. HL overrides that face of the glyph; e.g. it
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4336 is DRAW_CURSOR if a cursor has to be drawn. LAST_X is the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4337 right-most x-position of the drawing area. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4338
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4339 #define BUILD_CHAR_GLYPH_STRINGS(hdc, W, ROW, AREA, START, END, HEAD, TAIL, HL, X, LAST_X, OVERLAPS_P) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4340 do \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4341 { \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4342 int c, charset, face_id; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4343 wchar_t *char2b; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4344 \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4345 c = (ROW)->glyphs[AREA][START].u.ch; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4346 charset = CHAR_CHARSET (c); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4347 face_id = (ROW)->glyphs[AREA][START].face_id; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4348 s = (struct glyph_string *) alloca (sizeof *s); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4349 char2b = (wchar_t *) alloca ((END - START) * sizeof *char2b); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4350 w32_init_glyph_string (s, hdc, char2b, W, ROW, AREA, START, HL); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4351 x_append_glyph_string (&HEAD, &TAIL, s); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4352 s->charset = charset; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4353 s->x = (X); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4354 START = x_fill_glyph_string (s, face_id, START, END, \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4355 OVERLAPS_P); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4356 } \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4357 while (0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4358
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4359
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4360 /* Add a glyph string for a composite sequence to the list of strings
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4361 between HEAD and TAIL. START is the index of the first glyph in
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4362 row area AREA of glyph row ROW that is part of the new glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4363 string. END is the index of the last glyph in that glyph row area.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4364 X is the current output position assigned to the new glyph string
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4365 constructed. HL overrides that face of the glyph; e.g. it is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4366 DRAW_CURSOR if a cursor has to be drawn. LAST_X is the right-most
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4367 x-position of the drawing area. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4368
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4369 #define BUILD_COMPOSITE_GLYPH_STRING(hdc, W, ROW, AREA, START, END, HEAD, TAIL, HL, X, LAST_X, OVERLAPS_P) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4370 do { \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4371 int cmp_id = (ROW)->glyphs[AREA][START].u.cmp_id; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4372 int face_id = (ROW)->glyphs[AREA][START].face_id; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4373 struct composition *cmp = composition_table[cmp_id]; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4374 int glyph_len = cmp->glyph_len; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4375 wchar_t *char2b; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4376 struct face **faces; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4377 struct glyph_string *first_s = NULL; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4378 int n; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4379 \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4380 char2b = (wchar_t *) alloca ((sizeof *char2b) * glyph_len); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4381 faces = (struct face **) alloca ((sizeof *faces) * glyph_len); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4382 /* At first, fill in `char2b' and `faces'. */ \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4383 for (n = 0; n < glyph_len; n++) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4384 { \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4385 int c = COMPOSITION_GLYPH (cmp, n); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4386 faces[n] = x_get_char_face_and_encoding (XFRAME (w->frame), c, \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4387 face_id, char2b + n, 1); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4388 } \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4389 \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4390 /* Make glyph_strings for each glyph sequence that is drawable by \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4391 the same face, and append them to HEAD/TAIL. */ \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4392 for (n = 0; n < cmp->glyph_len;) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4393 { \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4394 s = (struct glyph_string *) alloca (sizeof *s); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4395 w32_init_glyph_string (s, hdc, char2b + n, W, ROW, AREA, START, HL); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4396 x_append_glyph_string (&(HEAD), &(TAIL), s); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4397 s->cmp = cmp; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4398 s->gidx = n; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4399 s->charset = 0; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4400 s->x = (X); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4401 \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4402 if (n == 0) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4403 first_s = s; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4404 \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4405 n = x_fill_composite_glyph_string (s, faces, OVERLAPS_P); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4406 } \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4407 \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4408 ++START; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4409 s = first_s; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4410 } while (0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4411
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4412 /* Build a list of glyph strings between HEAD and TAIL for the glyphs
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4413 of AREA of glyph row ROW on window W between indices START and END.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4414 HL overrides the face for drawing glyph strings, e.g. it is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4415 DRAW_CURSOR to draw a cursor. X and LAST_X are start and end
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4416 x-positions of the drawing area.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4417
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4418 This is an ugly monster macro construct because we must use alloca
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4419 to allocate glyph strings (because x_draw_glyphs can be called
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4420 asynchronously). */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4421
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4422 #define BUILD_GLYPH_STRINGS(hdc, W, ROW, AREA, START, END, HEAD, TAIL, HL, X, LAST_X, OVERLAPS_P) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4423 do \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4424 { \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4425 HEAD = TAIL = NULL; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4426 while (START < END) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4427 { \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4428 struct glyph *first_glyph = (ROW)->glyphs[AREA] + START; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4429 switch (first_glyph->type) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4430 { \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4431 case CHAR_GLYPH: \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4432 BUILD_CHAR_GLYPH_STRINGS (hdc, W, ROW, AREA, START, END, \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4433 HEAD, TAIL, HL, X, LAST_X, \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4434 OVERLAPS_P); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4435 break; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4436 \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4437 case COMPOSITE_GLYPH: \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4438 BUILD_COMPOSITE_GLYPH_STRING (hdc, W, ROW, AREA, START, \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4439 END, HEAD, TAIL, HL, X, \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4440 LAST_X, OVERLAPS_P); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4441 break; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4442 \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4443 case STRETCH_GLYPH: \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4444 BUILD_STRETCH_GLYPH_STRING (hdc, W, ROW, AREA, START, END,\
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4445 HEAD, TAIL, HL, X, LAST_X); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4446 break; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4447 \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4448 case IMAGE_GLYPH: \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4449 BUILD_IMAGE_GLYPH_STRING (hdc, W, ROW, AREA, START, END, \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4450 HEAD, TAIL, HL, X, LAST_X); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4451 break; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4452 \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4453 default: \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4454 abort (); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4455 } \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4456 \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4457 x_set_glyph_string_background_width (s, START, LAST_X); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4458 (X) += s->width; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4459 } \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4460 } \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4461 while (0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4462
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4463
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4464 /* Draw glyphs between START and END in AREA of ROW on window W,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4465 starting at x-position X. X is relative to AREA in W. HL is a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4466 face-override with the following meaning:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4467
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4468 DRAW_NORMAL_TEXT draw normally
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4469 DRAW_CURSOR draw in cursor face
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4470 DRAW_MOUSE_FACE draw in mouse face.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4471 DRAW_INVERSE_VIDEO draw in mode line face
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4472 DRAW_IMAGE_SUNKEN draw an image with a sunken relief around it
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4473 DRAW_IMAGE_RAISED draw an image with a raised relief around it
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4474
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4475 If REAL_START is non-null, return in *REAL_START the real starting
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4476 position for display. This can be different from START in case
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4477 overlapping glyphs must be displayed. If REAL_END is non-null,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4478 return in *REAL_END the real end position for display. This can be
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4479 different from END in case overlapping glyphs must be displayed.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4480
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4481 If OVERLAPS_P is non-zero, draw only the foreground of characters
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4482 and clip to the physical height of ROW.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4483
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4484 Value is the x-position reached, relative to AREA of W. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4485
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4486 static int
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4487 x_draw_glyphs (w, x, row, area, start, end, hl, real_start, real_end,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4488 overlaps_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4489 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4490 int x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4491 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4492 enum glyph_row_area area;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4493 int start, end;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4494 enum draw_glyphs_face hl;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4495 int *real_start, *real_end;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4496 int overlaps_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4497 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4498 struct glyph_string *head, *tail;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4499 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4500 int last_x, area_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4501 int x_reached;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4502 int i, j;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4503 HDC hdc = get_frame_dc (XFRAME (WINDOW_FRAME (w)));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4504
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4505 /* Let's rather be paranoid than getting a SEGV. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4506 start = max (0, start);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4507 end = min (end, row->used[area]);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4508 if (real_start)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4509 *real_start = start;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4510 if (real_end)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4511 *real_end = end;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4512
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4513 /* Translate X to frame coordinates. Set last_x to the right
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4514 end of the drawing area. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4515 if (row->full_width_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4516 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4517 struct frame *f = XFRAME (WINDOW_FRAME (w));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4518
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4519 /* X is relative to the left edge of W, without scroll bars
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4520 or flag areas. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4521 /* int width = FRAME_FLAGS_AREA_WIDTH (f); */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4522 int window_left_x = WINDOW_LEFT_MARGIN (w) * CANON_X_UNIT (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4523
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4524 x += window_left_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4525 area_width = XFASTINT (w->width) * CANON_X_UNIT (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4526 last_x = window_left_x + area_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4527
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4528 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4529 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4530 int width = FRAME_SCROLL_BAR_WIDTH (f) * CANON_X_UNIT (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4531 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4532 last_x += width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4533 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4534 x -= width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4535 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4536
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4537 x += FRAME_INTERNAL_BORDER_WIDTH (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4538 last_x -= FRAME_INTERNAL_BORDER_WIDTH (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4539 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4540 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4541 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4542 x = WINDOW_AREA_TO_FRAME_PIXEL_X (w, area, x);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4543 area_width = window_box_width (w, area);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4544 last_x = WINDOW_AREA_TO_FRAME_PIXEL_X (w, area, area_width);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4545 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4546
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4547 /* Build a doubly-linked list of glyph_string structures between
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4548 head and tail from what we have to draw. Note that the macro
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4549 BUILD_GLYPH_STRINGS will modify its start parameter. That's
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4550 the reason we use a separate variable `i'. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4551 i = start;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4552 BUILD_GLYPH_STRINGS (hdc, w, row, area, i, end, head, tail, hl, x, last_x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4553 overlaps_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4554
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4555 if (tail)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4556 x_reached = tail->x + tail->background_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4557 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4558 x_reached = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4559
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4560 /* If there are any glyphs with lbearing < 0 or rbearing > width in
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4561 the row, redraw some glyphs in front or following the glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4562 strings built above. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4563 if (!overlaps_p && row->contains_overlapping_glyphs_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4564 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4565 int dummy_x = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4566 struct glyph_string *h, *t;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4567
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4568 /* Compute overhangs for all glyph strings. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4569 for (s = head; s; s = s->next)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4570 x_compute_glyph_string_overhangs (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4571
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4572 /* Prepend glyph strings for glyphs in front of the first glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4573 string that are overwritten because of the first glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4574 string's left overhang. The background of all strings
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4575 prepended must be drawn because the first glyph string
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4576 draws over it. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4577 i = x_left_overwritten (head);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4578 if (i >= 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4579 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4580 j = i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4581 BUILD_GLYPH_STRINGS (hdc, w, row, area, j, start, h, t,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4582 DRAW_NORMAL_TEXT, dummy_x, last_x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4583 overlaps_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4584 start = i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4585 if (real_start)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4586 *real_start = start;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4587 x_compute_overhangs_and_x (t, head->x, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4588 x_prepend_glyph_string_lists (&head, &tail, h, t);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4589 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4590
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4591 /* Prepend glyph strings for glyphs in front of the first glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4592 string that overwrite that glyph string because of their
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4593 right overhang. For these strings, only the foreground must
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4594 be drawn, because it draws over the glyph string at `head'.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4595 The background must not be drawn because this would overwrite
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4596 right overhangs of preceding glyphs for which no glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4597 strings exist. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4598 i = x_left_overwriting (head);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4599 if (i >= 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4600 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4601 BUILD_GLYPH_STRINGS (hdc, w, row, area, i, start, h, t,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4602 DRAW_NORMAL_TEXT, dummy_x, last_x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4603 overlaps_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4604
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4605 for (s = h; s; s = s->next)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4606 s->background_filled_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4607 if (real_start)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4608 *real_start = i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4609 x_compute_overhangs_and_x (t, head->x, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4610 x_prepend_glyph_string_lists (&head, &tail, h, t);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4611 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4612
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4613 /* Append glyphs strings for glyphs following the last glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4614 string tail that are overwritten by tail. The background of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4615 these strings has to be drawn because tail's foreground draws
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4616 over it. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4617 i = x_right_overwritten (tail);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4618 if (i >= 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4619 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4620 BUILD_GLYPH_STRINGS (hdc, w, row, area, end, i, h, t,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4621 DRAW_NORMAL_TEXT, x, last_x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4622 overlaps_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4623
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4624 x_compute_overhangs_and_x (h, tail->x + tail->width, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4625 x_append_glyph_string_lists (&head, &tail, h, t);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4626 if (real_end)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4627 *real_end = i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4628 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4629
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4630 /* Append glyph strings for glyphs following the last glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4631 string tail that overwrite tail. The foreground of such
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4632 glyphs has to be drawn because it writes into the background
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4633 of tail. The background must not be drawn because it could
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4634 paint over the foreground of following glyphs. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4635 i = x_right_overwriting (tail);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4636 if (i >= 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4637 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4638 BUILD_GLYPH_STRINGS (hdc, w, row, area, end, i, h, t,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4639 DRAW_NORMAL_TEXT, x, last_x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4640 overlaps_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4641
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4642 for (s = h; s; s = s->next)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4643 s->background_filled_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4644 x_compute_overhangs_and_x (h, tail->x + tail->width, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4645 x_append_glyph_string_lists (&head, &tail, h, t);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4646 if (real_end)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4647 *real_end = i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4648 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4649 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4650
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4651 /* Draw all strings. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4652 for (s = head; s; s = s->next)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4653 x_draw_glyph_string (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4654
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4655 /* Value is the x-position up to which drawn, relative to AREA of W.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4656 This doesn't include parts drawn because of overhangs. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4657 x_reached = FRAME_TO_WINDOW_PIXEL_X (w, x_reached);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4658 if (!row->full_width_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4659 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4660 if (area > LEFT_MARGIN_AREA)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4661 x_reached -= window_box_width (w, LEFT_MARGIN_AREA);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4662 if (area > TEXT_AREA)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4663 x_reached -= window_box_width (w, TEXT_AREA);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4664 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4665
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4666 release_frame_dc (XFRAME (WINDOW_FRAME (w)), hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4667
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4668 return x_reached;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4669 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4670
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4671
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4672 /* Fix the display of area AREA of overlapping row ROW in window W. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4673
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4674 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4675 x_fix_overlapping_area (w, row, area)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4676 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4677 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4678 enum glyph_row_area area;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4679 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4680 int i, x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4681
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4682 BLOCK_INPUT;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4683
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4684 if (area == LEFT_MARGIN_AREA)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4685 x = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4686 else if (area == TEXT_AREA)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4687 x = row->x + window_box_width (w, LEFT_MARGIN_AREA);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4688 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4689 x = (window_box_width (w, LEFT_MARGIN_AREA)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4690 + window_box_width (w, TEXT_AREA));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4691
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4692 for (i = 0; i < row->used[area];)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4693 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4694 if (row->glyphs[area][i].overlaps_vertically_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4695 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4696 int start = i, start_x = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4697
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4698 do
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4699 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4700 x += row->glyphs[area][i].pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4701 ++i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4702 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4703 while (i < row->used[area]
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4704 && row->glyphs[area][i].overlaps_vertically_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4705
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4706 x_draw_glyphs (w, start_x, row, area, start, i,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4707 (row->inverse_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4708 ? DRAW_INVERSE_VIDEO : DRAW_NORMAL_TEXT),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4709 NULL, NULL, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4710 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4711 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4712 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4713 x += row->glyphs[area][i].pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4714 ++i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4715 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4716 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4717
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4718 UNBLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4719 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4720
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4721
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4722 /* Output LEN glyphs starting at START at the nominal cursor position.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4723 Advance the nominal cursor over the text. The global variable
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4724 updated_window contains the window being updated, updated_row is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4725 the glyph row being updated, and updated_area is the area of that
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4726 row being updated. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4727
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4728 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4729 x_write_glyphs (start, len)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4730 struct glyph *start;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4731 int len;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4732 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4733 int x, hpos, real_start, real_end;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4734
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4735 xassert (updated_window && updated_row);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4736 BLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4737
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4738 /* Write glyphs. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4739
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4740 hpos = start - updated_row->glyphs[updated_area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4741 x = x_draw_glyphs (updated_window, output_cursor.x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4742 updated_row, updated_area,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4743 hpos, hpos + len,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4744 (updated_row->inverse_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4745 ? DRAW_INVERSE_VIDEO : DRAW_NORMAL_TEXT),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4746 &real_start, &real_end, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4747
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4748 /* If we drew over the cursor, note that it is not visible any more. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4749 note_overwritten_text_cursor (updated_window, real_start,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4750 real_end - real_start);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4751
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4752 UNBLOCK_INPUT;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4753
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4754 /* Advance the output cursor. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4755 output_cursor.hpos += len;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4756 output_cursor.x = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4757 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4758
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4759
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4760 /* Insert LEN glyphs from START at the nominal cursor position. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4761
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4762 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4763 x_insert_glyphs (start, len)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4764 struct glyph *start;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4765 register int len;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4766 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4767 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4768 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4769 int line_height, shift_by_width, shifted_region_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4770 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4771 struct glyph *glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4772 int frame_x, frame_y, hpos, real_start, real_end;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4773 HDC hdc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4774
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4775 xassert (updated_window && updated_row);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4776 BLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4777 w = updated_window;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4778 f = XFRAME (WINDOW_FRAME (w));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4779 hdc = get_frame_dc (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4780
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4781 /* Get the height of the line we are in. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4782 row = updated_row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4783 line_height = row->height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4784
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4785 /* Get the width of the glyphs to insert. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4786 shift_by_width = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4787 for (glyph = start; glyph < start + len; ++glyph)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4788 shift_by_width += glyph->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4789
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4790 /* Get the width of the region to shift right. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4791 shifted_region_width = (window_box_width (w, updated_area)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4792 - output_cursor.x
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4793 - shift_by_width);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4794
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4795 /* Shift right. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4796 frame_x = WINDOW_TO_FRAME_PIXEL_X (w, output_cursor.x);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4797 frame_y = WINDOW_TO_FRAME_PIXEL_Y (w, output_cursor.y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4798 BitBlt (hdc, frame_x + shift_by_width, frame_y,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4799 shifted_region_width, line_height,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4800 hdc, frame_x, frame_y, SRCCOPY);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4801
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4802 /* Write the glyphs. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4803 hpos = start - row->glyphs[updated_area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4804 x_draw_glyphs (w, output_cursor.x, row, updated_area, hpos, hpos + len,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4805 DRAW_NORMAL_TEXT, &real_start, &real_end, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4806 note_overwritten_text_cursor (w, real_start, real_end - real_start);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4807
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4808 /* Advance the output cursor. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4809 output_cursor.hpos += len;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4810 output_cursor.x += shift_by_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4811 release_frame_dc (f, hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4812
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4813 UNBLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4814 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4815
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4816
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4817 /* Delete N glyphs at the nominal cursor position. Not implemented
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4818 for X frames. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4819
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4820 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4821 x_delete_glyphs (n)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4822 register int n;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4823 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4824 abort ();
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4825 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4826
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4827
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4828 /* Erase the current text line from the nominal cursor position
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4829 (inclusive) to pixel column TO_X (exclusive). The idea is that
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4830 everything from TO_X onward is already erased.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4831
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4832 TO_X is a pixel position relative to updated_area of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4833 updated_window. TO_X == -1 means clear to the end of this area. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4834
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
4835 static void
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4836 x_clear_end_of_line (to_x)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4837 int to_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4838 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4839 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4840 struct window *w = updated_window;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4841 int max_x, min_y, max_y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4842 int from_x, from_y, to_y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4843
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4844 xassert (updated_window && updated_row);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4845 f = XFRAME (w->frame);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4846
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4847 if (updated_row->full_width_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4848 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4849 max_x = XFASTINT (w->width) * CANON_X_UNIT (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4850 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4851 && !w->pseudo_window_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4852 max_x += FRAME_SCROLL_BAR_WIDTH (f) * CANON_X_UNIT (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4853 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4854 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4855 max_x = window_box_width (w, updated_area);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4856 max_y = window_text_bottom_y (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4857
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4858 /* TO_X == 0 means don't do anything. TO_X < 0 means clear to end
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4859 of window. For TO_X > 0, truncate to end of drawing area. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4860 if (to_x == 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4861 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4862 else if (to_x < 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4863 to_x = max_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4864 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4865 to_x = min (to_x, max_x);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4866
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4867 to_y = min (max_y, output_cursor.y + updated_row->height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4868
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4869 /* Notice if the cursor will be cleared by this operation. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4870 if (!updated_row->full_width_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4871 note_overwritten_text_cursor (w, output_cursor.hpos, -1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4872
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4873 from_x = output_cursor.x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4874
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4875 /* Translate to frame coordinates. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4876 if (updated_row->full_width_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4877 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4878 from_x = WINDOW_TO_FRAME_PIXEL_X (w, from_x);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4879 to_x = WINDOW_TO_FRAME_PIXEL_X (w, to_x);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4880 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4881 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4882 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4883 from_x = WINDOW_AREA_TO_FRAME_PIXEL_X (w, updated_area, from_x);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4884 to_x = WINDOW_AREA_TO_FRAME_PIXEL_X (w, updated_area, to_x);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4885 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4886
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4887 min_y = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4888 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, max (min_y, output_cursor.y));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4889 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, to_y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4890
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4891 /* Prevent inadvertently clearing to end of the X window. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4892 if (to_x > from_x && to_y > from_y)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4893 {
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
4894 HDC hdc;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4895 BLOCK_INPUT;
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
4896 hdc = get_frame_dc (f);
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
4897
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
4898 w32_clear_area (f, hdc, from_x, from_y, to_x - from_x, to_y - from_y);
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
4899 release_frame_dc (f, hdc);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4900 UNBLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4901 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4902 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4903
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4904
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4905 /* Clear entire frame. If updating_frame is non-null, clear that
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4906 frame. Otherwise clear the selected frame. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4907
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4908 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4909 x_clear_frame ()
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4910 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4911 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4912
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4913 if (updating_frame)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4914 f = updating_frame;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4915 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4916 f = SELECTED_FRAME ();
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4917
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4918 /* Clearing the frame will erase any cursor, so mark them all as no
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4919 longer visible. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4920 mark_window_cursors_off (XWINDOW (FRAME_ROOT_WINDOW (f)));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4921 output_cursor.hpos = output_cursor.vpos = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4922 output_cursor.x = -1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4923
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4924 /* We don't set the output cursor here because there will always
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4925 follow an explicit cursor_to. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4926 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4927
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
4928 w32_clear_window (f);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4929
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4930 /* We have to clear the scroll bars, too. If we have changed
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4931 colors or something like that, then they should be notified. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4932 x_scroll_bar_clear (f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4933
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4934 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4935 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4936
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4937
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4938 /* Make audible bell. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4939
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
4940 static void
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
4941 w32_ring_bell (void)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4942 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4943 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4944
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4945 if (visible_bell)
22059
23fda104cd36 (w32_ring_bell): Flash window correctly.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21885
diff changeset
4946 {
23fda104cd36 (w32_ring_bell): Flash window correctly.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21885
diff changeset
4947 int i;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4948 HWND hwnd = FRAME_W32_WINDOW (SELECTED_FRAME ());
22059
23fda104cd36 (w32_ring_bell): Flash window correctly.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21885
diff changeset
4949
23fda104cd36 (w32_ring_bell): Flash window correctly.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21885
diff changeset
4950 for (i = 0; i < 5; i++)
23fda104cd36 (w32_ring_bell): Flash window correctly.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21885
diff changeset
4951 {
23fda104cd36 (w32_ring_bell): Flash window correctly.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21885
diff changeset
4952 FlashWindow (hwnd, TRUE);
23fda104cd36 (w32_ring_bell): Flash window correctly.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21885
diff changeset
4953 Sleep (10);
23fda104cd36 (w32_ring_bell): Flash window correctly.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21885
diff changeset
4954 }
23fda104cd36 (w32_ring_bell): Flash window correctly.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21885
diff changeset
4955 FlashWindow (hwnd, FALSE);
23fda104cd36 (w32_ring_bell): Flash window correctly.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21885
diff changeset
4956 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4957 else
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
4958 w32_sys_ring_bell ();
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4959
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4960 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4961 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4962
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4963
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4964 /* Specify how many text lines, from the top of the window,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4965 should be affected by insert-lines and delete-lines operations.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4966 This, and those operations, are used only within an update
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4967 that is bounded by calls to x_update_begin and x_update_end. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4968
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
4969 static void
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
4970 w32_set_terminal_window (n)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4971 register int n;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4972 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4973 /* This function intentionally left blank. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4974 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4975
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4976
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4977
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4978 /***********************************************************************
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4979 Line Dance
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4980 ***********************************************************************/
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4981
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4982 /* Perform an insert-lines or delete-lines operation, inserting N
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4983 lines or deleting -N lines at vertical position VPOS. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4984
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4985 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4986 x_ins_del_lines (vpos, n)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4987 int vpos, n;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4988 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4989 abort ();
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4990 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4991
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4992
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4993 /* Scroll part of the display as described by RUN. */
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
4994
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
4995 static void
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4996 x_scroll_run (w, run)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4997 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4998 struct run *run;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4999 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5000 struct frame *f = XFRAME (w->frame);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5001 int x, y, width, height, from_y, to_y, bottom_y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5002 HDC hdc = get_frame_dc (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5003
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5004 /* Get frame-relative bounding box of the text display area of W,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5005 without mode lines. Include in this box the flags areas to the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5006 left and right of W. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5007 window_box (w, -1, &x, &y, &width, &height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5008 width += FRAME_X_FLAGS_AREA_WIDTH (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5009 x -= FRAME_X_LEFT_FLAGS_AREA_WIDTH (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5010
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5011 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->current_y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5012 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->desired_y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5013 bottom_y = y + height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5014
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5015 if (to_y < from_y)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5016 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5017 /* Scrolling up. Make sure we don't copy part of the mode
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5018 line at the bottom. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5019 if (from_y + run->height > bottom_y)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5020 height = bottom_y - from_y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5021 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5022 height = run->height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5023 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5024 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5025 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5026 /* Scolling down. Make sure we don't copy over the mode line.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5027 at the bottom. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5028 if (to_y + run->height > bottom_y)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5029 height = bottom_y - to_y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5030 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5031 height = run->height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5032 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5033
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5034 BLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5035
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5036 /* Cursor off. Will be switched on again in x_update_window_end. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5037 updated_window = w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5038 x_clear_cursor (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5039
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5040 BitBlt (hdc, x, to_y, width, height, hdc, x, from_y, SRCCOPY);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5041
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5042 UNBLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5043 release_frame_dc (f, hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5044 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5045
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5046
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5047 /***********************************************************************
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5048 Exposure Events
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5049 ***********************************************************************/
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5050
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5051 /* Redisplay an exposed area of frame F. X and Y are the upper-left
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5052 corner of the exposed rectangle. W and H are width and height of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5053 the exposed area. All are pixel values. W or H zero means redraw
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5054 the entire frame. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5055
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5056 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5057 expose_frame (f, x, y, w, h)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5058 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5059 int x, y, w, h;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5060 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5061 RECT r;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5062
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5063 TRACE ((stderr, "expose_frame "));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5064
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5065 /* No need to redraw if frame will be redrawn soon. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5066 if (FRAME_GARBAGED_P (f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5067 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5068 TRACE ((stderr, " garbaged\n"));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5069 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5070 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5071
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5072 /* If basic faces haven't been realized yet, there is no point in
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5073 trying to redraw anything. This can happen when we get an expose
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5074 event while Emacs is starting, e.g. by moving another window. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5075 if (FRAME_FACE_CACHE (f) == NULL
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5076 || FRAME_FACE_CACHE (f)->used < BASIC_FACE_ID_SENTINEL)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5077 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5078 TRACE ((stderr, " no faces\n"));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5079 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5080 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5081
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5082 if (w == 0 || h == 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5083 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5084 r.left = r.top = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5085 r.right = CANON_X_UNIT (f) * f->width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5086 r.bottom = CANON_Y_UNIT (f) * f->height;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5087 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5088 else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5089 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5090 r.left = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5091 r.top = y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5092 r.right = x + w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5093 r.bottom = y + h;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5094 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5095
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5096 TRACE ((stderr, "(%d, %d, %d, %d)\n", r.left, r.top, r.right, r.bottom));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5097 expose_window_tree (XWINDOW (f->root_window), &r);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5098
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5099 if (WINDOWP (f->tool_bar_window))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5100 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5101 struct window *w = XWINDOW (f->tool_bar_window);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5102 RECT window_rect;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5103 RECT intersection_rect;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5104 int window_x, window_y, window_width, window_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5105
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5106 window_box (w, -1, &window_x, &window_y, &window_width, &window_height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5107 window_rect.left = window_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5108 window_rect.top = window_y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5109 window_rect.right = window_x + window_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5110 window_rect.bottom = window_y + window_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5111
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5112 if (w32_intersect_rectangles (&r, &window_rect, &intersection_rect))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5113 expose_window (w, &intersection_rect);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5114 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5115 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5116
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5117
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5118 /* Redraw (parts) of all windows in the window tree rooted at W that
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5119 intersect R. R contains frame pixel coordinates. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5120
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5121 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5122 expose_window_tree (w, r)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5123 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5124 RECT *r;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5125 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5126 while (w)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5127 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5128 if (!NILP (w->hchild))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5129 expose_window_tree (XWINDOW (w->hchild), r);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5130 else if (!NILP (w->vchild))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5131 expose_window_tree (XWINDOW (w->vchild), r);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5132 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5133 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5134 RECT window_rect;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5135 RECT intersection_rect;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5136 struct frame *f = XFRAME (w->frame);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5137 int window_x, window_y, window_width, window_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5138
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5139 /* Frame-relative pixel rectangle of W. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5140 window_box (w, -1, &window_x, &window_y, &window_width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5141 &window_height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5142 window_rect.left
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5143 = (window_x
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5144 - FRAME_X_LEFT_FLAGS_AREA_WIDTH (f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5145 - FRAME_LEFT_SCROLL_BAR_WIDTH (f) * CANON_Y_UNIT (f));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5146 window_rect.top = window_y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5147 window_rect.right = window_rect.left
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5148 + (window_width
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5149 + FRAME_X_FLAGS_AREA_WIDTH (f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5150 + FRAME_SCROLL_BAR_WIDTH (f) * CANON_X_UNIT (f));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5151 window_rect.bottom = window_rect.top
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5152 + window_height + CURRENT_MODE_LINE_HEIGHT (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5153
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5154 if (w32_intersect_rectangles (r, &window_rect, &intersection_rect))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5155 expose_window (w, &intersection_rect);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5156 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5157
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5158 w = NILP (w->next) ? 0 : XWINDOW (w->next);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5159 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5160 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5161
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5162
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5163 /* Redraw the part of glyph row area AREA of glyph row ROW on window W
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5164 which intersects rectangle R. R is in window-relative coordinates. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5165
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5166 static void
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5167 expose_area (w, row, r, area)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5168 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5169 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5170 RECT *r;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5171 enum glyph_row_area area;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5172 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5173 int x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5174 struct glyph *first = row->glyphs[area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5175 struct glyph *end = row->glyphs[area] + row->used[area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5176 struct glyph *last;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5177 int first_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5178
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5179 /* Set x to the window-relative start position for drawing glyphs of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5180 AREA. The first glyph of the text area can be partially visible.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5181 The first glyphs of other areas cannot. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5182 if (area == LEFT_MARGIN_AREA)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5183 x = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5184 else if (area == TEXT_AREA)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5185 x = row->x + window_box_width (w, LEFT_MARGIN_AREA);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5186 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5187 x = (window_box_width (w, LEFT_MARGIN_AREA)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5188 + window_box_width (w, TEXT_AREA));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5189
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5190 if (area == TEXT_AREA && row->fill_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5191 /* If row extends face to end of line write the whole line. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5192 x_draw_glyphs (w, x, row, area,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5193 0, row->used[area],
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5194 row->inverse_p ? DRAW_INVERSE_VIDEO : DRAW_NORMAL_TEXT,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5195 NULL, NULL, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5196 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5197 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5198 /* Find the first glyph that must be redrawn. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5199 while (first < end
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5200 && x + first->pixel_width < r->left)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5201 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5202 x += first->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5203 ++first;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5204 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5205
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5206 /* Find the last one. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5207 last = first;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5208 first_x = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5209 while (last < end
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5210 && x < r->right)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5211 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5212 x += last->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5213 ++last;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5214 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5215
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5216 /* Repaint. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5217 if (last > first)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5218 x_draw_glyphs (w, first_x, row, area,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5219 first - row->glyphs[area],
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5220 last - row->glyphs[area],
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5221 row->inverse_p ? DRAW_INVERSE_VIDEO : DRAW_NORMAL_TEXT,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5222 NULL, NULL, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5223 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5224 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5225
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5226
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5227 /* Redraw the parts of the glyph row ROW on window W intersecting
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5228 rectangle R. R is in window-relative coordinates. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5229
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5230 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5231 expose_line (w, row, r)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5232 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5233 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5234 RECT *r;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5235 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5236 xassert (row->enabled_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5237
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5238 if (row->mode_line_p || w->pseudo_window_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5239 x_draw_glyphs (w, 0, row, TEXT_AREA, 0, row->used[TEXT_AREA],
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5240 row->inverse_p ? DRAW_INVERSE_VIDEO : DRAW_NORMAL_TEXT,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5241 NULL, NULL, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5242 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5243 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5244 if (row->used[LEFT_MARGIN_AREA])
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5245 expose_area (w, row, r, LEFT_MARGIN_AREA);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5246 if (row->used[TEXT_AREA])
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5247 expose_area (w, row, r, TEXT_AREA);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5248 if (row->used[RIGHT_MARGIN_AREA])
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5249 expose_area (w, row, r, RIGHT_MARGIN_AREA);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5250 x_draw_row_bitmaps (w, row);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5251 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5252 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5253
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5254
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5255 /* Return non-zero if W's cursor intersects rectangle R. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5256
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5257 static int
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5258 x_phys_cursor_in_rect_p (w, r)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5259 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5260 RECT *r;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5261 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5262 RECT cr, result;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5263 struct glyph *cursor_glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5264
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5265 cursor_glyph = get_phys_cursor_glyph (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5266 if (cursor_glyph)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5267 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5268 cr.left = w->phys_cursor.x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5269 cr.top = w->phys_cursor.y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5270 cr.right = cr.left + cursor_glyph->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5271 cr.bottom = cr.top + w->phys_cursor_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5272 return w32_intersect_rectangles (&cr, r, &result);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5273 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5274 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5275 return 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5276 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5277
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5278
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5279 /* Redraw a rectangle of window W. R is a rectangle in window
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5280 relative coordinates. Call this function with input blocked. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5281
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5282 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5283 expose_window (w, r)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5284 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5285 RECT *r;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5286 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5287 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5288 int y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5289 int yb = window_text_bottom_y (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5290 int cursor_cleared_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5291
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5292 /* If window is not yet fully initialized, do nothing. This can
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5293 happen when toolkit scroll bars are used and a window is split.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5294 Reconfiguring the scroll bar will generate an expose for a newly
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5295 created window. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5296 if (w->current_matrix == NULL)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5297 return;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5298
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5299 TRACE ((stderr, "expose_window (%d, %d, %d, %d)\n",
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5300 r->left, r->top, r->right, r->bottom));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5301
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5302 /* Convert to window coordinates. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5303 r->left = FRAME_TO_WINDOW_PIXEL_X (w, r->left);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5304 r->top = FRAME_TO_WINDOW_PIXEL_Y (w, r->top);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5305 r->right = FRAME_TO_WINDOW_PIXEL_X (w, r->right);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5306 r->bottom = FRAME_TO_WINDOW_PIXEL_Y (w, r->bottom);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5307
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5308 /* Turn off the cursor. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5309 if (!w->pseudo_window_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5310 && x_phys_cursor_in_rect_p (w, r))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5311 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5312 x_clear_cursor (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5313 cursor_cleared_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5314 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5315 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5316 cursor_cleared_p = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5317
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5318 /* Find the first row intersecting the rectangle R. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5319 row = w->current_matrix->rows;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5320 y = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5321 while (row->enabled_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5322 && y < yb
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5323 && y + row->height < r->top)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5324 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5325 y += row->height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5326 ++row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5327 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5328
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5329 /* Display the text in the rectangle, one text line at a time. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5330 while (row->enabled_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5331 && y < yb
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5332 && y < r->bottom)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5333 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5334 expose_line (w, row, r);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5335 y += row->height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5336 ++row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5337 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5338
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5339 /* Display the mode line if there is one. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5340 if (WINDOW_WANTS_MODELINE_P (w)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5341 && (row = MATRIX_MODE_LINE_ROW (w->current_matrix),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5342 row->enabled_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5343 && row->y < r->bottom)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5344 expose_line (w, row, r);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5345
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5346 if (!w->pseudo_window_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5347 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5348 /* Draw border between windows. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5349 x_draw_vertical_border (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5350
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5351 /* Turn the cursor on again. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5352 if (cursor_cleared_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5353 x_update_window_cursor (w, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5354 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5355 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5356
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5357
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5358 /* Determine the intersection of two rectangles R1 and R2. Return
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5359 the intersection in *RESULT. Value is non-zero if RESULT is not
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5360 empty. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5361
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5362 static int
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5363 w32_intersect_rectangles (r1, r2, result)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5364 RECT *r1, *r2, *result;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5365 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5366 RECT *left, *right;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5367 RECT *upper, *lower;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5368 int intersection_p = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5369
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5370 /* Arrange so that left is the left-most rectangle. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5371 if (r1->left < r2->left)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5372 left = r1, right = r2;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5373 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5374 left = r2, right = r1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5375
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5376 /* X0 of the intersection is right.x0, if this is inside R1,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5377 otherwise there is no intersection. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5378 if (right->left <= left->right)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5379 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5380 result->left = right->left;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5381
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5382 /* The right end of the intersection is the minimum of the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5383 the right ends of left and right. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5384 result->right = min (left->right, right->right);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5385
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5386 /* Same game for Y. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5387 if (r1->top < r2->top)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5388 upper = r1, lower = r2;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5389 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5390 upper = r2, lower = r1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5391
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5392 /* The upper end of the intersection is lower.y0, if this is inside
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5393 of upper. Otherwise, there is no intersection. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5394 if (lower->top <= upper->bottom)
24863
de94a8394d25 Handle wide characters properly.
Jason Rumney <jasonr@gnu.org>
parents: 24827
diff changeset
5395 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5396 result->top = lower->top;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5397
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5398 /* The lower end of the intersection is the minimum of the lower
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5399 ends of upper and lower. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5400 result->bottom = min (lower->bottom, upper->bottom);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5401 intersection_p = 1;
24863
de94a8394d25 Handle wide characters properly.
Jason Rumney <jasonr@gnu.org>
parents: 24827
diff changeset
5402 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5403 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5404
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5405 return intersection_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5406 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5407
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5408
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5409 static void
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5410 frame_highlight (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5411 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5412 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5413 x_update_cursor (f, 1);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5414 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5415
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5416 static void
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5417 frame_unhighlight (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5418 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5419 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5420 x_update_cursor (f, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5421 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5422
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5423
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5424 /* The focus has changed. Update the frames as necessary to reflect
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5425 the new situation. Note that we can't change the selected frame
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5426 here, because the Lisp code we are interrupting might become confused.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5427 Each event gets marked with the frame in which it occurred, so the
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5428 Lisp code can tell when the switch took place by examining the events. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5429
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5430 void
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5431 x_new_focus_frame (dpyinfo, frame)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5432 struct w32_display_info *dpyinfo;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5433 struct frame *frame;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5434 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5435 struct frame *old_focus = dpyinfo->w32_focus_frame;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5436
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5437 if (frame != dpyinfo->w32_focus_frame)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5438 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5439 /* Set this before calling other routines, so that they see
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5440 the correct value of w32_focus_frame. */
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5441 dpyinfo->w32_focus_frame = frame;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5442
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5443 if (old_focus && old_focus->auto_lower)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5444 x_lower_frame (old_focus);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5445
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5446 if (dpyinfo->w32_focus_frame && dpyinfo->w32_focus_frame->auto_raise)
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5447 pending_autoraise_frame = dpyinfo->w32_focus_frame;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5448 else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5449 pending_autoraise_frame = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5450 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5451
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5452 x_frame_rehighlight (dpyinfo);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5453 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5454
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5455 /* Handle an event saying the mouse has moved out of an Emacs frame. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5456
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5457 void
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5458 x_mouse_leave (dpyinfo)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5459 struct w32_display_info *dpyinfo;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5460 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5461 x_new_focus_frame (dpyinfo, dpyinfo->w32_focus_event_frame);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5462 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5463
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5464 /* The focus has changed, or we have redirected a frame's focus to
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5465 another frame (this happens when a frame uses a surrogate
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5466 minibuffer frame). Shift the highlight as appropriate.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5467
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5468 The FRAME argument doesn't necessarily have anything to do with which
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5469 frame is being highlighted or unhighlighted; we only use it to find
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5470 the appropriate display info. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5471 static void
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5472 w32_frame_rehighlight (frame)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5473 struct frame *frame;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5474 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5475 x_frame_rehighlight (FRAME_W32_DISPLAY_INFO (frame));
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5476 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5477
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5478 static void
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5479 x_frame_rehighlight (dpyinfo)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5480 struct w32_display_info *dpyinfo;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5481 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5482 struct frame *old_highlight = dpyinfo->w32_highlight_frame;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5483
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5484 if (dpyinfo->w32_focus_frame)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5485 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5486 dpyinfo->w32_highlight_frame
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5487 = ((GC_FRAMEP (FRAME_FOCUS_FRAME (dpyinfo->w32_focus_frame)))
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5488 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo->w32_focus_frame))
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5489 : dpyinfo->w32_focus_frame);
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5490 if (! FRAME_LIVE_P (dpyinfo->w32_highlight_frame))
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5491 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5492 FRAME_FOCUS_FRAME (dpyinfo->w32_focus_frame) = Qnil;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5493 dpyinfo->w32_highlight_frame = dpyinfo->w32_focus_frame;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5494 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5495 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5496 else
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5497 dpyinfo->w32_highlight_frame = 0;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5498
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5499 if (dpyinfo->w32_highlight_frame != old_highlight)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5500 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5501 if (old_highlight)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5502 frame_unhighlight (old_highlight);
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5503 if (dpyinfo->w32_highlight_frame)
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5504 frame_highlight (dpyinfo->w32_highlight_frame);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5505 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5506 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5507
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5508 /* Keyboard processing - modifier keys, etc. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5509
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5510 /* Convert a keysym to its name. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5511
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5512 char *
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5513 x_get_keysym_name (keysym)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5514 int keysym;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5515 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5516 /* Make static so we can always return it */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5517 static char value[100];
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5518
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5519 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5520 GetKeyNameText(keysym, value, 100);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5521 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5522
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5523 return value;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5524 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5525
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5526 /* Mouse clicks and mouse movement. Rah. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5527
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5528 /* Given a pixel position (PIX_X, PIX_Y) on the frame F, return
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5529 glyph co-ordinates in (*X, *Y). Set *BOUNDS to the rectangle
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5530 that the glyph at X, Y occupies, if BOUNDS != 0.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5531 If NOCLIP is nonzero, do not force the value into range. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5532
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5533 void
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5534 pixel_to_glyph_coords (f, pix_x, pix_y, x, y, bounds, noclip)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5535 FRAME_PTR f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5536 register int pix_x, pix_y;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5537 register int *x, *y;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5538 RECT *bounds;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5539 int noclip;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5540 {
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5541 /* Support tty mode: if Vwindow_system is nil, behave correctly. */
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5542 if (NILP (Vwindow_system))
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5543 {
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5544 *x = pix_x;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5545 *y = pix_y;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5546 return;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5547 }
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5548
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5549 /* Arrange for the division in PIXEL_TO_CHAR_COL etc. to round down
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5550 even for negative values. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5551 if (pix_x < 0)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5552 pix_x -= FONT_WIDTH ((f)->output_data.w32->font) - 1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5553 if (pix_y < 0)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5554 pix_y -= (f)->output_data.w32->line_height - 1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5555
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5556 pix_x = PIXEL_TO_CHAR_COL (f, pix_x);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5557 pix_y = PIXEL_TO_CHAR_ROW (f, pix_y);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5558
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5559 if (bounds)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5560 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5561 bounds->left = CHAR_TO_PIXEL_COL (f, pix_x);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5562 bounds->top = CHAR_TO_PIXEL_ROW (f, pix_y);
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5563 bounds->right = bounds->left + FONT_WIDTH (f->output_data.w32->font) - 1;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5564 bounds->bottom = bounds->top + f->output_data.w32->line_height - 1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5565 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5566
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5567 if (!noclip)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5568 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5569 if (pix_x < 0)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5570 pix_x = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5571 else if (pix_x > f->width)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5572 pix_x = f->width;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5573
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5574 if (pix_y < 0)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5575 pix_y = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5576 else if (pix_y > f->height)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5577 pix_y = f->height;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5578 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5579
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5580 *x = pix_x;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5581 *y = pix_y;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5582 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5583
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5584
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5585 /* Given HPOS/VPOS in the current matrix of W, return corresponding
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5586 frame-relative pixel positions in *FRAME_X and *FRAME_Y. If we
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5587 can't tell the positions because W's display is not up to date,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5588 return 0. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5589
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5590 int
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5591 glyph_to_pixel_coords (w, hpos, vpos, frame_x, frame_y)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5592 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5593 int hpos, vpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5594 int *frame_x, *frame_y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5595 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5596 int success_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5597
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5598 xassert (hpos >= 0 && hpos < w->current_matrix->matrix_w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5599 xassert (vpos >= 0 && vpos < w->current_matrix->matrix_h);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5600
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5601 if (display_completed)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5602 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5603 struct glyph_row *row = MATRIX_ROW (w->current_matrix, vpos);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5604 struct glyph *glyph = row->glyphs[TEXT_AREA];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5605 struct glyph *end = glyph + min (hpos, row->used[TEXT_AREA]);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5606
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5607 *frame_y = row->y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5608 *frame_x = row->x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5609 while (glyph < end)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5610 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5611 *frame_x += glyph->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5612 ++glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5613 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5614
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5615 success_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5616 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5617 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5618 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5619 *frame_y = *frame_x = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5620 success_p = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5621 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5622
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5623 *frame_y = WINDOW_TO_FRAME_PIXEL_Y (w, *frame_y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5624 *frame_x = WINDOW_TO_FRAME_PIXEL_X (w, *frame_x);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5625 return success_p;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5626 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5627
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5628 BOOL
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5629 parse_button (message, pbutton, pup)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5630 int message;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5631 int * pbutton;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5632 int * pup;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5633 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5634 int button = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5635 int up = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5636
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5637 switch (message)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5638 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5639 case WM_LBUTTONDOWN:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5640 button = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5641 up = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5642 break;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5643 case WM_LBUTTONUP:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5644 button = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5645 up = 1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5646 break;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5647 case WM_MBUTTONDOWN:
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5648 if (NILP (Vw32_swap_mouse_buttons))
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5649 button = 1;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5650 else
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5651 button = 2;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5652 up = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5653 break;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5654 case WM_MBUTTONUP:
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5655 if (NILP (Vw32_swap_mouse_buttons))
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5656 button = 1;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5657 else
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5658 button = 2;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5659 up = 1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5660 break;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5661 case WM_RBUTTONDOWN:
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5662 if (NILP (Vw32_swap_mouse_buttons))
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5663 button = 2;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5664 else
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5665 button = 1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5666 up = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5667 break;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5668 case WM_RBUTTONUP:
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5669 if (NILP (Vw32_swap_mouse_buttons))
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5670 button = 2;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5671 else
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5672 button = 1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5673 up = 1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5674 break;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5675 default:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5676 return (FALSE);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5677 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5678
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5679 if (pup) *pup = up;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5680 if (pbutton) *pbutton = button;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5681
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5682 return (TRUE);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5683 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5684
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5685
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5686 /* Prepare a mouse-event in *RESULT for placement in the input queue.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5687
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5688 If the event is a button press, then note that we have grabbed
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5689 the mouse. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5690
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5691 static void
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5692 construct_mouse_click (result, msg, f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5693 struct input_event *result;
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5694 W32Msg *msg;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5695 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5696 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5697 int button;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5698 int up;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5699
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5700 parse_button (msg->msg.message, &button, &up);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5701
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5702 /* Make the event type no_event; we'll change that when we decide
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5703 otherwise. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5704 result->kind = mouse_click;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5705 result->code = button;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5706 result->timestamp = msg->msg.time;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5707 result->modifiers = (msg->dwModifiers
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5708 | (up
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5709 ? up_modifier
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5710 : down_modifier));
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5711
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5712 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5713 int row, column;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5714
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5715 XSETINT (result->x, LOWORD (msg->msg.lParam));
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5716 XSETINT (result->y, HIWORD (msg->msg.lParam));
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5717 XSETFRAME (result->frame_or_window, f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5718 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5719 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5720
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
5721 static void
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
5722 construct_mouse_wheel (result, msg, f)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
5723 struct input_event *result;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
5724 W32Msg *msg;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
5725 struct frame *f;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
5726 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
5727 POINT p;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
5728 result->kind = mouse_wheel;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
5729 result->code = (short) HIWORD (msg->msg.wParam);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
5730 result->timestamp = msg->msg.time;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
5731 result->modifiers = msg->dwModifiers;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
5732 p.x = LOWORD (msg->msg.lParam);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
5733 p.y = HIWORD (msg->msg.lParam);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
5734 ScreenToClient(msg->msg.hwnd, &p);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
5735 XSETINT (result->x, p.x);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
5736 XSETINT (result->y, p.y);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
5737 XSETFRAME (result->frame_or_window, f);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
5738 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
5739
21885
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5740 static void
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5741 construct_drag_n_drop (result, msg, f)
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5742 struct input_event *result;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5743 W32Msg *msg;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5744 struct frame *f;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5745 {
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5746 Lisp_Object files;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5747 Lisp_Object frame;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5748 HDROP hdrop;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5749 POINT p;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5750 WORD num_files;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5751 char *name;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5752 int i, len;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5753
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5754 result->kind = drag_n_drop;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5755 result->code = 0;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5756 result->timestamp = msg->msg.time;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5757 result->modifiers = msg->dwModifiers;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5758
24265
c5f1a1deffbb (construct_drag_n_drop): Call DraqQueryPoint before
Andrew Innes <andrewi@gnu.org>
parents: 24146
diff changeset
5759 hdrop = (HDROP) msg->msg.wParam;
c5f1a1deffbb (construct_drag_n_drop): Call DraqQueryPoint before
Andrew Innes <andrewi@gnu.org>
parents: 24146
diff changeset
5760 DragQueryPoint (hdrop, &p);
c5f1a1deffbb (construct_drag_n_drop): Call DraqQueryPoint before
Andrew Innes <andrewi@gnu.org>
parents: 24146
diff changeset
5761
24674
d0dee612f8e3 [andrewi]
Andrew Innes <andrewi@gnu.org>
parents: 24480
diff changeset
5762 #if 0
21885
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5763 p.x = LOWORD (msg->msg.lParam);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5764 p.y = HIWORD (msg->msg.lParam);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5765 ScreenToClient (msg->msg.hwnd, &p);
24674
d0dee612f8e3 [andrewi]
Andrew Innes <andrewi@gnu.org>
parents: 24480
diff changeset
5766 #endif
d0dee612f8e3 [andrewi]
Andrew Innes <andrewi@gnu.org>
parents: 24480
diff changeset
5767
21885
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5768 XSETINT (result->x, p.x);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5769 XSETINT (result->y, p.y);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5770
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5771 num_files = DragQueryFile (hdrop, 0xFFFFFFFF, NULL, 0);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5772 files = Qnil;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5773
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5774 for (i = 0; i < num_files; i++)
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5775 {
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5776 len = DragQueryFile (hdrop, i, NULL, 0);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5777 if (len <= 0)
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5778 continue;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5779 name = alloca (len + 1);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5780 DragQueryFile (hdrop, i, name, len + 1);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5781 files = Fcons (build_string (name), files);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5782 }
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5783
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5784 DragFinish (hdrop);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5785
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5786 XSETFRAME (frame, f);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5787 result->frame_or_window = Fcons (frame, files);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5788 }
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
5789
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5790
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5791 /* Function to report a mouse movement to the mainstream Emacs code.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5792 The input handler calls this.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5793
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5794 We have received a mouse movement event, which is given in *event.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5795 If the mouse is over a different glyph than it was last time, tell
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5796 the mainstream emacs code by setting mouse_moved. If not, ask for
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5797 another motion event, so we can check again the next time it moves. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5798
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5799 static MSG last_mouse_motion_event;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5800 static Lisp_Object last_mouse_motion_frame;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5801
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5802 static void
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5803 note_mouse_movement (frame, msg)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5804 FRAME_PTR frame;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5805 MSG *msg;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5806 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5807 last_mouse_movement_time = msg->time;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5808 memcpy (&last_mouse_motion_event, msg, sizeof (last_mouse_motion_event));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5809 XSETFRAME (last_mouse_motion_frame, frame);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5810
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5811 if (msg->hwnd != FRAME_W32_WINDOW (frame))
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5812 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5813 frame->mouse_moved = 1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5814 last_mouse_scroll_bar = Qnil;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5815 note_mouse_highlight (frame, -1, -1);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5816 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5817
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5818 /* Has the mouse moved off the glyph it was on at the last sighting? */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5819 else if (LOWORD (msg->lParam) < last_mouse_glyph.left
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5820 || LOWORD (msg->lParam) > last_mouse_glyph.right
15229
a270351f6e0c (note_mouse_movement): Upwards mouse movement recognition corrected.
Richard M. Stallman <rms@gnu.org>
parents: 15216
diff changeset
5821 || HIWORD (msg->lParam) < last_mouse_glyph.top
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5822 || HIWORD (msg->lParam) > last_mouse_glyph.bottom)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5823 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5824 frame->mouse_moved = 1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5825 last_mouse_scroll_bar = Qnil;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5826
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5827 note_mouse_highlight (frame, LOWORD (msg->lParam), HIWORD (msg->lParam));
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5828 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5829 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5830
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5831 /* This is used for debugging, to turn off note_mouse_highlight. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5832 int disable_mouse_highlight;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5833
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5834
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5835
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5836 /************************************************************************
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5837 Mouse Face
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5838 ************************************************************************/
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5839
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5840 /* Find the glyph under window-relative coordinates X/Y in window W.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5841 Consider only glyphs from buffer text, i.e. no glyphs from overlay
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5842 strings. Return in *HPOS and *VPOS the row and column number of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5843 the glyph found. Return in *AREA the glyph area containing X.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5844 Value is a pointer to the glyph found or null if X/Y is not on
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5845 text, or we can't tell because W's current matrix is not up to
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5846 date. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5847
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5848 static struct glyph *
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5849 x_y_to_hpos_vpos (w, x, y, hpos, vpos, area)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5850 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5851 int x, y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5852 int *hpos, *vpos, *area;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5853 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5854 struct glyph *glyph, *end;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5855 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5856 int x0, i, left_area_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5857
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5858 /* Find row containing Y. Give up if some row is not enabled. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5859 for (i = 0; i < w->current_matrix->nrows; ++i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5860 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5861 row = MATRIX_ROW (w->current_matrix, i);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5862 if (!row->enabled_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5863 return NULL;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5864 if (y >= row->y && y < MATRIX_ROW_BOTTOM_Y (row))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5865 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5866 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5867
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5868 *vpos = i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5869 *hpos = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5870
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5871 /* Give up if Y is not in the window. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5872 if (i == w->current_matrix->nrows)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5873 return NULL;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5874
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5875 /* Get the glyph area containing X. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5876 if (w->pseudo_window_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5877 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5878 *area = TEXT_AREA;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5879 x0 = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5880 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5881 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5882 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5883 left_area_width = window_box_width (w, LEFT_MARGIN_AREA);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5884 if (x < left_area_width)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5885 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5886 *area = LEFT_MARGIN_AREA;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5887 x0 = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5888 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5889 else if (x < left_area_width + window_box_width (w, TEXT_AREA))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5890 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5891 *area = TEXT_AREA;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5892 x0 = row->x + left_area_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5893 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5894 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5895 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5896 *area = RIGHT_MARGIN_AREA;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5897 x0 = left_area_width + window_box_width (w, TEXT_AREA);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5898 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5899 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5900
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5901 /* Find glyph containing X. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5902 glyph = row->glyphs[*area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5903 end = glyph + row->used[*area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5904 while (glyph < end)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5905 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5906 if (x < x0 + glyph->pixel_width)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5907 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5908 if (w->pseudo_window_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5909 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5910 else if (BUFFERP (glyph->object))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5911 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5912 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5913
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5914 x0 += glyph->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5915 ++glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5916 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5917
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5918 if (glyph == end)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5919 return NULL;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5920
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5921 *hpos = glyph - row->glyphs[*area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5922 return glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5923 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5924
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5925
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5926 /* Convert frame-relative x/y to coordinates relative to window W.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5927 Takes pseudo-windows into account. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5928
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5929 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5930 frame_to_window_pixel_xy (w, x, y)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5931 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5932 int *x, *y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5933 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5934 if (w->pseudo_window_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5935 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5936 /* A pseudo-window is always full-width, and starts at the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5937 left edge of the frame, plus a frame border. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5938 struct frame *f = XFRAME (w->frame);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5939 *x -= FRAME_INTERNAL_BORDER_WIDTH_SAFE (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5940 *y = FRAME_TO_WINDOW_PIXEL_Y (w, *y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5941 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5942 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5943 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5944 *x = FRAME_TO_WINDOW_PIXEL_X (w, *x);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5945 *y = FRAME_TO_WINDOW_PIXEL_Y (w, *y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5946 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5947 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5948
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5949
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5950 /* Take proper action when mouse has moved to the mode or top line of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5951 window W, x-position X. MODE_LINE_P non-zero means mouse is on the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5952 mode line. X is relative to the start of the text display area of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5953 W, so the width of bitmap areas and scroll bars must be subtracted
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5954 to get a position relative to the start of the mode line. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5955
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5956 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5957 note_mode_line_highlight (w, x, mode_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5958 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5959 int x, mode_line_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5960 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5961 struct frame *f = XFRAME (w->frame);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5962 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5963 Cursor cursor = dpyinfo->vertical_scroll_bar_cursor;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5964 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5965
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5966 if (mode_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5967 row = MATRIX_MODE_LINE_ROW (w->current_matrix);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5968 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5969 row = MATRIX_HEADER_LINE_ROW (w->current_matrix);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5970
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5971 if (row->enabled_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5972 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5973 struct glyph *glyph, *end;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5974 Lisp_Object help, map;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5975 int x0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5976
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5977 /* Find the glyph under X. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5978 glyph = row->glyphs[TEXT_AREA];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5979 end = glyph + row->used[TEXT_AREA];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5980 x0 = - (FRAME_LEFT_SCROLL_BAR_WIDTH (f) * CANON_X_UNIT (f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5981 + FRAME_X_LEFT_FLAGS_AREA_WIDTH (f));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5982 while (glyph < end
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5983 && x >= x0 + glyph->pixel_width)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5984 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5985 x0 += glyph->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5986 ++glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5987 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5988
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5989 if (glyph < end
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5990 && STRINGP (glyph->object)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5991 && XSTRING (glyph->object)->intervals
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5992 && glyph->charpos >= 0
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5993 && glyph->charpos < XSTRING (glyph->object)->size)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5994 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5995 /* If we're on a string with `help-echo' text property,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5996 arrange for the help to be displayed. This is done by
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5997 setting the global variable help_echo to the help string. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5998 help = Fget_text_property (make_number (glyph->charpos),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5999 Qhelp_echo, glyph->object);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6000 if (STRINGP (help))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6001 help_echo = help;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6002
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6003 /* Change the mouse pointer according to what is under X/Y. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6004 map = Fget_text_property (make_number (glyph->charpos),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6005 Qlocal_map, glyph->object);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6006 if (!NILP (Fkeymapp (map)))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6007 cursor = f->output_data.w32->nontext_cursor;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6008 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6009 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6010 #if 0 /* NTEMACS_TODO: mouse cursor */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6011 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), cursor);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6012 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6013 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6014
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6015 /* Take proper action when the mouse has moved to position X, Y on frame F
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6016 as regards highlighting characters that have mouse-face properties.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6017 Also dehighlighting chars where the mouse was before.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6018 X and Y can be negative or out of range. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6019
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6020 static void
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6021 note_mouse_highlight (f, x, y)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6022 FRAME_PTR f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6023 int x, y;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6024 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6025 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6026 int portion;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6027 Lisp_Object window;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6028 struct window *w;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6029
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6030 /* When a menu is active, don't highlight because this looks odd. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6031 if (popup_activated ())
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6032 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6033
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6034 if (disable_mouse_highlight)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6035 return;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6036
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6037 dpyinfo->mouse_face_mouse_x = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6038 dpyinfo->mouse_face_mouse_y = y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6039 dpyinfo->mouse_face_mouse_frame = f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6040
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6041 if (dpyinfo->mouse_face_defer)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6042 return;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6043
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6044 if (gc_in_progress)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6045 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6046 dpyinfo->mouse_face_deferred_gc = 1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6047 return;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6048 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6049
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6050 /* Which window is that in? */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6051 window = window_from_coordinates (f, x, y, &portion, 1);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6052
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6053 /* If we were displaying active text in another window, clear that. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6054 if (! EQ (window, dpyinfo->mouse_face_window))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6055 clear_mouse_face (dpyinfo);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6056
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6057 /* Not on a window -> return. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6058 if (!WINDOWP (window))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6059 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6060
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6061 /* Convert to window-relative pixel coordinates. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6062 w = XWINDOW (window);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6063 frame_to_window_pixel_xy (w, &x, &y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6064
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6065 /* Handle tool-bar window differently since it doesn't display a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6066 buffer. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6067 if (EQ (window, f->tool_bar_window))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6068 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6069 note_tool_bar_highlight (f, x, y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6070 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6071 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6072
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6073 if (portion == 1 || portion == 3)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6074 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6075 /* Mouse is on the mode or top line. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6076 note_mode_line_highlight (w, x, portion == 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6077 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6078 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6079 #if 0 /* NTEMACS_TODO: mouse cursor */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6080 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6081 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6082 f->output_data.x->text_cursor);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6083 #endif
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6084
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6085 /* Are we in a window whose display is up to date?
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6086 And verify the buffer's text has not changed. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6087 if (/* Within the text portion of the window. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6088 portion == 0
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6089 && EQ (w->window_end_valid, w->buffer)
16209
40552cb9a45d (note_mouse_highlight): Test last_overlay_modified field.
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
6090 && w->last_modified == BUF_MODIFF (XBUFFER (w->buffer))
40552cb9a45d (note_mouse_highlight): Test last_overlay_modified field.
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
6091 && w->last_overlay_modified == BUF_OVERLAY_MODIFF (XBUFFER (w->buffer)))
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6092 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6093 int hpos, vpos, pos, i, area;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6094 struct glyph *glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6095
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6096 /* Find the glyph under X/Y. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6097 glyph = x_y_to_hpos_vpos (w, x, y, &hpos, &vpos, &area);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6098
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6099 /* Clear mouse face if X/Y not over text. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6100 if (glyph == NULL
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6101 || area != TEXT_AREA
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6102 || !MATRIX_ROW (w->current_matrix, vpos)->displays_text_p)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6103 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6104 clear_mouse_face (dpyinfo);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6105 return;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6106 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6107
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6108 pos = glyph->charpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6109 xassert (w->pseudo_window_p || BUFFERP (glyph->object));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6110
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6111 /* Check for mouse-face and help-echo. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6112 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6113 Lisp_Object mouse_face, overlay, position;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6114 Lisp_Object *overlay_vec;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6115 int len, noverlays;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6116 struct buffer *obuf;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6117 int obegv, ozv;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6118
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6119 /* If we get an out-of-range value, return now; avoid an error. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6120 if (pos > BUF_Z (XBUFFER (w->buffer)))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6121 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6122
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6123 /* Make the window's buffer temporarily current for
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6124 overlays_at and compute_char_face. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6125 obuf = current_buffer;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6126 current_buffer = XBUFFER (w->buffer);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6127 obegv = BEGV;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6128 ozv = ZV;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6129 BEGV = BEG;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6130 ZV = Z;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6131
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6132 /* Is this char mouse-active or does it have help-echo? */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6133 XSETINT (position, pos);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6134
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6135 /* Put all the overlays we want in a vector in overlay_vec.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6136 Store the length in len. If there are more than 10, make
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6137 enough space for all, and try again. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6138 len = 10;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6139 overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6140 noverlays = overlays_at (pos, 0, &overlay_vec, &len, NULL, NULL);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6141 if (noverlays > len)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6142 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6143 len = noverlays;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6144 overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6145 noverlays = overlays_at (pos, 0, &overlay_vec, &len, NULL, NULL);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6146 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6147
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6148 noverlays = sort_overlays (overlay_vec, noverlays, w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6149
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6150 /* Check mouse-face highlighting. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6151 if (! (EQ (window, dpyinfo->mouse_face_window)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6152 && vpos >= dpyinfo->mouse_face_beg_row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6153 && vpos <= dpyinfo->mouse_face_end_row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6154 && (vpos > dpyinfo->mouse_face_beg_row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6155 || hpos >= dpyinfo->mouse_face_beg_col)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6156 && (vpos < dpyinfo->mouse_face_end_row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6157 || hpos < dpyinfo->mouse_face_end_col
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6158 || dpyinfo->mouse_face_past_end)))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6159 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6160 /* Clear the display of the old active region, if any. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6161 clear_mouse_face (dpyinfo);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6162
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6163 /* Find the highest priority overlay that has a mouse-face prop. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6164 overlay = Qnil;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6165 for (i = 0; i < noverlays; i++)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6166 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6167 mouse_face = Foverlay_get (overlay_vec[i], Qmouse_face);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6168 if (!NILP (mouse_face))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6169 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6170 overlay = overlay_vec[i];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6171 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6172 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6173 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6174
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6175 /* If no overlay applies, get a text property. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6176 if (NILP (overlay))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6177 mouse_face = Fget_text_property (position, Qmouse_face, w->buffer);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6178
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6179 /* Handle the overlay case. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6180 if (! NILP (overlay))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6181 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6182 /* Find the range of text around this char that
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6183 should be active. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6184 Lisp_Object before, after;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6185 int ignore;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6186
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6187 before = Foverlay_start (overlay);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6188 after = Foverlay_end (overlay);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6189 /* Record this as the current active region. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6190 fast_find_position (w, XFASTINT (before),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6191 &dpyinfo->mouse_face_beg_col,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6192 &dpyinfo->mouse_face_beg_row,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6193 &dpyinfo->mouse_face_beg_x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6194 &dpyinfo->mouse_face_beg_y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6195 dpyinfo->mouse_face_past_end
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6196 = !fast_find_position (w, XFASTINT (after),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6197 &dpyinfo->mouse_face_end_col,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6198 &dpyinfo->mouse_face_end_row,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6199 &dpyinfo->mouse_face_end_x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6200 &dpyinfo->mouse_face_end_y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6201 dpyinfo->mouse_face_window = window;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6202 dpyinfo->mouse_face_face_id
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6203 = face_at_buffer_position (w, pos, 0, 0,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6204 &ignore, pos + 1, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6205
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6206 /* Display it as active. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6207 show_mouse_face (dpyinfo, DRAW_MOUSE_FACE);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6208 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6209 /* Handle the text property case. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6210 else if (! NILP (mouse_face))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6211 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6212 /* Find the range of text around this char that
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6213 should be active. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6214 Lisp_Object before, after, beginning, end;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6215 int ignore;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6216
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6217 beginning = Fmarker_position (w->start);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6218 XSETINT (end, (BUF_Z (XBUFFER (w->buffer))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6219 - XFASTINT (w->window_end_pos)));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6220 before
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6221 = Fprevious_single_property_change (make_number (pos + 1),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6222 Qmouse_face,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6223 w->buffer, beginning);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6224 after
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6225 = Fnext_single_property_change (position, Qmouse_face,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6226 w->buffer, end);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6227 /* Record this as the current active region. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6228 fast_find_position (w, XFASTINT (before),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6229 &dpyinfo->mouse_face_beg_col,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6230 &dpyinfo->mouse_face_beg_row,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6231 &dpyinfo->mouse_face_beg_x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6232 &dpyinfo->mouse_face_beg_y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6233 dpyinfo->mouse_face_past_end
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6234 = !fast_find_position (w, XFASTINT (after),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6235 &dpyinfo->mouse_face_end_col,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6236 &dpyinfo->mouse_face_end_row,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6237 &dpyinfo->mouse_face_end_x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6238 &dpyinfo->mouse_face_end_y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6239 dpyinfo->mouse_face_window = window;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6240 dpyinfo->mouse_face_face_id
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6241 = face_at_buffer_position (w, pos, 0, 0,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6242 &ignore, pos + 1, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6243
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6244 /* Display it as active. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6245 show_mouse_face (dpyinfo, DRAW_MOUSE_FACE);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6246 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6247 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6248
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6249 /* Look for a `help-echo' property. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6250 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6251 Lisp_Object help;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6252
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6253 /* Check overlays first. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6254 help = Qnil;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6255 for (i = 0; i < noverlays && !STRINGP (help); ++i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6256 help = Foverlay_get (overlay_vec[i], Qhelp_echo);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6257
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6258 /* Try text properties. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6259 if (!STRINGP (help)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6260 && ((STRINGP (glyph->object)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6261 && glyph->charpos >= 0
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6262 && glyph->charpos < XSTRING (glyph->object)->size)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6263 || (BUFFERP (glyph->object)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6264 && glyph->charpos >= BEGV
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6265 && glyph->charpos < ZV)))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6266 help = Fget_text_property (make_number (glyph->charpos),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6267 Qhelp_echo, glyph->object);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6268
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6269 if (STRINGP (help))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6270 help_echo = help;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6271 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6272
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6273 BEGV = obegv;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6274 ZV = ozv;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6275 current_buffer = obuf;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6276 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6277 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6278 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6279
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6280
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6281 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6282 redo_mouse_highlight ()
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6283 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6284 if (!NILP (last_mouse_motion_frame)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6285 && FRAME_LIVE_P (XFRAME (last_mouse_motion_frame)))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6286 note_mouse_highlight (XFRAME (last_mouse_motion_frame),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6287 LOWORD (last_mouse_motion_event.lParam),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6288 HIWORD (last_mouse_motion_event.lParam));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6289 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6290
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6291
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6292
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6293 /***********************************************************************
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6294 Tool-bars
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6295 ***********************************************************************/
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6296
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6297 static int x_tool_bar_item P_ ((struct frame *, int, int,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6298 struct glyph **, int *, int *, int *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6299
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6300 /* Tool-bar item index of the item on which a mouse button was pressed
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6301 or -1. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6302
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6303 static int last_tool_bar_item;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6304
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6305
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6306 /* Get information about the tool-bar item at position X/Y on frame F.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6307 Return in *GLYPH a pointer to the glyph of the tool-bar item in
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6308 the current matrix of the tool-bar window of F, or NULL if not
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6309 on a tool-bar item. Return in *PROP_IDX the index of the tool-bar
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6310 item in F->current_tool_bar_items. Value is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6311
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6312 -1 if X/Y is not on a tool-bar item
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6313 0 if X/Y is on the same item that was highlighted before.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6314 1 otherwise. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6315
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6316 static int
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6317 x_tool_bar_item (f, x, y, glyph, hpos, vpos, prop_idx)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6318 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6319 int x, y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6320 struct glyph **glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6321 int *hpos, *vpos, *prop_idx;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6322 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6323 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6324 struct window *w = XWINDOW (f->tool_bar_window);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6325 int area;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6326
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6327 /* Find the glyph under X/Y. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6328 *glyph = x_y_to_hpos_vpos (w, x, y, hpos, vpos, &area);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6329 if (*glyph == NULL)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6330 return -1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6331
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6332 /* Get the start of this tool-bar item's properties in
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6333 f->current_tool_bar_items. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6334 if (!tool_bar_item_info (f, *glyph, prop_idx))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6335 return -1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6336
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6337 /* Is mouse on the highlighted item? */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6338 if (EQ (f->tool_bar_window, dpyinfo->mouse_face_window)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6339 && *vpos >= dpyinfo->mouse_face_beg_row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6340 && *vpos <= dpyinfo->mouse_face_end_row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6341 && (*vpos > dpyinfo->mouse_face_beg_row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6342 || *hpos >= dpyinfo->mouse_face_beg_col)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6343 && (*vpos < dpyinfo->mouse_face_end_row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6344 || *hpos < dpyinfo->mouse_face_end_col
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6345 || dpyinfo->mouse_face_past_end))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6346 return 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6347
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6348 return 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6349 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6350
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6351
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6352 /* Handle mouse button event on the tool_bar of frame F, at
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6353 frame-relative coordinates X/Y. EVENT_TYPE is either ButtionPress
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6354 or ButtonRelase. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6355
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6356 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6357 w32_handle_tool_bar_click (f, button_event)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6358 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6359 struct input_event *button_event;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6360 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6361 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6362 struct window *w = XWINDOW (f->tool_bar_window);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6363 int hpos, vpos, prop_idx;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6364 struct glyph *glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6365 Lisp_Object enabled_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6366 int x = XFASTINT (button_event->x);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6367 int y = XFASTINT (button_event->y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6368
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6369 /* If not on the highlighted tool-bar item, return. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6370 frame_to_window_pixel_xy (w, &x, &y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6371 if (x_tool_bar_item (f, x, y, &glyph, &hpos, &vpos, &prop_idx) != 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6372 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6373
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6374 /* If item is disabled, do nothing. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6375 enabled_p = (XVECTOR (f->current_tool_bar_items)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6376 ->contents[prop_idx + TOOL_BAR_ITEM_ENABLED_P]);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6377 if (NILP (enabled_p))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6378 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6379
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6380 if (button_event->kind == mouse_click)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6381 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6382 /* Show item in pressed state. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6383 show_mouse_face (dpyinfo, DRAW_IMAGE_SUNKEN);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6384 dpyinfo->mouse_face_image_state = DRAW_IMAGE_SUNKEN;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6385 last_tool_bar_item = prop_idx;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6386 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6387 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6388 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6389 Lisp_Object key, frame;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6390 struct input_event event;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6391
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6392 /* Show item in released state. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6393 show_mouse_face (dpyinfo, DRAW_IMAGE_RAISED);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6394 dpyinfo->mouse_face_image_state = DRAW_IMAGE_RAISED;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6395
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6396 key = (XVECTOR (f->current_tool_bar_items)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6397 ->contents[prop_idx + TOOL_BAR_ITEM_KEY]);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6398
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6399 XSETFRAME (frame, f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6400 event.kind = TOOL_BAR_EVENT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6401 event.frame_or_window = Fcons (frame, Fcons (Qtool_bar, Qnil));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6402 kbd_buffer_store_event (&event);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6403
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6404 event.kind = TOOL_BAR_EVENT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6405 event.frame_or_window = Fcons (frame, key);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6406 event.modifiers = button_event->modifiers;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6407 kbd_buffer_store_event (&event);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6408 last_tool_bar_item = -1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6409 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6410 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6411
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6412
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6413 /* Possibly highlight a tool_bar item on frame F when mouse moves to
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6414 tool-bar window-relative coordinates X/Y. Called from
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6415 note_mouse_highlight. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6416
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6417 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6418 note_tool_bar_highlight (f, x, y)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6419 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6420 int x, y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6421 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6422 Lisp_Object window = f->tool_bar_window;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6423 struct window *w = XWINDOW (window);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6424 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6425 int hpos, vpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6426 struct glyph *glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6427 struct glyph_row *row;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6428 int i;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6429 Lisp_Object enabled_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6430 int prop_idx;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6431 enum draw_glyphs_face draw = DRAW_IMAGE_RAISED;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6432 int mouse_down_p, rc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6433
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6434 /* Function note_mouse_highlight is called with negative x(y
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6435 values when mouse moves outside of the frame. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6436 if (x <= 0 || y <= 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6437 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6438 clear_mouse_face (dpyinfo);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6439 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6440 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6441
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6442 rc = x_tool_bar_item (f, x, y, &glyph, &hpos, &vpos, &prop_idx);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6443 if (rc < 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6444 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6445 /* Not on tool-bar item. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6446 clear_mouse_face (dpyinfo);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6447 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6448 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6449 else if (rc == 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6450 /* On same tool-bar item as before. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6451 goto set_help_echo;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6452
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6453 clear_mouse_face (dpyinfo);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6454
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6455 /* Mouse is down, but on different tool-bar item? */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6456 mouse_down_p = (dpyinfo->grabbed
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6457 && f == last_mouse_frame
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6458 && FRAME_LIVE_P (f));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6459 if (mouse_down_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6460 && last_tool_bar_item != prop_idx)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6461 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6462
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6463 dpyinfo->mouse_face_image_state = DRAW_NORMAL_TEXT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6464 draw = mouse_down_p ? DRAW_IMAGE_SUNKEN : DRAW_IMAGE_RAISED;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6465
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6466 /* If tool-bar item is not enabled, don't highlight it. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6467 enabled_p = (XVECTOR (f->current_tool_bar_items)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6468 ->contents[prop_idx + TOOL_BAR_ITEM_ENABLED_P]);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6469 if (!NILP (enabled_p))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6470 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6471 /* Compute the x-position of the glyph. In front and past the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6472 image is a space. We include this is the highlighted area. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6473 row = MATRIX_ROW (w->current_matrix, vpos);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6474 for (i = x = 0; i < hpos; ++i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6475 x += row->glyphs[TEXT_AREA][i].pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6476
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6477 /* Record this as the current active region. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6478 dpyinfo->mouse_face_beg_col = hpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6479 dpyinfo->mouse_face_beg_row = vpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6480 dpyinfo->mouse_face_beg_x = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6481 dpyinfo->mouse_face_beg_y = row->y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6482 dpyinfo->mouse_face_past_end = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6483
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6484 dpyinfo->mouse_face_end_col = hpos + 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6485 dpyinfo->mouse_face_end_row = vpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6486 dpyinfo->mouse_face_end_x = x + glyph->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6487 dpyinfo->mouse_face_end_y = row->y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6488 dpyinfo->mouse_face_window = window;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6489 dpyinfo->mouse_face_face_id = TOOL_BAR_FACE_ID;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6490
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6491 /* Display it as active. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6492 show_mouse_face (dpyinfo, draw);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6493 dpyinfo->mouse_face_image_state = draw;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6494 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6495
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6496 set_help_echo:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6497
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6498 /* Set help_echo to a help string.to display for this tool-bar item.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6499 w32_read_socket does the rest. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6500 help_echo = (XVECTOR (f->current_tool_bar_items)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6501 ->contents[prop_idx + TOOL_BAR_ITEM_HELP]);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6502 if (!STRINGP (help_echo))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6503 help_echo = (XVECTOR (f->current_tool_bar_items)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6504 ->contents[prop_idx + TOOL_BAR_ITEM_CAPTION]);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6505 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6506
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6507
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6508 /* Find the glyph matrix position of buffer position POS in window W.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6509 *HPOS, *VPOS, *X, and *Y are set to the positions found. W's
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6510 current glyphs must be up to date. If POS is above window start
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6511 return (0, 0, 0, 0). If POS is after end of W, return end of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6512 last line in W. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6513
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6514 static int
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6515 fast_find_position (w, pos, hpos, vpos, x, y)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6516 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6517 int pos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6518 int *hpos, *vpos, *x, *y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6519 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6520 int i;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6521 int lastcol;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6522 int maybe_next_line_p = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6523 int line_start_position;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6524 int yb = window_text_bottom_y (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6525 struct glyph_row *row = MATRIX_ROW (w->current_matrix, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6526 struct glyph_row *best_row = row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6527 int row_vpos = 0, best_row_vpos = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6528 int current_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6529
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6530 while (row->y < yb)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6531 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6532 if (row->used[TEXT_AREA])
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6533 line_start_position = row->glyphs[TEXT_AREA]->charpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6534 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6535 line_start_position = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6536
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6537 if (line_start_position > pos)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6538 break;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6539 /* If the position sought is the end of the buffer,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6540 don't include the blank lines at the bottom of the window. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6541 else if (line_start_position == pos
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6542 && pos == BUF_ZV (XBUFFER (w->buffer)))
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6543 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6544 maybe_next_line_p = 1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6545 break;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6546 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6547 else if (line_start_position > 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6548 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6549 best_row = row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6550 best_row_vpos = row_vpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6551 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6552
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6553 ++row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6554 ++row_vpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6555 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6556
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6557 /* Find the right column within BEST_ROW. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6558 lastcol = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6559 current_x = best_row->x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6560 for (i = 0; i < best_row->used[TEXT_AREA]; i++)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6561 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6562 struct glyph *glyph = best_row->glyphs[TEXT_AREA] + i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6563 int charpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6564
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6565 charpos = glyph->charpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6566 if (charpos == pos)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6567 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6568 *hpos = i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6569 *vpos = best_row_vpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6570 *x = current_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6571 *y = best_row->y;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6572 return 1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6573 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6574 else if (charpos > pos)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6575 break;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6576 else if (charpos > 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6577 lastcol = i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6578
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6579 current_x += glyph->pixel_width;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6580 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6581
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6582 /* If we're looking for the end of the buffer,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6583 and we didn't find it in the line we scanned,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6584 use the start of the following line. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6585 if (maybe_next_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6586 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6587 ++best_row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6588 ++best_row_vpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6589 lastcol = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6590 current_x = best_row->x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6591 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6592
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6593 *vpos = best_row_vpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6594 *hpos = lastcol + 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6595 *x = current_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6596 *y = best_row->y;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6597 return 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6598 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6599
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6600
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6601 /* Display the active region described by mouse_face_*
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6602 in its mouse-face if HL > 0, in its normal face if HL = 0. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6603
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6604 static void
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6605 show_mouse_face (dpyinfo, draw)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
6606 struct w32_display_info *dpyinfo;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6607 enum draw_glyphs_face draw;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6608 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6609 struct window *w = XWINDOW (dpyinfo->mouse_face_window);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6610 struct frame *f = XFRAME (WINDOW_FRAME (w));
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6611 int i;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6612 int cursor_off_p = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6613 struct cursor_pos saved_cursor;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6614
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6615 saved_cursor = output_cursor;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6616
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6617 /* If window is in the process of being destroyed, don't bother
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6618 to do anything. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6619 if (w->current_matrix == NULL)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6620 goto set_x_cursor;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6621
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6622 /* Recognize when we are called to operate on rows that don't exist
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6623 anymore. This can happen when a window is split. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6624 if (dpyinfo->mouse_face_end_row >= w->current_matrix->nrows)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6625 goto set_x_cursor;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6626
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6627 set_output_cursor (&w->phys_cursor);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6628
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6629 /* Note that mouse_face_beg_row etc. are window relative. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6630 for (i = dpyinfo->mouse_face_beg_row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6631 i <= dpyinfo->mouse_face_end_row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6632 i++)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6633 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6634 int start_hpos, end_hpos, start_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6635 struct glyph_row *row = MATRIX_ROW (w->current_matrix, i);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6636
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6637 /* Don't do anything if row doesn't have valid contents. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6638 if (!row->enabled_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6639 continue;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6640
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6641 /* For all but the first row, the highlight starts at column 0. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6642 if (i == dpyinfo->mouse_face_beg_row)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6643 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6644 start_hpos = dpyinfo->mouse_face_beg_col;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6645 start_x = dpyinfo->mouse_face_beg_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6646 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6647 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6648 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6649 start_hpos = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6650 start_x = 0;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6651 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6652
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6653 if (i == dpyinfo->mouse_face_end_row)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6654 end_hpos = dpyinfo->mouse_face_end_col;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6655 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6656 end_hpos = row->used[TEXT_AREA];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6657
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6658 /* If the cursor's in the text we are about to rewrite, turn the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6659 cursor off. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6660 if (!w->pseudo_window_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6661 && i == output_cursor.vpos
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6662 && output_cursor.hpos >= start_hpos - 1
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6663 && output_cursor.hpos <= end_hpos)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6664 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6665 x_update_window_cursor (w, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6666 cursor_off_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6667 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6668
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6669 if (end_hpos > start_hpos)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6670 x_draw_glyphs (w, start_x, row, TEXT_AREA,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6671 start_hpos, end_hpos, draw, NULL, NULL, 0);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6672 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6673
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6674 /* If we turned the cursor off, turn it back on. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6675 if (cursor_off_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6676 x_display_cursor (w, 1,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6677 output_cursor.hpos, output_cursor.vpos,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6678 output_cursor.x, output_cursor.y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6679
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6680 output_cursor = saved_cursor;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6681
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6682 set_x_cursor:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6683 #if 0 /* NTEMACS_TODO: mouse cursor */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6684 /* Change the mouse cursor. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6685 if (draw == DRAW_NORMAL_TEXT)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6686 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6687 f->output_data.x->text_cursor);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6688 else if (draw == DRAW_MOUSE_FACE)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6689 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6690 f->output_data.x->cross_cursor);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6691 else
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6692 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6693 f->output_data.x->nontext_cursor);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6694 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6695 ;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6696 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6697
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6698
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6699 /* Clear out the mouse-highlighted active region.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6700 Redraw it unhighlighted first. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6701
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6702 void
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6703 clear_mouse_face (dpyinfo)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
6704 struct w32_display_info *dpyinfo;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6705 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6706 if (tip_frame)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6707 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6708
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6709 if (! NILP (dpyinfo->mouse_face_window))
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6710 show_mouse_face (dpyinfo, DRAW_NORMAL_TEXT);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6711
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6712 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6713 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6714 dpyinfo->mouse_face_window = Qnil;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6715 }
24827
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
6716
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
6717 /* Just discard the mouse face information for frame F, if any.
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
6718 This is used when the size of F is changed. */
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
6719
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
6720 void
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
6721 cancel_mouse_face (f)
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
6722 FRAME_PTR f;
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
6723 {
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
6724 Lisp_Object window;
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
6725 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
6726
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
6727 window = dpyinfo->mouse_face_window;
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
6728 if (! NILP (window) && XFRAME (XWINDOW (window)->frame) == f)
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
6729 {
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
6730 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
6731 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
6732 dpyinfo->mouse_face_window = Qnil;
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
6733 }
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
6734 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6735
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6736 struct scroll_bar *x_window_to_scroll_bar ();
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6737 static void x_scroll_bar_report_motion ();
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6738
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6739 /* Return the current position of the mouse.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6740 *fp should be a frame which indicates which display to ask about.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6741
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6742 If the mouse movement started in a scroll bar, set *fp, *bar_window,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6743 and *part to the frame, window, and scroll bar part that the mouse
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6744 is over. Set *x and *y to the portion and whole of the mouse's
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6745 position on the scroll bar.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6746
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6747 If the mouse movement started elsewhere, set *fp to the frame the
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6748 mouse is on, *bar_window to nil, and *x and *y to the character cell
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6749 the mouse is over.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6750
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6751 Set *time to the server timestamp for the time at which the mouse
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6752 was at this position.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6753
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6754 Don't store anything if we don't have a valid set of values to report.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6755
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6756 This clears the mouse_moved flag, so we can wait for the next mouse
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6757 movement. This also calls XQueryPointer, which will cause the
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6758 server to give us another MotionNotify when the mouse moves
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6759 again. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6760
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6761 static void
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
6762 w32_mouse_position (fp, insist, bar_window, part, x, y, time)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6763 FRAME_PTR *fp;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6764 int insist;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6765 Lisp_Object *bar_window;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6766 enum scroll_bar_part *part;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6767 Lisp_Object *x, *y;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6768 unsigned long *time;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6769 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6770 FRAME_PTR f1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6771
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6772 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6773
20179
b4fe0e8ac819 (w32_mouse_position): Handle INSIST < 0.
Karl Heuer <kwzh@gnu.org>
parents: 19713
diff changeset
6774 if (! NILP (last_mouse_scroll_bar) && insist == 0)
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
6775 /* This is never called at the moment. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6776 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6777 else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6778 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6779 POINT pt;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6780
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6781 Lisp_Object frame, tail;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6782
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6783 /* Clear the mouse-moved flag for every frame on this display. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6784 FOR_EACH_FRAME (tail, frame)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6785 XFRAME (frame)->mouse_moved = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6786
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6787 last_mouse_scroll_bar = Qnil;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6788
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6789 GetCursorPos (&pt);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6790
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6791 /* Now we have a position on the root; find the innermost window
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6792 containing the pointer. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6793 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
6794 if (FRAME_W32_DISPLAY_INFO (*fp)->grabbed && last_mouse_frame
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6795 && FRAME_LIVE_P (last_mouse_frame))
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6796 {
24752
80c46fd667da (w32_read_socket): Reset the grabbed flag when a frame gains or
Andrew Innes <andrewi@gnu.org>
parents: 24733
diff changeset
6797 /* If mouse was grabbed on a frame, give coords for that frame
80c46fd667da (w32_read_socket): Reset the grabbed flag when a frame gains or
Andrew Innes <andrewi@gnu.org>
parents: 24733
diff changeset
6798 even if the mouse is now outside it. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6799 f1 = last_mouse_frame;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6800 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6801 else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6802 {
24752
80c46fd667da (w32_read_socket): Reset the grabbed flag when a frame gains or
Andrew Innes <andrewi@gnu.org>
parents: 24733
diff changeset
6803 /* Is window under mouse one of our frames? */
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
6804 f1 = x_window_to_frame (FRAME_W32_DISPLAY_INFO (*fp), WindowFromPoint(pt));
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6805 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6806
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6807 /* If not, is it one of our scroll bars? */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6808 if (! f1)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6809 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6810 struct scroll_bar *bar = x_window_to_scroll_bar (WindowFromPoint(pt));
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6811
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6812 if (bar)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6813 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6814 f1 = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6815 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6816 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6817
20179
b4fe0e8ac819 (w32_mouse_position): Handle INSIST < 0.
Karl Heuer <kwzh@gnu.org>
parents: 19713
diff changeset
6818 if (f1 == 0 && insist > 0)
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6819 f1 = SELECTED_FRAME ();
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6820
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6821 if (f1)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6822 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6823 /* Ok, we found a frame. Store all the values.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6824 last_mouse_glyph is a rectangle used to reduce the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6825 generation of mouse events. To not miss any motion
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6826 events, we must divide the frame into rectangles of the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6827 size of the smallest character that could be displayed
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6828 on it, i.e. into the same rectangles that matrices on
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6829 the frame are divided into. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6830
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6831 #if OLD_REDISPLAY_CODE
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6832 int ignore1, ignore2;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6833
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
6834 ScreenToClient (FRAME_W32_WINDOW (f1), &pt);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6835
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6836 pixel_to_glyph_coords (f1, pt.x, pt.y, &ignore1, &ignore2,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6837 &last_mouse_glyph,
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
6838 FRAME_W32_DISPLAY_INFO (f1)->grabbed
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6839 || insist);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6840 #else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6841 ScreenToClient (FRAME_W32_WINDOW (f1), &pt);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6842 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6843 int width = FRAME_SMALLEST_CHAR_WIDTH (f1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6844 int height = FRAME_SMALLEST_FONT_HEIGHT (f1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6845 int x = pt.x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6846 int y = pt.y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6847
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6848 /* Arrange for the division in PIXEL_TO_CHAR_COL etc. to
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6849 round down even for negative values. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6850 if (x < 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6851 x -= width - 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6852 if (y < 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6853 y -= height - 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6854
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6855 last_mouse_glyph.left = (x + width - 1) / width * width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6856 last_mouse_glyph.top = (y + height - 1) / height * height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6857 last_mouse_glyph.right = last_mouse_glyph.left + width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6858 last_mouse_glyph.bottom = last_mouse_glyph.top + height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6859 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6860 #endif
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6861
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6862 *bar_window = Qnil;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6863 *part = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6864 *fp = f1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6865 XSETINT (*x, pt.x);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6866 XSETINT (*y, pt.y);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6867 *time = last_mouse_movement_time;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6868 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6869 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6870 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6871
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6872 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6873 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6874
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6875
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6876 /* Scroll bar support. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6877
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6878 /* Given an window ID, find the struct scroll_bar which manages it.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6879 This can be called in GC, so we have to make sure to strip off mark
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6880 bits. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6881 struct scroll_bar *
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6882 x_window_to_scroll_bar (window_id)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6883 Window window_id;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6884 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6885 Lisp_Object tail;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6886
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6887 for (tail = Vframe_list;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6888 XGCTYPE (tail) == Lisp_Cons;
25646
9154af188477 Use XCAR and XCDR instead of explicit member references.
Ken Raeburn <raeburn@raeburn.org>
parents: 25236
diff changeset
6889 tail = XCDR (tail))
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6890 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6891 Lisp_Object frame, bar, condemned;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6892
25646
9154af188477 Use XCAR and XCDR instead of explicit member references.
Ken Raeburn <raeburn@raeburn.org>
parents: 25236
diff changeset
6893 frame = XCAR (tail);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6894 /* All elements of Vframe_list should be frames. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6895 if (! GC_FRAMEP (frame))
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6896 abort ();
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6897
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6898 /* Scan this frame's scroll bar list for a scroll bar with the
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6899 right window ID. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6900 condemned = FRAME_CONDEMNED_SCROLL_BARS (XFRAME (frame));
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6901 for (bar = FRAME_SCROLL_BARS (XFRAME (frame));
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6902 /* This trick allows us to search both the ordinary and
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6903 condemned scroll bar lists with one loop. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6904 ! GC_NILP (bar) || (bar = condemned,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6905 condemned = Qnil,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6906 ! GC_NILP (bar));
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6907 bar = XSCROLL_BAR (bar)->next)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
6908 if (SCROLL_BAR_W32_WINDOW (XSCROLL_BAR (bar)) == window_id)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6909 return XSCROLL_BAR (bar);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6910 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6911
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6912 return 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6913 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6914
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6915
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6916
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6917 /* Set the thumb size and position of scroll bar BAR. We are currently
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6918 displaying PORTION out of a whole WHOLE, and our position POSITION. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6919
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6920 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6921 w32_set_scroll_bar_thumb (bar, portion, position, whole)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6922 struct scroll_bar *bar;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6923 int portion, position, whole;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6924 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6925 Window w = SCROLL_BAR_W32_WINDOW (bar);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6926 int range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6927 int sb_page, sb_pos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6928 BOOL draggingp = !NILP (bar->dragging) ? TRUE : FALSE;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6929
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6930 if (whole)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6931 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6932 /* Position scroll bar at rock bottom if the bottom of the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6933 buffer is visible. This avoids shinking the thumb away
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6934 to nothing if it is held at the bottom of the buffer. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6935 if (position + portion >= whole)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6936 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6937 sb_page = range * (whole - position) / whole
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6938 + VERTICAL_SCROLL_BAR_MIN_HANDLE;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6939 sb_pos = range;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6940 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6941
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6942 sb_page = portion * range / whole + VERTICAL_SCROLL_BAR_MIN_HANDLE;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6943 sb_pos = position * range / whole;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6944 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6945 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6946 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6947 sb_page = range;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6948 sb_pos = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6949 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6950
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6951 BLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6952
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6953 if (pfnSetScrollInfo)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6954 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6955 SCROLLINFO si;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6956
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6957 si.cbSize = sizeof (si);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6958 /* Only update page size if currently dragging, to reduce
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6959 flicker effects. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6960 if (draggingp)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6961 si.fMask = SIF_PAGE;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6962 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6963 si.fMask = SIF_PAGE | SIF_POS;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6964 si.nPage = sb_page;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6965 si.nPos = sb_pos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6966
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6967 pfnSetScrollInfo (w, SB_CTL, &si, !draggingp);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6968 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6969 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6970 SetScrollPos (w, SB_CTL, sb_pos, !draggingp);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6971
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6972 UNBLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6973 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6974
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6975
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6976 /************************************************************************
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6977 Scroll bars, general
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6978 ************************************************************************/
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6979
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6980 HWND
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6981 my_create_scrollbar (f, bar)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6982 struct frame * f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6983 struct scroll_bar * bar;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6984 {
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
6985 return (HWND) SendMessage (FRAME_W32_WINDOW (f),
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
6986 WM_EMACS_CREATESCROLLBAR, (WPARAM) f,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
6987 (LPARAM) bar);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6988 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6989
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
6990 //#define ATTACH_THREADS
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
6991
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
6992 BOOL
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
6993 my_show_window (FRAME_PTR f, HWND hwnd, int how)
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
6994 {
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
6995 #ifndef ATTACH_THREADS
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
6996 return SendMessage (FRAME_W32_WINDOW (f), WM_EMACS_SHOWWINDOW,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
6997 (WPARAM) hwnd, (LPARAM) how);
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
6998 #else
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
6999 return ShowWindow (hwnd, how);
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7000 #endif
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7001 }
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7002
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7003 void
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7004 my_set_window_pos (HWND hwnd, HWND hwndAfter,
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7005 int x, int y, int cx, int cy, UINT flags)
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7006 {
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7007 #ifndef ATTACH_THREADS
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7008 WINDOWPOS pos;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7009 pos.hwndInsertAfter = hwndAfter;
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7010 pos.x = x;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7011 pos.y = y;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7012 pos.cx = cx;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7013 pos.cy = cy;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7014 pos.flags = flags;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7015 SendMessage (hwnd, WM_EMACS_SETWINDOWPOS, (WPARAM) &pos, 0);
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7016 #else
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7017 SetWindowPos (hwnd, hwndAfter, x, y, cx, cy, flags);
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7018 #endif
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7019 }
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7020
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7021 BOOL
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7022 my_set_focus (f, hwnd)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7023 struct frame * f;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7024 HWND hwnd;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7025 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7026 SendMessage (FRAME_W32_WINDOW (f), WM_EMACS_SETFOCUS,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7027 (WPARAM) hwnd, 0);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7028 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7029
21614
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7030 BOOL
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7031 my_set_foreground_window (hwnd)
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7032 HWND hwnd;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7033 {
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7034 SendMessage (hwnd, WM_EMACS_SETFOREGROUND, (WPARAM) hwnd, 0);
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7035 }
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7036
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7037 void
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7038 my_destroy_window (f, hwnd)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7039 struct frame * f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7040 HWND hwnd;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7041 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7042 SendMessage (FRAME_W32_WINDOW (f), WM_EMACS_DESTROYWINDOW,
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7043 (WPARAM) hwnd, 0);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7044 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7045
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7046 /* Create a scroll bar and return the scroll bar vector for it. W is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7047 the Emacs window on which to create the scroll bar. TOP, LEFT,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7048 WIDTH and HEIGHT are.the pixel coordinates and dimensions of the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7049 scroll bar. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7050
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7051 static struct scroll_bar *
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7052 x_scroll_bar_create (w, top, left, width, height)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7053 struct window *w;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7054 int top, left, width, height;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7055 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7056 struct frame *f = XFRAME (WINDOW_FRAME (w));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7057 HWND hwnd;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7058 struct scroll_bar *bar
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7059 = XSCROLL_BAR (Fmake_vector (make_number (SCROLL_BAR_VEC_SIZE), Qnil));
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7060
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7061 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7062
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7063 XSETWINDOW (bar->window, w);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7064 XSETINT (bar->top, top);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7065 XSETINT (bar->left, left);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7066 XSETINT (bar->width, width);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7067 XSETINT (bar->height, height);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7068 XSETINT (bar->start, 0);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7069 XSETINT (bar->end, 0);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7070 bar->dragging = Qnil;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7071
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7072 /* Requires geometry to be set before call to create the real window */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7073
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7074 hwnd = my_create_scrollbar (f, bar);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7075
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7076 if (pfnSetScrollInfo)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7077 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7078 SCROLLINFO si;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7079
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7080 si.cbSize = sizeof (si);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7081 si.fMask = SIF_ALL;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7082 si.nMin = 0;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7083 si.nMax = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7084 + VERTICAL_SCROLL_BAR_MIN_HANDLE;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7085 si.nPage = si.nMax;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7086 si.nPos = 0;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7087
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7088 pfnSetScrollInfo (hwnd, SB_CTL, &si, FALSE);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7089 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7090 else
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7091 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7092 SetScrollRange (hwnd, SB_CTL, 0,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7093 VERTICAL_SCROLL_BAR_TOP_RANGE (f, height), FALSE);
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7094 SetScrollPos (hwnd, SB_CTL, 0, FALSE);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7095 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7096
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7097 SET_SCROLL_BAR_W32_WINDOW (bar, hwnd);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7098
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7099 /* Add bar to its frame's list of scroll bars. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7100 bar->next = FRAME_SCROLL_BARS (f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7101 bar->prev = Qnil;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7102 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7103 if (! NILP (bar->next))
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7104 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7105
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7106 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7107
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7108 return bar;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7109 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7110
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7111
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7112 /* Destroy scroll bar BAR, and set its Emacs window's scroll bar to
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7113 nil. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7114
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7115 static void
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7116 x_scroll_bar_remove (bar)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7117 struct scroll_bar *bar;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7118 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7119 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7120
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7121 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7122
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7123 /* Destroy the window. */
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7124 my_destroy_window (f, SCROLL_BAR_W32_WINDOW (bar));
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7125
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7126 /* Disassociate this scroll bar from its window. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7127 XWINDOW (bar->window)->vertical_scroll_bar = Qnil;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7128
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7129 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7130 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7131
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7132 /* Set the handle of the vertical scroll bar for WINDOW to indicate
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7133 that we are displaying PORTION characters out of a total of WHOLE
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7134 characters, starting at POSITION. If WINDOW has no scroll bar,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7135 create one. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7136 static void
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7137 w32_set_vertical_scroll_bar (w, portion, whole, position)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7138 struct window *w;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7139 int portion, whole, position;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7140 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7141 struct frame *f = XFRAME (w->frame);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7142 struct scroll_bar *bar;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7143 int top, left, sb_left, width, sb_width, height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7144 int window_x, window_y, window_width, window_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7145
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7146 /* Get window dimensions. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7147 window_box (w, -1, &window_x, &window_y, &window_width, &window_height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7148 top = window_y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7149 width = FRAME_SCROLL_BAR_COLS (f) * CANON_X_UNIT (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7150 height = window_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7151
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7152 /* Compute the left edge of the scroll bar area. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7153 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7154 left = XINT (w->left) + XINT (w->width) - FRAME_SCROLL_BAR_COLS (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7155 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7156 left = XFASTINT (w->left);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7157 left *= CANON_X_UNIT (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7158 left += FRAME_INTERNAL_BORDER_WIDTH (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7159
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7160 /* Compute the width of the scroll bar which might be less than
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7161 the width of the area reserved for the scroll bar. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7162 if (FRAME_SCROLL_BAR_PIXEL_WIDTH (f) > 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7163 sb_width = FRAME_SCROLL_BAR_PIXEL_WIDTH (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7164 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7165 sb_width = width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7166
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7167 /* Compute the left edge of the scroll bar. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7168 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7169 sb_left = left + width - sb_width - (width - sb_width) / 2;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7170 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7171 sb_left = left + (width - sb_width) / 2;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7172
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7173 /* Does the scroll bar exist yet? */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7174 if (NILP (w->vertical_scroll_bar))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7175 {
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
7176 HDC hdc;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7177 BLOCK_INPUT;
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
7178 hdc = get_frame_dc (f);
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
7179 w32_clear_area (f, hdc, left, top, width, height);
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
7180 release_frame_dc (f, hdc);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7181 UNBLOCK_INPUT;
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
7182
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7183 bar = x_scroll_bar_create (w, top, sb_left, sb_width, height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7184 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7185 else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7186 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7187 /* It may just need to be moved and resized. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7188 HWND hwnd;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7189
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7190 bar = XSCROLL_BAR (w->vertical_scroll_bar);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7191 hwnd = SCROLL_BAR_W32_WINDOW (bar);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7192
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7193 /* If already correctly positioned, do nothing. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7194 if ( XINT (bar->left) == sb_left
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7195 && XINT (bar->top) == top
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7196 && XINT (bar->width) == sb_width
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7197 && XINT (bar->height) == height )
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7198 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7199 /* Redraw after clear_frame. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7200 if (!my_show_window (f, hwnd, SW_NORMAL))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7201 InvalidateRect (hwnd, NULL, FALSE);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7202 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7203 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7204 {
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
7205 HDC hdc;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7206 BLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7207
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
7208 hdc = get_frame_dc (f);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7209 /* Since Windows scroll bars are smaller than the space reserved
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7210 for them on the frame, we have to clear "under" them. */
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
7211 w32_clear_area (f, hdc,
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7212 left,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7213 top,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7214 width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7215 height);
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
7216 release_frame_dc (f, hdc);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7217
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7218 /* Make sure scroll bar is "visible" before moving, to ensure the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7219 area of the parent window now exposed will be refreshed. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7220 my_show_window (f, hwnd, SW_HIDE);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7221 MoveWindow (hwnd, sb_left, top,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7222 sb_width, height, TRUE);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7223 if (pfnSetScrollInfo)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7224 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7225 SCROLLINFO si;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7226
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7227 si.cbSize = sizeof (si);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7228 si.fMask = SIF_RANGE;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7229 si.nMin = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7230 si.nMax = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7231 + VERTICAL_SCROLL_BAR_MIN_HANDLE;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7232
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
7233 pfnSetScrollInfo (hwnd, SB_CTL, &si, FALSE);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7234 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7235 else
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
7236 SetScrollRange (hwnd, SB_CTL, 0,
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7237 VERTICAL_SCROLL_BAR_TOP_RANGE (f, height), FALSE);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7238 my_show_window (f, hwnd, SW_NORMAL);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7239 // InvalidateRect (w, NULL, FALSE);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7240
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7241 /* Remember new settings. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7242 XSETINT (bar->left, sb_left);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7243 XSETINT (bar->top, top);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7244 XSETINT (bar->width, sb_width);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7245 XSETINT (bar->height, height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7246
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7247 UNBLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7248 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7249 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7250 w32_set_scroll_bar_thumb (bar, portion, position, whole);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7251
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7252 XSETVECTOR (w->vertical_scroll_bar, bar);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7253 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7254
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7255
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7256 /* The following three hooks are used when we're doing a thorough
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7257 redisplay of the frame. We don't explicitly know which scroll bars
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7258 are going to be deleted, because keeping track of when windows go
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7259 away is a real pain - "Can you say set-window-configuration, boys
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7260 and girls?" Instead, we just assert at the beginning of redisplay
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7261 that *all* scroll bars are to be removed, and then save a scroll bar
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7262 from the fiery pit when we actually redisplay its window. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7263
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7264 /* Arrange for all scroll bars on FRAME to be removed at the next call
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7265 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7266 `*redeem_scroll_bar_hook' is applied to its window before the judgement. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7267 static void
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7268 w32_condemn_scroll_bars (frame)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7269 FRAME_PTR frame;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7270 {
21614
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7271 /* Transfer all the scroll bars to FRAME_CONDEMNED_SCROLL_BARS. */
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7272 while (! NILP (FRAME_SCROLL_BARS (frame)))
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7273 {
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7274 Lisp_Object bar;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7275 bar = FRAME_SCROLL_BARS (frame);
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7276 FRAME_SCROLL_BARS (frame) = XSCROLL_BAR (bar)->next;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7277 XSCROLL_BAR (bar)->next = FRAME_CONDEMNED_SCROLL_BARS (frame);
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7278 XSCROLL_BAR (bar)->prev = Qnil;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7279 if (! NILP (FRAME_CONDEMNED_SCROLL_BARS (frame)))
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7280 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame))->prev = bar;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7281 FRAME_CONDEMNED_SCROLL_BARS (frame) = bar;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7282 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7283 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7284
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7285 /* Unmark WINDOW's scroll bar for deletion in this judgement cycle.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7286 Note that WINDOW isn't necessarily condemned at all. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7287 static void
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7288 w32_redeem_scroll_bar (window)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7289 struct window *window;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7290 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7291 struct scroll_bar *bar;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7292
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7293 /* We can't redeem this window's scroll bar if it doesn't have one. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7294 if (NILP (window->vertical_scroll_bar))
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7295 abort ();
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7296
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7297 bar = XSCROLL_BAR (window->vertical_scroll_bar);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7298
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7299 /* Unlink it from the condemned list. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7300 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7301 FRAME_PTR f = XFRAME (WINDOW_FRAME (window));
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7302
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7303 if (NILP (bar->prev))
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7304 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7305 /* If the prev pointer is nil, it must be the first in one of
21614
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7306 the lists. */
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7307 if (EQ (FRAME_SCROLL_BARS (f), window->vertical_scroll_bar))
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7308 /* It's not condemned. Everything's fine. */
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7309 return;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7310 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f),
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7311 window->vertical_scroll_bar))
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7312 FRAME_CONDEMNED_SCROLL_BARS (f) = bar->next;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7313 else
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7314 /* If its prev pointer is nil, it must be at the front of
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7315 one or the other! */
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7316 abort ();
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7317 }
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7318 else
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7319 XSCROLL_BAR (bar->prev)->next = bar->next;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7320
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7321 if (! NILP (bar->next))
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7322 XSCROLL_BAR (bar->next)->prev = bar->prev;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7323
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7324 bar->next = FRAME_SCROLL_BARS (f);
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7325 bar->prev = Qnil;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7326 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7327 if (! NILP (bar->next))
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7328 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7329 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7330 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7331
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7332 /* Remove all scroll bars on FRAME that haven't been saved since the
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7333 last call to `*condemn_scroll_bars_hook'. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7334 static void
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7335 w32_judge_scroll_bars (f)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7336 FRAME_PTR f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7337 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7338 Lisp_Object bar, next;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7339
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7340 bar = FRAME_CONDEMNED_SCROLL_BARS (f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7341
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7342 /* Clear out the condemned list now so we won't try to process any
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7343 more events on the hapless scroll bars. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7344 FRAME_CONDEMNED_SCROLL_BARS (f) = Qnil;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7345
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7346 for (; ! NILP (bar); bar = next)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7347 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7348 struct scroll_bar *b = XSCROLL_BAR (bar);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7349
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7350 x_scroll_bar_remove (b);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7351
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7352 next = b->next;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7353 b->next = b->prev = Qnil;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7354 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7355
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7356 /* Now there should be no references to the condemned scroll bars,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7357 and they should get garbage-collected. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7358 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7359
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7360 /* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7361 is set to something other than no_event, it is enqueued.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7362
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7363 This may be called from a signal handler, so we have to ignore GC
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7364 mark bits. */
15216
f639c5d732a3 (x_scroll_bar_set_handle): Always use start in calling SetScrollPos.
Richard M. Stallman <rms@gnu.org>
parents: 15204
diff changeset
7365
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7366 static int
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7367 x_scroll_bar_handle_click (bar, msg, emacs_event)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7368 struct scroll_bar *bar;
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7369 W32Msg *msg;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7370 struct input_event *emacs_event;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7371 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7372 if (! GC_WINDOWP (bar->window))
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7373 abort ();
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7374
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7375 emacs_event->kind = w32_scroll_bar_click;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7376 emacs_event->code = 0;
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7377 /* not really meaningful to distinguish up/down */
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7378 emacs_event->modifiers = msg->dwModifiers;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7379 emacs_event->frame_or_window = bar->window;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7380 emacs_event->timestamp = msg->msg.time;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7381
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7382 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7383 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7384 int y;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7385 int dragging = !NILP (bar->dragging);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7386
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7387 if (pfnGetScrollInfo)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7388 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7389 SCROLLINFO si;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7390
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7391 si.cbSize = sizeof (si);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7392 si.fMask = SIF_POS;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7393
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7394 pfnGetScrollInfo ((HWND) msg->msg.lParam, SB_CTL, &si);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7395 y = si.nPos;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7396 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7397 else
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7398 y = GetScrollPos ((HWND) msg->msg.lParam, SB_CTL);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7399
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7400 bar->dragging = Qnil;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7401
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7402 switch (LOWORD (msg->msg.wParam))
15216
f639c5d732a3 (x_scroll_bar_set_handle): Always use start in calling SetScrollPos.
Richard M. Stallman <rms@gnu.org>
parents: 15204
diff changeset
7403 {
f639c5d732a3 (x_scroll_bar_set_handle): Always use start in calling SetScrollPos.
Richard M. Stallman <rms@gnu.org>
parents: 15204
diff changeset
7404 case SB_LINEDOWN:
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7405 emacs_event->part = scroll_bar_down_arrow;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7406 break;
15216
f639c5d732a3 (x_scroll_bar_set_handle): Always use start in calling SetScrollPos.
Richard M. Stallman <rms@gnu.org>
parents: 15204
diff changeset
7407 case SB_LINEUP:
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7408 emacs_event->part = scroll_bar_up_arrow;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7409 break;
15216
f639c5d732a3 (x_scroll_bar_set_handle): Always use start in calling SetScrollPos.
Richard M. Stallman <rms@gnu.org>
parents: 15204
diff changeset
7410 case SB_PAGEUP:
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7411 emacs_event->part = scroll_bar_above_handle;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7412 break;
15216
f639c5d732a3 (x_scroll_bar_set_handle): Always use start in calling SetScrollPos.
Richard M. Stallman <rms@gnu.org>
parents: 15204
diff changeset
7413 case SB_PAGEDOWN:
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7414 emacs_event->part = scroll_bar_below_handle;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7415 break;
15216
f639c5d732a3 (x_scroll_bar_set_handle): Always use start in calling SetScrollPos.
Richard M. Stallman <rms@gnu.org>
parents: 15204
diff changeset
7416 case SB_TOP:
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7417 emacs_event->part = scroll_bar_handle;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7418 y = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7419 break;
15216
f639c5d732a3 (x_scroll_bar_set_handle): Always use start in calling SetScrollPos.
Richard M. Stallman <rms@gnu.org>
parents: 15204
diff changeset
7420 case SB_BOTTOM:
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7421 emacs_event->part = scroll_bar_handle;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7422 y = top_range;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7423 break;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7424 case SB_THUMBTRACK:
15216
f639c5d732a3 (x_scroll_bar_set_handle): Always use start in calling SetScrollPos.
Richard M. Stallman <rms@gnu.org>
parents: 15204
diff changeset
7425 case SB_THUMBPOSITION:
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7426 if (VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height)) <= 0xffff)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7427 y = HIWORD (msg->msg.wParam);
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7428 bar->dragging = Qt;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7429 emacs_event->part = scroll_bar_handle;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7430
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7431 /* "Silently" update current position. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7432 if (pfnSetScrollInfo)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7433 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7434 SCROLLINFO si;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7435
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7436 si.cbSize = sizeof (si);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7437 si.fMask = SIF_POS;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7438 si.nPos = y;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7439 /* Remember apparent position (we actually lag behind the real
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7440 position, so don't set that directly. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7441 last_scroll_bar_drag_pos = y;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7442
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7443 pfnSetScrollInfo (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, &si, FALSE);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7444 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7445 else
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7446 SetScrollPos (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, y, FALSE);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7447 break;
15216
f639c5d732a3 (x_scroll_bar_set_handle): Always use start in calling SetScrollPos.
Richard M. Stallman <rms@gnu.org>
parents: 15204
diff changeset
7448 case SB_ENDSCROLL:
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7449 /* If this is the end of a drag sequence, then reset the scroll
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7450 handle size to normal and do a final redraw. Otherwise do
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7451 nothing. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7452 if (dragging)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7453 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7454 if (pfnSetScrollInfo)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7455 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7456 SCROLLINFO si;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7457 int start = XINT (bar->start);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7458 int end = XINT (bar->end);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7459
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7460 si.cbSize = sizeof (si);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7461 si.fMask = SIF_PAGE | SIF_POS;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7462 si.nPage = end - start + VERTICAL_SCROLL_BAR_MIN_HANDLE;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7463 si.nPos = last_scroll_bar_drag_pos;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7464 pfnSetScrollInfo (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, &si, TRUE);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7465 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7466 else
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7467 SetScrollPos (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, y, TRUE);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7468 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7469 /* fall through */
15216
f639c5d732a3 (x_scroll_bar_set_handle): Always use start in calling SetScrollPos.
Richard M. Stallman <rms@gnu.org>
parents: 15204
diff changeset
7470 default:
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7471 emacs_event->kind = no_event;
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7472 return FALSE;
15216
f639c5d732a3 (x_scroll_bar_set_handle): Always use start in calling SetScrollPos.
Richard M. Stallman <rms@gnu.org>
parents: 15204
diff changeset
7473 }
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7474
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7475 XSETINT (emacs_event->x, y);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7476 XSETINT (emacs_event->y, top_range);
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7477
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7478 return TRUE;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7479 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7480 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7481
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7482 /* Return information to the user about the current position of the mouse
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7483 on the scroll bar. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7484 static void
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7485 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7486 FRAME_PTR *fp;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7487 Lisp_Object *bar_window;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7488 enum scroll_bar_part *part;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7489 Lisp_Object *x, *y;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7490 unsigned long *time;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7491 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7492 struct scroll_bar *bar = XSCROLL_BAR (last_mouse_scroll_bar);
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7493 Window w = SCROLL_BAR_W32_WINDOW (bar);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7494 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7495 int pos;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7496 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7497
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7498 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7499
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7500 *fp = f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7501 *bar_window = bar->window;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7502
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7503 if (pfnGetScrollInfo)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7504 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7505 SCROLLINFO si;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7506
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7507 si.cbSize = sizeof (si);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7508 si.fMask = SIF_POS | SIF_PAGE | SIF_RANGE;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7509
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7510 pfnGetScrollInfo (w, SB_CTL, &si);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7511 pos = si.nPos;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7512 top_range = si.nMax - si.nPage + 1;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7513 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7514 else
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7515 pos = GetScrollPos (w, SB_CTL);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7516
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7517 switch (LOWORD (last_mouse_scroll_bar_pos))
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7518 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7519 case SB_THUMBPOSITION:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7520 case SB_THUMBTRACK:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7521 *part = scroll_bar_handle;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7522 if (VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height)) <= 0xffff)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7523 pos = HIWORD (last_mouse_scroll_bar_pos);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7524 break;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7525 case SB_LINEDOWN:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7526 *part = scroll_bar_handle;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7527 pos++;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7528 break;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7529 default:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7530 *part = scroll_bar_handle;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7531 break;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7532 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7533
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7534 XSETINT(*x, pos);
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7535 XSETINT(*y, top_range);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7536
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7537 f->mouse_moved = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7538 last_mouse_scroll_bar = Qnil;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7539
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7540 *time = last_mouse_movement_time;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7541
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7542 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7543 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7544
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7545 /* The screen has been cleared so we may have changed foreground or
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7546 background colors, and the scroll bars may need to be redrawn.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7547 Clear out the scroll bars, and ask for expose events, so we can
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7548 redraw them. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7549 void
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7550 x_scroll_bar_clear (f)
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7551 struct frame *f;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7552 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7553 Lisp_Object bar;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7554
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7555 for (bar = FRAME_SCROLL_BARS (f); VECTORP (bar);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7556 bar = XSCROLL_BAR (bar)->next)
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7557 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7558 HWND window = SCROLL_BAR_W32_WINDOW (XSCROLL_BAR (bar));
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7559 HDC hdc = GetDC (window);
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7560 RECT rect;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7561
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7562 /* Hide scroll bar until ready to repaint. x_scroll_bar_move
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7563 arranges to refresh the scroll bar if hidden. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7564 my_show_window (f, window, SW_HIDE);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7565
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7566 GetClientRect (window, &rect);
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7567 select_palette (f, hdc);
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7568 w32_clear_rect (f, hdc, &rect);
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7569 deselect_palette (f, hdc);
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7570
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7571 ReleaseDC (window, hdc);
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7572 }
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7573 }
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7574
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7575 show_scroll_bars (f, how)
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7576 FRAME_PTR f;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7577 int how;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7578 {
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7579 Lisp_Object bar;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7580
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7581 for (bar = FRAME_SCROLL_BARS (f); VECTORP (bar);
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7582 bar = XSCROLL_BAR (bar)->next)
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7583 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7584 HWND window = SCROLL_BAR_W32_WINDOW (XSCROLL_BAR (bar));
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7585 my_show_window (f, window, how);
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7586 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7587 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7588
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7589
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7590 /* The main W32 event-reading loop - w32_read_socket. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7591
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7592 /* Timestamp of enter window event. This is only used by w32_read_socket,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7593 but we have to put it out here, since static variables within functions
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7594 sometimes don't work. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7595 static Time enter_timestamp;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7596
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7597 /* Record the last 100 characters stored
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7598 to help debug the loss-of-chars-during-GC problem. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7599 int temp_index;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7600 short temp_buffer[100];
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7601
14462
599a3ae1e8ea (convert_to_key_event, is_dead_key): New functions.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14351
diff changeset
7602
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7603 /* Read events coming from the W32 shell.
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7604 This routine is called by the SIGIO handler.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7605 We return as soon as there are no more events to be read.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7606
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7607 Events representing keys are stored in buffer BUFP,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7608 which can hold up to NUMCHARS characters.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7609 We return the number of characters stored into the buffer,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7610 thus pretending to be `read'.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7611
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7612 EXPECTED is nonzero if the caller knows input is available.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7613
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7614 Some of these messages are reposted back to the message queue since the
16884
36babc489b0c Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents: 16588
diff changeset
7615 system calls the windows proc directly in a context where we cannot return
36babc489b0c Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents: 16588
diff changeset
7616 the data nor can we guarantee the state we are in. So if we dispatch them
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7617 we will get into an infinite loop. To prevent this from ever happening we
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7618 will set a variable to indicate we are in the read_socket call and indicate
16884
36babc489b0c Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents: 16588
diff changeset
7619 which message we are processing since the windows proc gets called
36babc489b0c Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents: 16588
diff changeset
7620 recursively with different messages by the system.
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7621 */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7622
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7623 int
16326
a85909645f7a (w32_read_socket): Delete WAITP arg.
Richard M. Stallman <rms@gnu.org>
parents: 16258
diff changeset
7624 w32_read_socket (sd, bufp, numchars, expected)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7625 register int sd;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7626 register struct input_event *bufp;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7627 register int numchars;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7628 int expected;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7629 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7630 int count = 0;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7631 int check_visibility = 0;
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7632 W32Msg msg;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7633 struct frame *f;
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7634 struct w32_display_info *dpyinfo = &one_w32_display_info;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7635
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7636 if (interrupt_input_blocked)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7637 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7638 interrupt_input_pending = 1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7639 return -1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7640 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7641
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7642 interrupt_input_pending = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7643 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7644
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7645 /* So people can tell when we have read the available input. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7646 input_signal_count++;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7647
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7648 if (numchars <= 0)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7649 abort (); /* Don't think this happens. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7650
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7651 /* NTEMACS_TODO: tooltips, tool-bars, ghostscript integration, mouse
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7652 cursors. */
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7653 while (get_next_msg (&msg, FALSE))
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7654 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7655 switch (msg.msg.message)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7656 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7657 case WM_PAINT:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7658 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7659
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7660 if (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7661 {
21740
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
7662 if (msg.rect.right == msg.rect.left ||
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
7663 msg.rect.bottom == msg.rect.top)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7664 {
21740
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
7665 /* We may get paint messages even though the client
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
7666 area is clipped - these are not expose events. */
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
7667 DebPrint (("clipped frame %04x (%s) got WM_PAINT\n", f,
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
7668 XSTRING (f->name)->data));
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
7669 }
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
7670 else if (f->async_visible != 1)
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
7671 {
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
7672 /* Definitely not obscured, so mark as visible. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7673 f->async_visible = 1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7674 f->async_iconified = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7675 SET_FRAME_GARBAGED (f);
21740
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
7676 DebPrint (("frame %04x (%s) reexposed\n", f,
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
7677 XSTRING (f->name)->data));
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7678
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7679 /* WM_PAINT serves as MapNotify as well, so report
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7680 visibility changes properly. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7681 if (f->iconified)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7682 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7683 bufp->kind = deiconify_event;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7684 XSETFRAME (bufp->frame_or_window, f);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7685 bufp++;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7686 count++;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7687 numchars--;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7688 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7689 else if (! NILP(Vframe_list)
25646
9154af188477 Use XCAR and XCDR instead of explicit member references.
Ken Raeburn <raeburn@raeburn.org>
parents: 25236
diff changeset
7690 && ! NILP (XCDR (Vframe_list)))
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7691 /* Force a redisplay sooner or later to update the
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7692 frame titles in case this is the second frame. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7693 record_asynch_buffer_change ();
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7694 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7695 else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7696 {
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
7697 HDC hdc = get_frame_dc (f);
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
7698
15723
d2cee951f37e (w32_read_socket): Need to erase background
Karl Heuer <kwzh@gnu.org>
parents: 15651
diff changeset
7699 /* Erase background again for safety. */
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
7700 w32_clear_rect (f, hdc, &msg.rect);
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
7701 release_frame_dc (f, hdc);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7702 expose_frame (f,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7703 msg.rect.left,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7704 msg.rect.top,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7705 msg.rect.right - msg.rect.left,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7706 msg.rect.bottom - msg.rect.top);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7707 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7708 }
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7709 break;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7710
23677
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7711 case WM_INPUTLANGCHANGE:
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7712 /* Generate a language change event. */
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7713 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7714
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7715 if (f)
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7716 {
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7717 if (numchars == 0)
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7718 abort ();
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7719
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7720 bufp->kind = language_change_event;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7721 XSETFRAME (bufp->frame_or_window, f);
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7722 bufp->code = msg.msg.wParam;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7723 bufp->modifiers = msg.msg.lParam & 0xffff;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7724 bufp++;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7725 count++;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7726 numchars--;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7727 }
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7728 break;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7729
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7730 case WM_KEYDOWN:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7731 case WM_SYSKEYDOWN:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7732 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7733
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7734 if (f && !f->iconified)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7735 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7736 if (temp_index == sizeof temp_buffer / sizeof (short))
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7737 temp_index = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7738 temp_buffer[temp_index++] = msg.msg.wParam;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7739 bufp->kind = non_ascii_keystroke;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7740 bufp->code = msg.msg.wParam;
23677
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7741 bufp->modifiers = msg.dwModifiers;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7742 XSETFRAME (bufp->frame_or_window, f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7743 bufp->timestamp = msg.msg.time;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7744 bufp++;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7745 numchars--;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7746 count++;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7747 if (display_busy_cursor_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7748 if (bufp->code != VK_RETURN || minibuf_level == 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7749 inhibit_busy_cursor = 2;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7750 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7751 break;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7752
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7753 case WM_SYSCHAR:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7754 case WM_CHAR:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7755 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7756
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7757 if (f && !f->iconified)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7758 {
23677
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7759 if (temp_index == sizeof temp_buffer / sizeof (short))
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7760 temp_index = 0;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7761 temp_buffer[temp_index++] = msg.msg.wParam;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7762 bufp->kind = ascii_keystroke;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7763 bufp->code = msg.msg.wParam;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7764 bufp->modifiers = msg.dwModifiers;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7765 XSETFRAME (bufp->frame_or_window, f);
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7766 bufp->timestamp = msg.msg.time;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7767 bufp++;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7768 numchars--;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
7769 count++;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7770 if (display_busy_cursor_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7771 if (bufp->code != VK_RETURN || minibuf_level == 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7772 inhibit_busy_cursor = 2;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7773 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7774 break;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7775
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7776 case WM_MOUSEMOVE:
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7777 previous_help_echo = help_echo;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7778 help_echo = Qnil;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7779
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7780 if (dpyinfo->grabbed && last_mouse_frame
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7781 && FRAME_LIVE_P (last_mouse_frame))
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7782 f = last_mouse_frame;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7783 else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7784 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7785
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7786 if (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7787 note_mouse_movement (f, &msg.msg);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7788 else
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7789 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7790 /* If we move outside the frame, then we're
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7791 certainly no longer on any text in the frame. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7792 clear_mouse_face (FRAME_W32_DISPLAY_INFO (f));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7793 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7794
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7795 /* If the contents of the global variable help_echo
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7796 has changed, generate a HELP_EVENT. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7797 if (STRINGP (help_echo)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7798 || STRINGP (previous_help_echo))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7799 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7800 Lisp_Object frame;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7801
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7802 if (f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7803 XSETFRAME (frame, f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7804 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7805 frame = Qnil;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7806
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7807 any_help_event_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7808 bufp->kind = HELP_EVENT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7809 bufp->frame_or_window = Fcons (frame, help_echo);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7810 ++bufp, ++count, --numchars;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7811 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7812 break;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7813
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7814 case WM_LBUTTONDOWN:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7815 case WM_LBUTTONUP:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7816 case WM_MBUTTONDOWN:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7817 case WM_MBUTTONUP:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7818 case WM_RBUTTONDOWN:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7819 case WM_RBUTTONUP:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7820 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7821 /* If we decide we want to generate an event to be seen
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7822 by the rest of Emacs, we put it here. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7823 struct input_event emacs_event;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7824 int tool_bar_p = 0;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7825 int button;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7826 int up;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7827
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7828 emacs_event.kind = no_event;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7829
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7830 if (dpyinfo->grabbed && last_mouse_frame
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7831 && FRAME_LIVE_P (last_mouse_frame))
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7832 f = last_mouse_frame;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7833 else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7834 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7835
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7836 if (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7837 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7838 construct_mouse_click (&emacs_event, &msg, f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7839
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7840 /* Is this in the tool-bar? */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7841 if (WINDOWP (f->tool_bar_window)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7842 && XFASTINT (XWINDOW (f->tool_bar_window)->height))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7843 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7844 Lisp_Object window;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7845 int p, x, y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7846
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7847 /* Set x and y. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7848 window = window_from_coordinates (f,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7849 emacs_event.x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7850 emacs_event.y,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7851 &p, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7852 if (EQ (window, f->tool_bar_window))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7853 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7854 w32_handle_tool_bar_click (f, &emacs_event);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7855 tool_bar_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7856 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7857 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7858
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7859 if (!tool_bar_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7860 if (!dpyinfo->w32_focus_frame
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7861 || f == dpyinfo->w32_focus_frame
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7862 && (numchars >= 1))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7863 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7864 construct_mouse_click (bufp, &msg, f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7865 bufp++;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7866 count++;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7867 numchars--;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7868 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7869 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7870
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7871 parse_button (msg.msg.message, &button, &up);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7872
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7873 if (up)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7874 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7875 dpyinfo->grabbed &= ~ (1 << button);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7876 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7877 else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7878 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7879 dpyinfo->grabbed |= (1 << button);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7880 last_mouse_frame = f;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7881 /* Ignore any mouse motion that happened
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7882 before this event; any subsequent mouse-movement
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7883 Emacs events should reflect only motion after
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7884 the ButtonPress. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7885 if (f != 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7886 f->mouse_moved = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7887
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7888 if (!tool_bar_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7889 last_tool_bar_item = -1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7890 if (display_busy_cursor_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7891 inhibit_busy_cursor = 2;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7892 }
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7893 break;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7894 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7895
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7896 case WM_MOUSEWHEEL:
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7897 if (dpyinfo->grabbed && last_mouse_frame
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7898 && FRAME_LIVE_P (last_mouse_frame))
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7899 f = last_mouse_frame;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7900 else
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7901 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7902
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7903 if (f)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7904 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7905 if ((!dpyinfo->w32_focus_frame
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7906 || f == dpyinfo->w32_focus_frame)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7907 && (numchars >= 1))
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7908 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7909 construct_mouse_wheel (bufp, &msg, f);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7910 bufp++;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7911 count++;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7912 numchars--;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7913 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7914 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7915 break;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7916
21885
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
7917 case WM_DROPFILES:
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
7918 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
7919
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
7920 if (f)
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
7921 {
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
7922 construct_drag_n_drop (bufp, &msg, f);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
7923 bufp++;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
7924 count++;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
7925 numchars--;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
7926 }
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
7927 break;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
7928
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7929 case WM_VSCROLL:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7930 {
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7931 struct scroll_bar *bar =
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7932 x_window_to_scroll_bar ((HWND)msg.msg.lParam);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7933
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7934 if (bar && numchars >= 1)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7935 {
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7936 if (x_scroll_bar_handle_click (bar, &msg, bufp))
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7937 {
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7938 bufp++;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7939 count++;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7940 numchars--;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7941 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7942 }
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7943 break;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7944 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7945
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7946 case WM_WINDOWPOSCHANGED:
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7947 case WM_ACTIVATE:
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7948 case WM_ACTIVATEAPP:
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7949 check_visibility = 1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7950 break;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7951
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7952 case WM_MOVE:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7953 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7954
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7955 if (f && !f->async_iconified)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7956 {
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7957 int x, y;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7958
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7959 x_real_positions (f, &x, &y);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7960 f->output_data.w32->left_pos = x;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7961 f->output_data.w32->top_pos = y;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7962 }
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7963
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7964 check_visibility = 1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7965 break;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7966
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7967 case WM_SHOWWINDOW:
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7968 /* If window has been obscured or exposed by another window
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7969 being maximised or minimised/restored, then recheck
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7970 visibility of all frames. Direct changes to our own
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7971 windows get handled by WM_SIZE. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7972 #if 0
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7973 if (msg.msg.lParam != 0)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7974 check_visibility = 1;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7975 else
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7976 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7977 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7978 f->async_visible = msg.msg.wParam;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7979 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7980 #endif
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7981
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7982 check_visibility = 1;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7983 break;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7984
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7985 case WM_SIZE:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7986 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7987
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7988 /* Inform lisp of whether frame has been iconified etc. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7989 if (f)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7990 {
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7991 switch (msg.msg.wParam)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7992 {
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7993 case SIZE_MINIMIZED:
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7994 f->async_visible = 0;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7995 f->async_iconified = 1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7996
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7997 bufp->kind = iconify_event;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7998 XSETFRAME (bufp->frame_or_window, f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7999 bufp++;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8000 count++;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8001 numchars--;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8002 break;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8003
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8004 case SIZE_MAXIMIZED:
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8005 case SIZE_RESTORED:
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8006 f->async_visible = 1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8007 f->async_iconified = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8008
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8009 /* wait_reading_process_input will notice this and update
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8010 the frame's display structures. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8011 SET_FRAME_GARBAGED (f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8012
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8013 if (f->iconified)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8014 {
24827
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
8015 int x, y;
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
8016
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
8017 /* Reset top and left positions of the Window
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
8018 here since Windows sends a WM_MOVE message
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
8019 BEFORE telling us the Window is minimized
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
8020 when the Window is iconified, with 3000,3000
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
8021 as the co-ords. */
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
8022 x_real_positions (f, &x, &y);
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
8023 f->output_data.w32->left_pos = x;
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
8024 f->output_data.w32->top_pos = y;
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
8025
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8026 bufp->kind = deiconify_event;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8027 XSETFRAME (bufp->frame_or_window, f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8028 bufp++;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8029 count++;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8030 numchars--;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8031 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8032 else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8033 /* Force a redisplay sooner or later
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8034 to update the frame titles
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8035 in case this is the second frame. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8036 record_asynch_buffer_change ();
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8037 break;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8038 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8039 }
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8040
21614
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8041 if (f && !f->async_iconified && msg.msg.wParam != SIZE_MINIMIZED)
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8042 {
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8043 RECT rect;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8044 int rows;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8045 int columns;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8046 int width;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8047 int height;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8048
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8049 GetClientRect(msg.msg.hwnd, &rect);
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8050
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8051 height = rect.bottom - rect.top;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8052 width = rect.right - rect.left;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8053
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8054 rows = PIXEL_TO_CHAR_HEIGHT (f, height);
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8055 columns = PIXEL_TO_CHAR_WIDTH (f, width);
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8056
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8057 /* TODO: Clip size to the screen dimensions. */
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8058
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8059 /* Even if the number of character rows and columns has
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8060 not changed, the font size may have changed, so we need
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8061 to check the pixel dimensions as well. */
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8062
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8063 if (columns != f->width
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8064 || rows != f->height
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8065 || width != f->output_data.w32->pixel_width
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8066 || height != f->output_data.w32->pixel_height)
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8067 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8068 change_frame_size (f, rows, columns, 0, 1, 0);
21614
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8069 SET_FRAME_GARBAGED (f);
24827
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
8070 cancel_mouse_face (f);
21614
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8071 f->output_data.w32->pixel_width = width;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8072 f->output_data.w32->pixel_height = height;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8073 f->output_data.w32->win_gravity = NorthWestGravity;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8074 }
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8075 }
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8076
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8077 check_visibility = 1;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8078 break;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8079
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8080 case WM_SETFOCUS:
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8081 f = x_any_window_to_frame (dpyinfo, msg.msg.hwnd);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8082
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8083 dpyinfo->w32_focus_event_frame = f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8084
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8085 if (f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8086 x_new_focus_frame (dpyinfo, f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8087
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8088
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8089 dpyinfo->grabbed = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8090 check_visibility = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8091 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8092
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8093 case WM_KILLFOCUS:
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8094 /* NTEMACS_TODO: some of this belongs in MOUSE_LEAVE */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8095 f = x_top_window_to_frame (dpyinfo, msg.msg.hwnd);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8096
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8097 if (f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8098 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8099 Lisp_Object frame;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8100
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8101 if (f == dpyinfo->w32_focus_event_frame)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8102 dpyinfo->w32_focus_event_frame = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8103
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8104 if (f == dpyinfo->w32_focus_frame)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8105 x_new_focus_frame (dpyinfo, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8106
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8107 if (f == dpyinfo->mouse_face_mouse_frame)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8108 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8109 /* If we move outside the frame, then we're
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8110 certainly no longer on any text in the frame. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8111 clear_mouse_face (dpyinfo);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8112 dpyinfo->mouse_face_mouse_frame = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8113 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8114 /* Generate a nil HELP_EVENT to cancel a help-echo.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8115 Do it only if there's something to cancel.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8116 Otherwise, the startup message is cleared when
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8117 the mouse leaves the frame. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8118 if (any_help_event_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8119 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8120 XSETFRAME (frame, f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8121 bufp->kind = HELP_EVENT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8122 bufp->frame_or_window = Fcons (frame, Qnil);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8123 ++bufp, ++count, --numchars;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8124 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8125 }
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8126
24752
80c46fd667da (w32_read_socket): Reset the grabbed flag when a frame gains or
Andrew Innes <andrewi@gnu.org>
parents: 24733
diff changeset
8127 dpyinfo->grabbed = 0;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8128 check_visibility = 1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8129 break;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8130
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8131 case WM_CLOSE:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8132 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8133
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8134 if (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8135 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8136 if (numchars == 0)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8137 abort ();
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8138
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8139 bufp->kind = delete_window_event;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8140 XSETFRAME (bufp->frame_or_window, f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8141 bufp++;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8142 count++;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8143 numchars--;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8144 }
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8145 break;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8146
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8147 case WM_INITMENU:
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8148 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8149
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8150 if (f)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8151 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8152 if (numchars == 0)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8153 abort ();
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8154
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8155 bufp->kind = menu_bar_activate_event;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8156 XSETFRAME (bufp->frame_or_window, f);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8157 bufp++;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8158 count++;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8159 numchars--;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8160 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8161 break;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8162
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8163 case WM_COMMAND:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8164 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
21740
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
8165
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8166 if (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8167 {
23677
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8168 extern void menubar_selection_callback
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8169 (FRAME_PTR f, void * client_data);
21740
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
8170 menubar_selection_callback (f, (void *)msg.msg.wParam);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8171 }
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8172
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8173 check_visibility = 1;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8174 break;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8175
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8176 case WM_DISPLAYCHANGE:
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8177 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8178
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8179 if (f)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8180 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8181 dpyinfo->width = (short) LOWORD (msg.msg.lParam);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8182 dpyinfo->height = (short) HIWORD (msg.msg.lParam);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8183 dpyinfo->n_cbits = msg.msg.wParam;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8184 DebPrint (("display change: %d %d\n", dpyinfo->width,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8185 dpyinfo->height));
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8186 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8187
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8188 check_visibility = 1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8189 break;
21875
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8190
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8191 default:
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8192 /* Check for messages registered at runtime. */
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8193 if (msg.msg.message == msh_mousewheel)
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8194 {
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8195 if (dpyinfo->grabbed && last_mouse_frame
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8196 && FRAME_LIVE_P (last_mouse_frame))
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8197 f = last_mouse_frame;
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8198 else
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8199 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8200
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8201 if (f)
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8202 {
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8203 if ((!dpyinfo->w32_focus_frame
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8204 || f == dpyinfo->w32_focus_frame)
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8205 && (numchars >= 1))
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8206 {
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8207 construct_mouse_wheel (bufp, &msg, f);
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8208 bufp++;
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8209 count++;
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8210 numchars--;
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8211 }
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8212 }
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8213 }
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8214 break;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8215 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8216 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8217
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8218 /* If the focus was just given to an autoraising frame,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8219 raise it now. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8220 /* ??? This ought to be able to handle more than one such frame. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8221 if (pending_autoraise_frame)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8222 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8223 x_raise_frame (pending_autoraise_frame);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8224 pending_autoraise_frame = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8225 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8226
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8227 /* Check which frames are still visisble, if we have enqueued any user
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8228 events or been notified of events that may affect visibility. We
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8229 do this here because there doesn't seem to be any direct
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8230 notification from Windows that the visibility of a window has
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8231 changed (at least, not in all cases). */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8232 if (count > 0 || check_visibility)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8233 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8234 Lisp_Object tail, frame;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8235
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8236 FOR_EACH_FRAME (tail, frame)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8237 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8238 FRAME_PTR f = XFRAME (frame);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8239 /* Check "visible" frames and mark each as obscured or not.
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8240 Note that async_visible is nonzero for unobscured and
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8241 obscured frames, but zero for hidden and iconified frames. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8242 if (FRAME_W32_P (f) && f->async_visible)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8243 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8244 RECT clipbox;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8245 HDC hdc = get_frame_dc (f);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8246 GetClipBox (hdc, &clipbox);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8247 release_frame_dc (f, hdc);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8248
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8249 if (clipbox.right == clipbox.left
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8250 || clipbox.bottom == clipbox.top)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8251 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8252 /* Frame has become completely obscured so mark as
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8253 such (we do this by setting async_visible to 2 so
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8254 that FRAME_VISIBLE_P is still true, but redisplay
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8255 will skip it). */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8256 f->async_visible = 2;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8257
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8258 if (!FRAME_OBSCURED_P (f))
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8259 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8260 DebPrint (("frame %04x (%s) obscured\n", f,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8261 XSTRING (f->name)->data));
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8262 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8263 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8264 else
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8265 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8266 /* Frame is not obscured, so mark it as such. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8267 f->async_visible = 1;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8268
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8269 if (FRAME_OBSCURED_P (f))
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8270 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8271 SET_FRAME_GARBAGED (f);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8272 DebPrint (("frame %04x (%s) reexposed\n", f,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8273 XSTRING (f->name)->data));
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8274
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8275 /* Force a redisplay sooner or later. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8276 record_asynch_buffer_change ();
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8277 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8278 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8279 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8280 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8281 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8282
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8283 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8284 return count;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8285 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8286
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8287
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8288 /***********************************************************************
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8289 Text Cursor
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8290 ***********************************************************************/
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8291
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8292 /* Note if the text cursor of window W has been overwritten by a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8293 drawing operation that outputs N glyphs starting at HPOS in the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8294 line given by output_cursor.vpos. N < 0 means all the rest of the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8295 line after HPOS has been written. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8296
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8297 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8298 note_overwritten_text_cursor (w, hpos, n)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8299 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8300 int hpos, n;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8301 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8302 if (updated_area == TEXT_AREA
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8303 && output_cursor.vpos == w->phys_cursor.vpos
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8304 && hpos <= w->phys_cursor.hpos
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8305 && (n < 0
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8306 || hpos + n > w->phys_cursor.hpos))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8307 w->phys_cursor_on_p = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8308 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8309
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8310
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8311 /* Set clipping for output in glyph row ROW. W is the window in which
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8312 we operate. GC is the graphics context to set clipping in.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8313 WHOLE_LINE_P non-zero means include the areas used for truncation
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8314 mark display and alike in the clipping rectangle.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8315
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8316 ROW may be a text row or, e.g., a mode line. Text rows must be
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8317 clipped to the interior of the window dedicated to text display,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8318 mode lines must be clipped to the whole window. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8319
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8320 static void
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8321 w32_clip_to_row (w, row, hdc, whole_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8322 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8323 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8324 HDC hdc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8325 int whole_line_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8326 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8327 struct frame *f = XFRAME (WINDOW_FRAME (w));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8328 RECT clip_rect;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8329 int window_x, window_y, window_width, window_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8330
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8331 window_box (w, -1, &window_x, &window_y, &window_width, &window_height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8332
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8333 clip_rect.left = WINDOW_TO_FRAME_PIXEL_X (w, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8334 clip_rect.top = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8335 clip_rect.top = max (clip_rect.top, window_y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8336 clip_rect.right = clip_rect.left + window_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8337 clip_rect.bottom = clip_rect.top + row->visible_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8338
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8339 /* If clipping to the whole line, including trunc marks, extend
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8340 the rectangle to the left and right. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8341 if (whole_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8342 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8343 clip_rect.left -= FRAME_X_LEFT_FLAGS_AREA_WIDTH (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8344 clip_rect.right += FRAME_X_FLAGS_AREA_WIDTH (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8345 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8346
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8347 w32_set_clip_rectangle (hdc, &clip_rect);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8348 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8349
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8350
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8351 /* Draw a hollow box cursor on window W in glyph row ROW. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8352
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8353 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8354 x_draw_hollow_cursor (w, row)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8355 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8356 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8357 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8358 struct frame *f = XFRAME (WINDOW_FRAME (w));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8359 HDC hdc = get_frame_dc (f);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8360 RECT rect;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8361 int wd;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8362 struct glyph *cursor_glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8363 HBRUSH hb = CreateSolidBrush (f->output_data.w32->cursor_pixel);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8364
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8365 /* Compute frame-relative coordinates from window-relative
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8366 coordinates. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8367 rect.left = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8368 rect.top = (WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8369 + row->ascent - w->phys_cursor_ascent);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8370 rect.bottom = rect.top + row->height - 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8371
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8372 /* Get the glyph the cursor is on. If we can't tell because
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8373 the current matrix is invalid or such, give up. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8374 cursor_glyph = get_phys_cursor_glyph (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8375 if (cursor_glyph == NULL)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8376 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8377
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8378 /* Compute the width of the rectangle to draw. If on a stretch
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8379 glyph, and `x-stretch-block-cursor' is nil, don't draw a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8380 rectangle as wide as the glyph, but use a canonical character
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8381 width instead. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8382 wd = cursor_glyph->pixel_width - 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8383 if (cursor_glyph->type == STRETCH_GLYPH
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8384 && !x_stretch_cursor_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8385 wd = min (CANON_X_UNIT (f), wd);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8386
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8387 rect.right = rect.left + wd;
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
8388
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8389 FrameRect (hdc, &rect, hb);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8390 DeleteObject (hb);
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
8391
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
8392 release_frame_dc (f, hdc);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8393 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8394
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8395
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8396 /* Draw a bar cursor on window W in glyph row ROW.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8397
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8398 Implementation note: One would like to draw a bar cursor with an
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8399 angle equal to the one given by the font property XA_ITALIC_ANGLE.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8400 Unfortunately, I didn't find a font yet that has this property set.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8401 --gerd. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8403 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8404 x_draw_bar_cursor (w, row)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8405 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8406 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8407 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8408 /* If cursor hpos is out of bounds, don't draw garbage. This can
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8409 happen in mini-buffer windows when switching between echo area
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8410 glyphs and mini-buffer. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8411 if (w->phys_cursor.hpos < row->used[TEXT_AREA])
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8412 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8413 struct frame *f = XFRAME (w->frame);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8414 struct glyph *cursor_glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8415 int x;
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
8416 HDC hdc;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8417
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8418 cursor_glyph = get_phys_cursor_glyph (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8419 if (cursor_glyph == NULL)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8420 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8421
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8422 x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8423
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
8424 hdc = get_frame_dc (f);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8425 w32_fill_area (f, hdc, f->output_data.w32->cursor_pixel,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8426 x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8427 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8428 min (cursor_glyph->pixel_width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8429 f->output_data.w32->cursor_width),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8430 row->height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8431 release_frame_dc (f, hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8432 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8433 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8434
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8435
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8436 /* Clear the cursor of window W to background color, and mark the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8437 cursor as not shown. This is used when the text where the cursor
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8438 is is about to be rewritten. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8439
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8440 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8441 x_clear_cursor (w)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8442 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8443 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8444 if (FRAME_VISIBLE_P (XFRAME (w->frame)) && w->phys_cursor_on_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8445 x_update_window_cursor (w, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8446 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8447
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8448
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8449 /* Draw the cursor glyph of window W in glyph row ROW. See the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8450 comment of x_draw_glyphs for the meaning of HL. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8451
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8452 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8453 x_draw_phys_cursor_glyph (w, row, hl)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8454 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8455 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8456 enum draw_glyphs_face hl;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8457 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8458 /* If cursor hpos is out of bounds, don't draw garbage. This can
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8459 happen in mini-buffer windows when switching between echo area
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8460 glyphs and mini-buffer. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8461 if (w->phys_cursor.hpos < row->used[TEXT_AREA])
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8462 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8463 x_draw_glyphs (w, w->phys_cursor.x, row, TEXT_AREA,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8464 w->phys_cursor.hpos, w->phys_cursor.hpos + 1,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8465 hl, 0, 0, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8466
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8467 /* When we erase the cursor, and ROW is overlapped by other
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8468 rows, make sure that these overlapping parts of other rows
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8469 are redrawn. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8470 if (hl == DRAW_NORMAL_TEXT && row->overlapped_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8471 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8472 if (row > w->current_matrix->rows
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8473 && MATRIX_ROW_OVERLAPS_SUCC_P (row - 1))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8474 x_fix_overlapping_area (w, row - 1, TEXT_AREA);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8475
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8476 if (MATRIX_ROW_BOTTOM_Y (row) < window_text_bottom_y (w)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8477 && MATRIX_ROW_OVERLAPS_PRED_P (row + 1))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8478 x_fix_overlapping_area (w, row + 1, TEXT_AREA);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8479 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8480 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8481 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8482
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8483
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8484 /* Erase the image of a cursor of window W from the screen. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8485
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8486 static void
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8487 x_erase_phys_cursor (w)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8488 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8489 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8490 struct frame *f = XFRAME (w->frame);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8491 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8492 int hpos = w->phys_cursor.hpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8493 int vpos = w->phys_cursor.vpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8494 int mouse_face_here_p = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8495 struct glyph_matrix *active_glyphs = w->current_matrix;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8496 struct glyph_row *cursor_row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8497 struct glyph *cursor_glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8498 enum draw_glyphs_face hl;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8499
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8500 /* No cursor displayed or row invalidated => nothing to do on the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8501 screen. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8502 if (w->phys_cursor_type == NO_CURSOR)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8503 goto mark_cursor_off;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8504
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8505 /* VPOS >= active_glyphs->nrows means that window has been resized.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8506 Don't bother to erase the cursor. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8507 if (vpos >= active_glyphs->nrows)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8508 goto mark_cursor_off;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8509
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8510 /* If row containing cursor is marked invalid, there is nothing we
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8511 can do. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8512 cursor_row = MATRIX_ROW (active_glyphs, vpos);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8513 if (!cursor_row->enabled_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8514 goto mark_cursor_off;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8515
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8516 /* This can happen when the new row is shorter than the old one.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8517 In this case, either x_draw_glyphs or clear_end_of_line
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8518 should have cleared the cursor. Note that we wouldn't be
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8519 able to erase the cursor in this case because we don't have a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8520 cursor glyph at hand. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8521 if (w->phys_cursor.hpos >= cursor_row->used[TEXT_AREA])
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8522 goto mark_cursor_off;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8523
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8524 /* If the cursor is in the mouse face area, redisplay that when
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8525 we clear the cursor. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8526 if (w == XWINDOW (dpyinfo->mouse_face_window)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8527 && (vpos > dpyinfo->mouse_face_beg_row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8528 || (vpos == dpyinfo->mouse_face_beg_row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8529 && hpos >= dpyinfo->mouse_face_beg_col))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8530 && (vpos < dpyinfo->mouse_face_end_row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8531 || (vpos == dpyinfo->mouse_face_end_row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8532 && hpos < dpyinfo->mouse_face_end_col))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8533 /* Don't redraw the cursor's spot in mouse face if it is at the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8534 end of a line (on a newline). The cursor appears there, but
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8535 mouse highlighting does not. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8536 && cursor_row->used[TEXT_AREA] > hpos)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8537 mouse_face_here_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8538
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8539 /* Maybe clear the display under the cursor. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8540 if (w->phys_cursor_type == HOLLOW_BOX_CURSOR)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8541 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8542 int x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8543 int header_line_height = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w);
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
8544 HDC hdc;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8545
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8546 cursor_glyph = get_phys_cursor_glyph (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8547 if (cursor_glyph == NULL)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8548 goto mark_cursor_off;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8549
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8550 x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
8551
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
8552 hdc = get_frame_dc (f);
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
8553 w32_clear_area (f, hdc, x,
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8554 WINDOW_TO_FRAME_PIXEL_Y (w, max (header_line_height,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8555 cursor_row->y)),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8556 cursor_glyph->pixel_width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8557 cursor_row->visible_height);
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
8558 release_frame_dc (f, hdc);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8559 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8560
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8561 /* Erase the cursor by redrawing the character underneath it. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8562 if (mouse_face_here_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8563 hl = DRAW_MOUSE_FACE;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8564 else if (cursor_row->inverse_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8565 hl = DRAW_INVERSE_VIDEO;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8566 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8567 hl = DRAW_NORMAL_TEXT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8568 x_draw_phys_cursor_glyph (w, cursor_row, hl);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8569
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8570 mark_cursor_off:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8571 w->phys_cursor_on_p = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8572 w->phys_cursor_type = NO_CURSOR;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8573 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8574
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8575
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8576 /* Display or clear cursor of window W. If ON is zero, clear the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8577 cursor. If it is non-zero, display the cursor. If ON is nonzero,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8578 where to put the cursor is specified by HPOS, VPOS, X and Y. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8579
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8580 void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8581 x_display_and_set_cursor (w, on, hpos, vpos, x, y)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8582 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8583 int on, hpos, vpos, x, y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8584 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8585 struct frame *f = XFRAME (w->frame);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8586 int new_cursor_type;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8587 struct glyph_matrix *current_glyphs;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8588 struct glyph_row *glyph_row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8589 struct glyph *glyph;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8590
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8591 /* This is pointless on invisible frames, and dangerous on garbaged
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8592 windows and frames; in the latter case, the frame or window may
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8593 be in the midst of changing its size, and x and y may be off the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8594 window. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8595 if (! FRAME_VISIBLE_P (f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8596 || FRAME_GARBAGED_P (f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8597 || vpos >= w->current_matrix->nrows
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8598 || hpos >= w->current_matrix->matrix_w)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8599 return;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8600
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8601 /* If cursor is off and we want it off, return quickly. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8602 if (!on && !w->phys_cursor_on_p)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8603 return;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8604
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8605 current_glyphs = w->current_matrix;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8606 glyph_row = MATRIX_ROW (current_glyphs, vpos);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8607 glyph = glyph_row->glyphs[TEXT_AREA] + hpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8608
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8609 /* If cursor row is not enabled, we don't really know where to
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8610 display the cursor. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8611 if (!glyph_row->enabled_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8612 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8613 w->phys_cursor_on_p = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8614 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8615 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8616
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8617 xassert (interrupt_input_blocked);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8618
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8619 /* Set new_cursor_type to the cursor we want to be displayed. In a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8620 mini-buffer window, we want the cursor only to appear if we are
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8621 reading input from this window. For the selected window, we want
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8622 the cursor type given by the frame parameter. If explicitly
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8623 marked off, draw no cursor. In all other cases, we want a hollow
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8624 box cursor. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8625 if (cursor_in_echo_area
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8626 && FRAME_HAS_MINIBUF_P (f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8627 && EQ (FRAME_MINIBUF_WINDOW (f), echo_area_window))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8628 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8629 if (w == XWINDOW (echo_area_window))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8630 new_cursor_type = FRAME_DESIRED_CURSOR (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8631 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8632 new_cursor_type = HOLLOW_BOX_CURSOR;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8633 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8634 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8635 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8636 if (w != XWINDOW (selected_window)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8637 || f != FRAME_W32_DISPLAY_INFO (f)->w32_highlight_frame)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8638 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8639 if (MINI_WINDOW_P (w))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8640 new_cursor_type = NO_CURSOR;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8641 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8642 new_cursor_type = HOLLOW_BOX_CURSOR;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8643 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8644 else if (w->cursor_off_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8645 new_cursor_type = NO_CURSOR;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8646 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8647 new_cursor_type = FRAME_DESIRED_CURSOR (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8648 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8649
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8650 /* If cursor is currently being shown and we don't want it to be or
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8651 it is in the wrong place, or the cursor type is not what we want,
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8652 erase it. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8653 if (w->phys_cursor_on_p
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8654 && (!on
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8655 || w->phys_cursor.x != x
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8656 || w->phys_cursor.y != y
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8657 || new_cursor_type != w->phys_cursor_type))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8658 x_erase_phys_cursor (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8659
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8660 /* If the cursor is now invisible and we want it to be visible,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8661 display it. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8662 if (on && !w->phys_cursor_on_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8663 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8664 w->phys_cursor_ascent = glyph_row->ascent;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8665 w->phys_cursor_height = glyph_row->height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8666
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8667 /* Set phys_cursor_.* before x_draw_.* is called because some
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8668 of them may need the information. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8669 w->phys_cursor.x = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8670 w->phys_cursor.y = glyph_row->y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8671 w->phys_cursor.hpos = hpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8672 w->phys_cursor.vpos = vpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8673 w->phys_cursor_type = new_cursor_type;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8674 w->phys_cursor_on_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8675
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8676 switch (new_cursor_type)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8677 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8678 case HOLLOW_BOX_CURSOR:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8679 x_draw_hollow_cursor (w, glyph_row);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8680 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8681
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8682 case FILLED_BOX_CURSOR:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8683 x_draw_phys_cursor_glyph (w, glyph_row, DRAW_CURSOR);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8684 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8685
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8686 case BAR_CURSOR:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8687 x_draw_bar_cursor (w, glyph_row);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8688 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8689
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8690 case NO_CURSOR:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8691 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8692
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8693 default:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8694 abort ();
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8695 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8696 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8697 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8698
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8699
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8700 /* Display the cursor on window W, or clear it. X and Y are window
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8701 relative pixel coordinates. HPOS and VPOS are glyph matrix
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8702 positions. If W is not the selected window, display a hollow
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8703 cursor. ON non-zero means display the cursor at X, Y which
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8704 correspond to HPOS, VPOS, otherwise it is cleared. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8705
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8706 void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8707 x_display_cursor (w, on, hpos, vpos, x, y)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8708 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8709 int on, hpos, vpos, x, y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8710 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8711 BLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8712 x_display_and_set_cursor (w, on, hpos, vpos, x, y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8713 UNBLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8714 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8715
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8716
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8717 /* Display the cursor on window W, or clear it, according to ON_P.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8718 Don't change the cursor's position. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8719
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8720 void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8721 x_update_cursor (f, on_p)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8722 struct frame *f;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8723 int on_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8724 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8725 x_update_cursor_in_window_tree (XWINDOW (f->root_window), on_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8726 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8727
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8728
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8729 /* Call x_update_window_cursor with parameter ON_P on all leaf windows
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8730 in the window tree rooted at W. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8731
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8732 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8733 x_update_cursor_in_window_tree (w, on_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8734 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8735 int on_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8736 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8737 while (w)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8738 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8739 if (!NILP (w->hchild))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8740 x_update_cursor_in_window_tree (XWINDOW (w->hchild), on_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8741 else if (!NILP (w->vchild))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8742 x_update_cursor_in_window_tree (XWINDOW (w->vchild), on_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8743 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8744 x_update_window_cursor (w, on_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8745
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8746 w = NILP (w->next) ? 0 : XWINDOW (w->next);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8747 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8748 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8749
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8750
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8751 /* Switch the display of W's cursor on or off, according to the value
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8752 of ON. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8753
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8754 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8755 x_update_window_cursor (w, on)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8756 struct window *w;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8757 int on;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8758 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8759 BLOCK_INPUT;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8760 x_display_and_set_cursor (w, on, w->phys_cursor.hpos, w->phys_cursor.vpos,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8761 w->phys_cursor.x, w->phys_cursor.y);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8762 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8763 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8764
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8765
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8766
25236
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8767 /* Icons. */
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8768
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8769 int
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8770 x_bitmap_icon (f, icon)
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8771 struct frame *f;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8772 Lisp_Object icon;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8773 {
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8774 int mask, bitmap_id;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8775 Window icon_window;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8776 HANDLE hicon;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8777
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8778 if (FRAME_W32_WINDOW (f) == 0)
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8779 return 1;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8780
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8781 if (NILP (icon))
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8782 hicon = LoadIcon (hinst, EMACS_CLASS);
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8783 else if (STRINGP (icon))
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8784 hicon = LoadImage (NULL, (LPCTSTR) XSTRING (icon)->data, IMAGE_ICON, 0, 0,
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8785 LR_DEFAULTSIZE | LR_LOADFROMFILE);
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8786 else if (SYMBOLP (icon))
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8787 {
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8788 LPCTSTR name;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8789
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8790 if (EQ (icon, intern ("application")))
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8791 name = (LPCTSTR) IDI_APPLICATION;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8792 else if (EQ (icon, intern ("hand")))
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8793 name = (LPCTSTR) IDI_HAND;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8794 else if (EQ (icon, intern ("question")))
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8795 name = (LPCTSTR) IDI_QUESTION;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8796 else if (EQ (icon, intern ("exclamation")))
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8797 name = (LPCTSTR) IDI_EXCLAMATION;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8798 else if (EQ (icon, intern ("asterisk")))
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8799 name = (LPCTSTR) IDI_ASTERISK;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8800 else if (EQ (icon, intern ("winlogo")))
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8801 name = (LPCTSTR) IDI_WINLOGO;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8802 else
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8803 return 1;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8804
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8805 hicon = LoadIcon (NULL, name);
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8806 }
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8807 else
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8808 return 1;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8809
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8810 if (hicon == NULL)
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8811 return 1;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8812
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8813 PostMessage (FRAME_W32_WINDOW (f), WM_SETICON, (WPARAM) ICON_BIG,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8814 (LPARAM) hicon);
25236
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8815
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8816 return 0;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8817 }
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8818
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
8819
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8820 /* Changing the font of the frame. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8821
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8822 /* Give frame F the font named FONTNAME as its default font, and
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8823 return the full name of that font. FONTNAME may be a wildcard
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8824 pattern; in that case, we choose some font that fits the pattern.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8825 The return value shows which font we chose. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8826
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8827 Lisp_Object
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8828 x_new_font (f, fontname)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8829 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8830 register char *fontname;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8831 {
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8832 struct font_info *fontp
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8833 = fs_load_font (f, FRAME_W32_FONT_TABLE (f), CHARSET_ASCII,
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8834 fontname, -1);
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8835
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8836 if (!fontp)
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8837 return Qnil;
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8838
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8839 FRAME_FONT (f) = (XFontStruct *) (fontp->font);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8840 FRAME_BASELINE_OFFSET (f) = fontp->baseline_offset;
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8841 FRAME_FONTSET (f) = -1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8842
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8843 /* Compute the scroll bar width in character columns. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8844 if (f->scroll_bar_pixel_width > 0)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8845 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
8846 int wid = FONT_WIDTH (f->output_data.w32->font);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8847 f->scroll_bar_cols = (f->scroll_bar_pixel_width + wid-1) / wid;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8848 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8849 else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8850 f->scroll_bar_cols = 2;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8851
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8852 /* Now make the frame display the given font. */
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
8853 if (FRAME_W32_WINDOW (f) != 0)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8854 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8855 frame_update_line_height (f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8856 x_set_window_size (f, 0, f->width, f->height);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8857 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8858 else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8859 /* If we are setting a new frame's font for the first time,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8860 there are no faces yet, so this font's height is the line height. */
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
8861 f->output_data.w32->line_height = FONT_HEIGHT (f->output_data.w32->font);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8862
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8863 return build_string (fontp->full_name);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8864 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8865
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8866 /* Give frame F the fontset named FONTSETNAME as its default font, and
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8867 return the full name of that fontset. FONTSETNAME may be a wildcard
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8868 pattern; in that case, we choose some fontset that fits the pattern.
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8869 The return value shows which fontset we chose. */
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8870
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8871 Lisp_Object
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8872 x_new_fontset (f, fontsetname)
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8873 struct frame *f;
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8874 char *fontsetname;
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8875 {
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8876 int fontset = fs_query_fontset (f, fontsetname);
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8877 struct fontset_info *fontsetp;
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8878 Lisp_Object result;
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8879
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8880 if (fontset < 0)
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8881 return Qnil;
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8882
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8883 if (FRAME_FONTSET (f) == fontset)
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8884 /* This fontset is already set in frame F. There's nothing more
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8885 to do. */
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8886 return build_string (fontsetname);
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8887
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8888 fontsetp = FRAME_FONTSET_DATA (f)->fontset_table[fontset];
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8889
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8890 if (!fontsetp->fontname[CHARSET_ASCII])
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8891 /* This fontset doesn't contain ASCII font. */
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8892 return Qnil;
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8893
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8894 result = x_new_font (f, fontsetp->fontname[CHARSET_ASCII]);
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8895
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8896 if (!STRINGP (result))
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8897 /* Can't load ASCII font. */
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8898 return Qnil;
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8899
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8900 /* Since x_new_font doesn't update any fontset information, do it now. */
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8901 FRAME_FONTSET(f) = fontset;
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8902 FS_LOAD_FONT (f, FRAME_W32_FONT_TABLE (f),
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8903 CHARSET_ASCII, XSTRING (result)->data, fontset);
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8904
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8905 return build_string (fontsetname);
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
8906 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8907
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8908
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8909 #if GLYPH_DEBUG
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8910
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8911 /* Check that FONT is valid on frame F. It is if it can be found in F's
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8912 font table. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8913
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8914 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8915 x_check_font (f, font)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8916 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8917 XFontStruct *font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8918 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8919 int i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8920 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8921
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8922 xassert (font != NULL);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8923
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8924 for (i = 0; i < dpyinfo->n_fonts; i++)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8925 if (dpyinfo->font_table[i].name
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8926 && font == dpyinfo->font_table[i].font)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8927 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8928
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8929 xassert (i < dpyinfo->n_fonts);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8930 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8931
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8932 #endif /* GLYPH_DEBUG != 0 */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8933
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8934 /* Set *W to the minimum width, *H to the minimum font height of FONT.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8935 Note: There are (broken) X fonts out there with invalid XFontStruct
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8936 min_bounds contents. For example, handa@etl.go.jp reports that
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8937 "-adobe-courier-medium-r-normal--*-180-*-*-m-*-iso8859-1" fonts
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8938 have font->min_bounds.width == 0. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8939
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8940 static INLINE void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8941 x_font_min_bounds (font, w, h)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8942 XFontStruct *font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8943 int *w, *h;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8944 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8945 *h = FONT_HEIGHT (font);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8946 *w = FONT_WIDTH (font);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8947 #if 0 /* NTEMACS_TODO: min/max bounds of Windows fonts */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8948 *w = font->min_bounds.width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8949
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8950 /* Try to handle the case where FONT->min_bounds has invalid
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8951 contents. Since the only font known to have invalid min_bounds
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8952 is fixed-width, use max_bounds if min_bounds seems to be invalid. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8953 if (*w <= 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8954 *w = font->max_bounds.width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8955 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8956 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8957
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8958
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8959 /* Compute the smallest character width and smallest font height over
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8960 all fonts available on frame F. Set the members smallest_char_width
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8961 and smallest_font_height in F's x_display_info structure to
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8962 the values computed. Value is non-zero if smallest_font_height or
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8963 smallest_char_width become smaller than they were before. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8964
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8965 int
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8966 x_compute_min_glyph_bounds (f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8967 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8968 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8969 int i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8970 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8971 XFontStruct *font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8972 int old_width = dpyinfo->smallest_char_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8973 int old_height = dpyinfo->smallest_font_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8974
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8975 dpyinfo->smallest_font_height = 100000;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8976 dpyinfo->smallest_char_width = 100000;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8977
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8978 for (i = 0; i < dpyinfo->n_fonts; ++i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8979 if (dpyinfo->font_table[i].name)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8980 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8981 struct font_info *fontp = dpyinfo->font_table + i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8982 int w, h;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8983
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8984 font = (XFontStruct *) fontp->font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8985 xassert (font != (XFontStruct *) ~0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8986 x_font_min_bounds (font, &w, &h);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8987
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8988 dpyinfo->smallest_font_height = min (dpyinfo->smallest_font_height, h);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8989 dpyinfo->smallest_char_width = min (dpyinfo->smallest_char_width, w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8990 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8991
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8992 xassert (dpyinfo->smallest_char_width > 0
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8993 && dpyinfo->smallest_font_height > 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8994
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8995 return (dpyinfo->n_fonts == 1
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8996 || dpyinfo->smallest_char_width < old_width
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8997 || dpyinfo->smallest_font_height < old_height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8998 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8999
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9000
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9001 /* Calculate the absolute position in frame F
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9002 from its current recorded position values and gravity. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9003
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9004 x_calc_absolute_position (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9005 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9006 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9007 Window child;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9008 POINT pt;
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9009 int flags = f->output_data.w32->size_hint_flags;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9010
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9011 pt.x = pt.y = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9012
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9013 /* Find the position of the outside upper-left corner of
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9014 the inner window, with respect to the outer window. */
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9015 if (f->output_data.w32->parent_desc != FRAME_W32_DISPLAY_INFO (f)->root_window)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9016 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9017 BLOCK_INPUT;
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9018 MapWindowPoints (FRAME_W32_WINDOW (f),
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9019 f->output_data.w32->parent_desc,
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9020 &pt, 1);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9021 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9022 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9023
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9024 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9025 RECT rt;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9026 rt.left = rt.right = rt.top = rt.bottom = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9027
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9028 BLOCK_INPUT;
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9029 AdjustWindowRect(&rt, f->output_data.w32->dwStyle,
14351
fb2ce4ebc871 ubackout 1.3 and 1.4
Geoff Voelker <voelker@cs.washington.edu>
parents: 14248
diff changeset
9030 FRAME_EXTERNAL_MENU_BAR (f));
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9031 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9032
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9033 pt.x += (rt.right - rt.left);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9034 pt.y += (rt.bottom - rt.top);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9035 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9036
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9037 /* Treat negative positions as relative to the leftmost bottommost
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9038 position that fits on the screen. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9039 if (flags & XNegative)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9040 f->output_data.w32->left_pos = (FRAME_W32_DISPLAY_INFO (f)->width
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9041 - 2 * f->output_data.w32->border_width - pt.x
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9042 - PIXEL_WIDTH (f)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9043 + f->output_data.w32->left_pos);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9044 /* NTEMACS_TODO: Subtract menubar height? */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9045 if (flags & YNegative)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9046 f->output_data.w32->top_pos = (FRAME_W32_DISPLAY_INFO (f)->height
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9047 - 2 * f->output_data.w32->border_width - pt.y
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9048 - PIXEL_HEIGHT (f)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9049 + f->output_data.w32->top_pos);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9050 /* The left_pos and top_pos
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9051 are now relative to the top and left screen edges,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9052 so the flags should correspond. */
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9053 f->output_data.w32->size_hint_flags &= ~ (XNegative | YNegative);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9054 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9055
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9056 /* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9057 to really change the position, and 0 when calling from
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9058 x_make_frame_visible (in that case, XOFF and YOFF are the current
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9059 position values). It is -1 when calling from x_set_frame_parameters,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9060 which means, do adjust for borders but don't change the gravity. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9061
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9062 x_set_offset (f, xoff, yoff, change_gravity)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9063 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9064 register int xoff, yoff;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9065 int change_gravity;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9066 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9067 int modified_top, modified_left;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9068
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9069 if (change_gravity > 0)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9070 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9071 f->output_data.w32->top_pos = yoff;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9072 f->output_data.w32->left_pos = xoff;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9073 f->output_data.w32->size_hint_flags &= ~ (XNegative | YNegative);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9074 if (xoff < 0)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9075 f->output_data.w32->size_hint_flags |= XNegative;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9076 if (yoff < 0)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9077 f->output_data.w32->size_hint_flags |= YNegative;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9078 f->output_data.w32->win_gravity = NorthWestGravity;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9079 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9080 x_calc_absolute_position (f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9081
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9082 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9083 x_wm_set_size_hint (f, (long) 0, 0);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9084
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9085 /* It is a mystery why we need to add the border_width here
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9086 when the frame is already visible, but experiment says we do. */
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9087 modified_left = f->output_data.w32->left_pos;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9088 modified_top = f->output_data.w32->top_pos;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9089 #ifndef HAVE_NTGUI
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9090 /* Do not add in border widths under W32. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9091 if (change_gravity != 0)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9092 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9093 modified_left += f->output_data.w32->border_width;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9094 modified_top += f->output_data.w32->border_width;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9095 }
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9096 #endif
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9097
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9098 my_set_window_pos (FRAME_W32_WINDOW (f),
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9099 NULL,
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9100 modified_left, modified_top,
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9101 0, 0,
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9102 SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9103 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9104 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9105
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9106 /* Call this to change the size of frame F's x-window.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9107 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9108 for this size change and subsequent size changes.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9109 Otherwise we leave the window gravity unchanged. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9110 void
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9111 x_set_window_size (f, change_gravity, cols, rows)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9112 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9113 int change_gravity;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9114 int cols, rows;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9115 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9116 int pixelwidth, pixelheight;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9117
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9118 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9119
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9120 check_frame_size (f, &rows, &cols);
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9121 f->output_data.w32->vertical_scroll_bar_extra
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9122 = (!FRAME_HAS_VERTICAL_SCROLL_BARS (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9123 ? 0
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9124 : (FRAME_SCROLL_BAR_COLS (f) * FONT_WIDTH (f->output_data.w32->font)));
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9125 f->output_data.w32->flags_areas_extra
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9126 = FRAME_FLAGS_AREA_WIDTH (f);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9127 pixelwidth = CHAR_TO_PIXEL_WIDTH (f, cols);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9128 pixelheight = CHAR_TO_PIXEL_HEIGHT (f, rows);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9129
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9130 f->output_data.w32->win_gravity = NorthWestGravity;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9131 x_wm_set_size_hint (f, (long) 0, 0);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9132
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9133 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9134 RECT rect;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9135
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9136 rect.left = rect.top = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9137 rect.right = pixelwidth;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9138 rect.bottom = pixelheight;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9139
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9140 AdjustWindowRect(&rect, f->output_data.w32->dwStyle,
14351
fb2ce4ebc871 ubackout 1.3 and 1.4
Geoff Voelker <voelker@cs.washington.edu>
parents: 14248
diff changeset
9141 FRAME_EXTERNAL_MENU_BAR (f));
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9142
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9143 my_set_window_pos (FRAME_W32_WINDOW (f),
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9144 NULL,
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9145 0, 0,
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9146 rect.right - rect.left,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9147 rect.bottom - rect.top,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9148 SWP_NOZORDER | SWP_NOMOVE | SWP_NOACTIVATE);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9149 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9150
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9151 /* Now, strictly speaking, we can't be sure that this is accurate,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9152 but the window manager will get around to dealing with the size
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9153 change request eventually, and we'll hear how it went when the
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9154 ConfigureNotify event gets here.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9155
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9156 We could just not bother storing any of this information here,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9157 and let the ConfigureNotify event set everything up, but that
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9158 might be kind of confusing to the lisp code, since size changes
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9159 wouldn't be reported in the frame parameters until some random
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9160 point in the future when the ConfigureNotify event arrives.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9161
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9162 We pass 1 for DELAY since we can't run Lisp code inside of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9163 a BLOCK_INPUT. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9164 change_frame_size (f, rows, cols, 0, 1, 0);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9165 PIXEL_WIDTH (f) = pixelwidth;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9166 PIXEL_HEIGHT (f) = pixelheight;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9167
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9168 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9169 receive in the ConfigureNotify event; if we get what we asked
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9170 for, then the event won't cause the screen to become garbaged, so
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9171 we have to make sure to do it here. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9172 SET_FRAME_GARBAGED (f);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9173
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9174 /* If cursor was outside the new size, mark it as off. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9175 mark_window_cursors_off (XWINDOW (f->root_window));
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9176
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9177 /* Clear out any recollection of where the mouse highlighting was,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9178 since it might be in a place that's outside the new frame size.
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9179 Actually checking whether it is outside is a pain in the neck,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9180 so don't try--just let the highlighting be done afresh with new size. */
24827
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
9181 cancel_mouse_face (f);
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
9182
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9183 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9184 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9185
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9186 /* Mouse warping. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9187
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9188 void
15616
a73836346910 (x_set_mouse_pixel_position): Adjust coords by frame position.
Miles Bader <miles@gnu.org>
parents: 15435
diff changeset
9189 x_set_mouse_pixel_position (f, pix_x, pix_y)
a73836346910 (x_set_mouse_pixel_position): Adjust coords by frame position.
Miles Bader <miles@gnu.org>
parents: 15435
diff changeset
9190 struct frame *f;
a73836346910 (x_set_mouse_pixel_position): Adjust coords by frame position.
Miles Bader <miles@gnu.org>
parents: 15435
diff changeset
9191 int pix_x, pix_y;
a73836346910 (x_set_mouse_pixel_position): Adjust coords by frame position.
Miles Bader <miles@gnu.org>
parents: 15435
diff changeset
9192 {
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9193 RECT rect;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9194 POINT pt;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9195
15616
a73836346910 (x_set_mouse_pixel_position): Adjust coords by frame position.
Miles Bader <miles@gnu.org>
parents: 15435
diff changeset
9196 BLOCK_INPUT;
a73836346910 (x_set_mouse_pixel_position): Adjust coords by frame position.
Miles Bader <miles@gnu.org>
parents: 15435
diff changeset
9197
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9198 GetClientRect (FRAME_W32_WINDOW (f), &rect);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9199 pt.x = rect.left + pix_x;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9200 pt.y = rect.top + pix_y;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9201 ClientToScreen (FRAME_W32_WINDOW (f), &pt);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9202
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9203 SetCursorPos (pt.x, pt.y);
15616
a73836346910 (x_set_mouse_pixel_position): Adjust coords by frame position.
Miles Bader <miles@gnu.org>
parents: 15435
diff changeset
9204
a73836346910 (x_set_mouse_pixel_position): Adjust coords by frame position.
Miles Bader <miles@gnu.org>
parents: 15435
diff changeset
9205 UNBLOCK_INPUT;
a73836346910 (x_set_mouse_pixel_position): Adjust coords by frame position.
Miles Bader <miles@gnu.org>
parents: 15435
diff changeset
9206 }
a73836346910 (x_set_mouse_pixel_position): Adjust coords by frame position.
Miles Bader <miles@gnu.org>
parents: 15435
diff changeset
9207
a73836346910 (x_set_mouse_pixel_position): Adjust coords by frame position.
Miles Bader <miles@gnu.org>
parents: 15435
diff changeset
9208 void
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9209 x_set_mouse_position (f, x, y)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9210 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9211 int x, y;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9212 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9213 int pix_x, pix_y;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9214
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9215 pix_x = CHAR_TO_PIXEL_COL (f, x) + FONT_WIDTH (f->output_data.w32->font) / 2;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9216 pix_y = CHAR_TO_PIXEL_ROW (f, y) + f->output_data.w32->line_height / 2;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9217
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9218 if (pix_x < 0) pix_x = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9219 if (pix_x > PIXEL_WIDTH (f)) pix_x = PIXEL_WIDTH (f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9220
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9221 if (pix_y < 0) pix_y = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9222 if (pix_y > PIXEL_HEIGHT (f)) pix_y = PIXEL_HEIGHT (f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9223
15616
a73836346910 (x_set_mouse_pixel_position): Adjust coords by frame position.
Miles Bader <miles@gnu.org>
parents: 15435
diff changeset
9224 x_set_mouse_pixel_position (f, pix_x, pix_y);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9225 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9226
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9227 /* focus shifting, raising and lowering. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9228
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9229 x_focus_on_frame (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9230 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9231 {
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9232 struct w32_display_info *dpyinfo = &one_w32_display_info;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9233
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9234 /* Give input focus to frame. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9235 BLOCK_INPUT;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9236 #if 0
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9237 /* Try not to change its Z-order if possible. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9238 if (x_window_to_frame (dpyinfo, GetForegroundWindow ()))
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9239 my_set_focus (f, FRAME_W32_WINDOW (f));
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9240 else
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9241 #endif
21614
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
9242 my_set_foreground_window (FRAME_W32_WINDOW (f));
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9243 UNBLOCK_INPUT;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9244 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9245
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9246 x_unfocus_frame (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9247 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9248 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9249 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9250
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9251 /* Raise frame F. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9252 void
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9253 x_raise_frame (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9254 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9255 {
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9256 BLOCK_INPUT;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9257
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9258 /* Strictly speaking, raise-frame should only change the frame's Z
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9259 order, leaving input focus unchanged. This is reasonable behaviour
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9260 on X where the usual policy is point-to-focus. However, this
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9261 behaviour would be very odd on Windows where the usual policy is
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9262 click-to-focus.
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9263
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9264 On X, if the mouse happens to be over the raised frame, it gets
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9265 input focus anyway (so the window with focus will never be
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9266 completely obscured) - if not, then just moving the mouse over it
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9267 is sufficient to give it focus. On Windows, the user must actually
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9268 click on the frame (preferrably the title bar so as not to move
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9269 point), which is more awkward. Also, no other Windows program
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9270 raises a window to the top but leaves another window (possibly now
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9271 completely obscured) with input focus.
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9272
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9273 Because there is a system setting on Windows that allows the user
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9274 to choose the point to focus policy, we make the strict semantics
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9275 optional, but by default we grab focus when raising. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9276
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9277 if (NILP (Vw32_grab_focus_on_raise))
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9278 {
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9279 /* The obvious call to my_set_window_pos doesn't work if Emacs is
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9280 not already the foreground application: the frame is raised
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9281 above all other frames belonging to us, but not above the
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9282 current top window. To achieve that, we have to resort to this
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9283 more cumbersome method. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9284
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9285 HDWP handle = BeginDeferWindowPos (2);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9286 if (handle)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9287 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9288 DeferWindowPos (handle,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9289 FRAME_W32_WINDOW (f),
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9290 HWND_TOP,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9291 0, 0, 0, 0,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9292 SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9293
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9294 DeferWindowPos (handle,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9295 GetForegroundWindow (),
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9296 FRAME_W32_WINDOW (f),
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9297 0, 0, 0, 0,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9298 SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9299
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9300 EndDeferWindowPos (handle);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9301 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9302 }
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9303 else
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9304 {
21614
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
9305 my_set_foreground_window (FRAME_W32_WINDOW (f));
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9306 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9307
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9308 UNBLOCK_INPUT;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9309 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9310
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9311 /* Lower frame F. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9312 void
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9313 x_lower_frame (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9314 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9315 {
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9316 BLOCK_INPUT;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9317 my_set_window_pos (FRAME_W32_WINDOW (f),
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9318 HWND_BOTTOM,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9319 0, 0, 0, 0,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9320 SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9321 UNBLOCK_INPUT;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9322 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9323
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9324 static void
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9325 w32_frame_raise_lower (f, raise)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9326 FRAME_PTR f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9327 int raise;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9328 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9329 if (raise)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9330 x_raise_frame (f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9331 else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9332 x_lower_frame (f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9333 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9334
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9335 /* Change of visibility. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9336
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9337 /* This tries to wait until the frame is really visible.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9338 However, if the window manager asks the user where to position
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9339 the frame, this will return before the user finishes doing that.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9340 The frame will not actually be visible at that time,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9341 but it will become visible later when the window manager
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9342 finishes with it. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9343
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9344 x_make_frame_visible (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9345 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9346 {
25236
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9347 Lisp_Object type;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9348
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9349 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9350
25236
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9351 type = x_icon_type (f);
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9352 if (!NILP (type))
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9353 x_bitmap_icon (f, type);
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9354
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9355 if (! FRAME_VISIBLE_P (f))
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9356 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9357 /* We test FRAME_GARBAGED_P here to make sure we don't
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9358 call x_set_offset a second time
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9359 if we get to x_make_frame_visible a second time
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9360 before the window gets really visible. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9361 if (! FRAME_ICONIFIED_P (f)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9362 && ! f->output_data.w32->asked_for_visible)
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9363 x_set_offset (f, f->output_data.w32->left_pos, f->output_data.w32->top_pos, 0);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9364
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9365 f->output_data.w32->asked_for_visible = 1;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9366
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9367 // my_show_window (f, FRAME_W32_WINDOW (f), f->async_iconified ? SW_RESTORE : SW_SHOW);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9368 my_show_window (f, FRAME_W32_WINDOW (f), SW_SHOWNORMAL);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9369 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9370
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9371 /* Synchronize to ensure Emacs knows the frame is visible
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9372 before we do anything else. We do this loop with input not blocked
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9373 so that incoming events are handled. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9374 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9375 Lisp_Object frame;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9376 int count;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9377
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9378 /* This must come after we set COUNT. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9379 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9380
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9381 XSETFRAME (frame, f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9382
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9383 /* Wait until the frame is visible. Process X events until a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9384 MapNotify event has been seen, or until we think we won't get a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9385 MapNotify at all.. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9386 for (count = input_signal_count + 10;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9387 input_signal_count < count && !FRAME_VISIBLE_P (f);)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9388 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9389 /* Force processing of queued events. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9390 /* NTEMACS_TODO: x_sync equivalent? */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9391
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9392 /* Machines that do polling rather than SIGIO have been observed
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9393 to go into a busy-wait here. So we'll fake an alarm signal
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9394 to let the handler know that there's something to be read.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9395 We used to raise a real alarm, but it seems that the handler
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9396 isn't always enabled here. This is probably a bug. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9397 if (input_polling_used ())
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9398 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9399 /* It could be confusing if a real alarm arrives while processing
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9400 the fake one. Turn it off and let the handler reset it. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9401 alarm (0);
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
9402 input_poll_signal (0);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9403 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9404 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9405 FRAME_SAMPLE_VISIBILITY (f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9406 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9407 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9408
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9409 /* Change from mapped state to withdrawn state. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9410
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9411 /* Make the frame visible (mapped and not iconified). */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9412
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9413 x_make_frame_invisible (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9414 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9415 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9416 /* Don't keep the highlight on an invisible frame. */
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9417 if (FRAME_W32_DISPLAY_INFO (f)->w32_highlight_frame == f)
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9418 FRAME_W32_DISPLAY_INFO (f)->w32_highlight_frame = 0;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9419
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9420 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9421
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9422 my_show_window (f, FRAME_W32_WINDOW (f), SW_HIDE);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9423
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9424 /* We can't distinguish this from iconification
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9425 just by the event that we get from the server.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9426 So we can't win using the usual strategy of letting
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9427 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9428 and synchronize with the server to make sure we agree. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9429 f->visible = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9430 FRAME_ICONIFIED_P (f) = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9431 f->async_visible = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9432 f->async_iconified = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9433
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9434 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9435 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9436
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9437 /* Change window state from mapped to iconified. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9438
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9439 void
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9440 x_iconify_frame (f)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9441 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9442 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9443 int result;
25236
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9444 Lisp_Object type;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9445
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9446 /* Don't keep the highlight on an invisible frame. */
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9447 if (FRAME_W32_DISPLAY_INFO (f)->w32_highlight_frame == f)
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9448 FRAME_W32_DISPLAY_INFO (f)->w32_highlight_frame = 0;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9449
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9450 if (f->async_iconified)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9451 return;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9452
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9453 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9454
25236
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9455 type = x_icon_type (f);
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9456 if (!NILP (type))
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9457 x_bitmap_icon (f, type);
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9458
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9459 /* Simulate the user minimizing the frame. */
23951
ef1cba882819 (x_iconify_frame): Wait for frame to be iconified; do
Andrew Innes <andrewi@gnu.org>
parents: 23806
diff changeset
9460 SendMessage (FRAME_W32_WINDOW (f), WM_SYSCOMMAND, SC_MINIMIZE, 0);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9461
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9462 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9463 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9464
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9465 /* Destroy the window of frame F. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9466
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9467 x_destroy_window (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9468 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9469 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9470 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9471
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9472 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9473
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9474 my_destroy_window (f, FRAME_W32_WINDOW (f));
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9475 free_frame_menubar (f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9476 free_frame_faces (f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9477
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9478 xfree (f->output_data.w32);
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9479 f->output_data.w32 = 0;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9480 if (f == dpyinfo->w32_focus_frame)
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9481 dpyinfo->w32_focus_frame = 0;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9482 if (f == dpyinfo->w32_focus_event_frame)
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9483 dpyinfo->w32_focus_event_frame = 0;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9484 if (f == dpyinfo->w32_highlight_frame)
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9485 dpyinfo->w32_highlight_frame = 0;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9486
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9487 dpyinfo->reference_count--;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9488
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9489 if (f == dpyinfo->mouse_face_mouse_frame)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9490 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9491 dpyinfo->mouse_face_beg_row
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9492 = dpyinfo->mouse_face_beg_col = -1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9493 dpyinfo->mouse_face_end_row
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9494 = dpyinfo->mouse_face_end_col = -1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9495 dpyinfo->mouse_face_window = Qnil;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9496 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9497
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9498 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9499 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9500
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9501 /* Setting window manager hints. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9502
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9503 /* Set the normal size hints for the window manager, for frame F.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9504 FLAGS is the flags word to use--or 0 meaning preserve the flags
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9505 that the window now has.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9506 If USER_POSITION is nonzero, we set the USPosition
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9507 flag (this is useful when FLAGS is 0). */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9508 void
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9509 x_wm_set_size_hint (f, flags, user_position)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9510 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9511 long flags;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9512 int user_position;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9513 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9514 Window window = FRAME_W32_WINDOW (f);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9515
14351
fb2ce4ebc871 ubackout 1.3 and 1.4
Geoff Voelker <voelker@cs.washington.edu>
parents: 14248
diff changeset
9516 enter_crit ();
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9517
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9518 SetWindowLong (window, WND_FONTWIDTH_INDEX, FONT_WIDTH (f->output_data.w32->font));
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9519 SetWindowLong (window, WND_LINEHEIGHT_INDEX, f->output_data.w32->line_height);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9520 SetWindowLong (window, WND_BORDER_INDEX, f->output_data.w32->internal_border_width);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9521 SetWindowLong (window, WND_SCROLLBAR_INDEX, f->output_data.w32->vertical_scroll_bar_extra);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9522
14351
fb2ce4ebc871 ubackout 1.3 and 1.4
Geoff Voelker <voelker@cs.washington.edu>
parents: 14248
diff changeset
9523 leave_crit ();
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9524 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9525
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9526 /* Window manager things */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9527 x_wm_set_icon_position (f, icon_x, icon_y)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9528 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9529 int icon_x, icon_y;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9530 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9531 #if 0
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9532 Window window = FRAME_W32_WINDOW (f);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9533
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9534 f->display.x->wm_hints.flags |= IconPositionHint;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9535 f->display.x->wm_hints.icon_x = icon_x;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9536 f->display.x->wm_hints.icon_y = icon_y;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9537
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9538 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->display.x->wm_hints);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9539 #endif
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9540 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9541
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9542
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9543 /***********************************************************************
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9544 Initialization
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9545 ***********************************************************************/
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9546
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9547 static int w32_initialized = 0;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9548
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9549 struct w32_display_info *
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9550 w32_term_init (display_name, xrm_option, resource_name)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9551 Lisp_Object display_name;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9552 char *xrm_option;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9553 char *resource_name;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9554 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9555 struct w32_display_info *dpyinfo;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9556 HDC hdc;
14351
fb2ce4ebc871 ubackout 1.3 and 1.4
Geoff Voelker <voelker@cs.washington.edu>
parents: 14248
diff changeset
9557
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9558 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9559
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9560 if (!w32_initialized)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9561 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9562 w32_initialize ();
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9563 w32_initialized = 1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9564 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9565
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9566 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9567 int argc = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9568 char *argv[3];
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9569
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9570 argv[0] = "";
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9571 argc = 1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9572 if (xrm_option)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9573 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9574 argv[argc++] = "-xrm";
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9575 argv[argc++] = xrm_option;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9576 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9577 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9578
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9579 dpyinfo = &one_w32_display_info;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9580
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9581 /* Put this display on the chain. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9582 dpyinfo->next = NULL;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9583
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9584 /* Put it on w32_display_name_list as well, to keep them parallel. */
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9585 w32_display_name_list = Fcons (Fcons (display_name, Qnil),
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9586 w32_display_name_list);
25646
9154af188477 Use XCAR and XCDR instead of explicit member references.
Ken Raeburn <raeburn@raeburn.org>
parents: 25236
diff changeset
9587 dpyinfo->name_list_element = XCAR (w32_display_name_list);
14351
fb2ce4ebc871 ubackout 1.3 and 1.4
Geoff Voelker <voelker@cs.washington.edu>
parents: 14248
diff changeset
9588
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9589 dpyinfo->w32_id_name
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9590 = (char *) xmalloc (XSTRING (Vinvocation_name)->size
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9591 + XSTRING (Vsystem_name)->size
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9592 + 2);
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9593 sprintf (dpyinfo->w32_id_name, "%s@%s",
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9594 XSTRING (Vinvocation_name)->data, XSTRING (Vsystem_name)->data);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9595
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9596 #if 0
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9597 xrdb = x_load_resources (dpyinfo->display, xrm_option,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9598 resource_name, EMACS_CLASS);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9599
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9600 /* Put the rdb where we can find it in a way that works on
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9601 all versions. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9602 dpyinfo->xrdb = xrdb;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9603 #endif
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9604 hdc = GetDC (GetDesktopWindow ());
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9605
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9606 dpyinfo->height = GetDeviceCaps (hdc, VERTRES);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9607 dpyinfo->width = GetDeviceCaps (hdc, HORZRES);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9608 dpyinfo->root_window = GetDesktopWindow ();
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9609 dpyinfo->n_planes = GetDeviceCaps (hdc, PLANES);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9610 dpyinfo->n_cbits = GetDeviceCaps (hdc, BITSPIXEL);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9611 dpyinfo->height_in = GetDeviceCaps (hdc, LOGPIXELSX);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9612 dpyinfo->width_in = GetDeviceCaps (hdc, LOGPIXELSY);
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9613 dpyinfo->has_palette = GetDeviceCaps (hdc, RASTERCAPS) & RC_PALETTE;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9614 dpyinfo->grabbed = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9615 dpyinfo->reference_count = 0;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9616 dpyinfo->font_table = NULL;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9617 dpyinfo->n_fonts = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9618 dpyinfo->font_table_size = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9619 dpyinfo->bitmaps = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9620 dpyinfo->bitmaps_size = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9621 dpyinfo->bitmaps_last = 0;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9622 dpyinfo->scratch_cursor_gc = NULL;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9623 dpyinfo->mouse_face_mouse_frame = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9624 dpyinfo->mouse_face_deferred_gc = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9625 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9626 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9627 dpyinfo->mouse_face_face_id = DEFAULT_FACE_ID;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9628 dpyinfo->mouse_face_window = Qnil;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9629 dpyinfo->mouse_face_mouse_x = dpyinfo->mouse_face_mouse_y = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9630 dpyinfo->mouse_face_defer = 0;
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9631 dpyinfo->w32_focus_frame = 0;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9632 dpyinfo->w32_focus_event_frame = 0;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9633 dpyinfo->w32_highlight_frame = 0;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9634 dpyinfo->image_cache = make_image_cache ();
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9635 dpyinfo->resx = dpyinfo->height / dpyinfo->height_in;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9636 dpyinfo->resy = dpyinfo->width / dpyinfo->width_in;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9637 ReleaseDC (GetDesktopWindow (), hdc);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9638 /* NTEMACS_TODO: dpyinfo->gray */
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9639 /* Determine if there is a middle mouse button, to allow parse_button
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9640 to decide whether right mouse events should be mouse-2 or
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9641 mouse-3. */
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9642 XSETINT (Vw32_num_mouse_buttons, GetSystemMetrics (SM_CMOUSEBUTTONS));
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9643
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9644 /* initialise palette with white and black */
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9645 {
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9646 COLORREF color;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9647 defined_color (0, "white", &color, 1);
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9648 defined_color (0, "black", &color, 1);
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9649 }
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9650
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9651 #ifndef F_SETOWN_BUG
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9652 #ifdef F_SETOWN
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9653 #ifdef F_SETOWN_SOCK_NEG
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9654 /* stdin is a socket here */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9655 fcntl (connection, F_SETOWN, -getpid ());
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9656 #else /* ! defined (F_SETOWN_SOCK_NEG) */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9657 fcntl (connection, F_SETOWN, getpid ());
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9658 #endif /* ! defined (F_SETOWN_SOCK_NEG) */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9659 #endif /* ! defined (F_SETOWN) */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9660 #endif /* F_SETOWN_BUG */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9661
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9662 #ifdef SIGIO
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9663 if (interrupt_input)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9664 init_sigio (connection);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9665 #endif /* ! defined (SIGIO) */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9666
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9667 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9668
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9669 return dpyinfo;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9670 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9671
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9672 /* Get rid of display DPYINFO, assuming all frames are already gone. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9673
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9674 void
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9675 x_delete_display (dpyinfo)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9676 struct w32_display_info *dpyinfo;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9677 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9678 /* Discard this display from w32_display_name_list and w32_display_list.
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9679 We can't use Fdelq because that can quit. */
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9680 if (! NILP (w32_display_name_list)
25646
9154af188477 Use XCAR and XCDR instead of explicit member references.
Ken Raeburn <raeburn@raeburn.org>
parents: 25236
diff changeset
9681 && EQ (XCAR (w32_display_name_list), dpyinfo->name_list_element))
9154af188477 Use XCAR and XCDR instead of explicit member references.
Ken Raeburn <raeburn@raeburn.org>
parents: 25236
diff changeset
9682 w32_display_name_list = XCDR (w32_display_name_list);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9683 else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9684 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9685 Lisp_Object tail;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9686
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9687 tail = w32_display_name_list;
25646
9154af188477 Use XCAR and XCDR instead of explicit member references.
Ken Raeburn <raeburn@raeburn.org>
parents: 25236
diff changeset
9688 while (CONSP (tail) && CONSP (XCDR (tail)))
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9689 {
25646
9154af188477 Use XCAR and XCDR instead of explicit member references.
Ken Raeburn <raeburn@raeburn.org>
parents: 25236
diff changeset
9690 if (EQ (XCAR (XCDR (tail)),
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9691 dpyinfo->name_list_element))
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9692 {
25646
9154af188477 Use XCAR and XCDR instead of explicit member references.
Ken Raeburn <raeburn@raeburn.org>
parents: 25236
diff changeset
9693 XCDR (tail) = XCDR (XCDR (tail));
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9694 break;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9695 }
25646
9154af188477 Use XCAR and XCDR instead of explicit member references.
Ken Raeburn <raeburn@raeburn.org>
parents: 25236
diff changeset
9696 tail = XCDR (tail);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9697 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9698 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9699
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9700 /* free palette table */
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9701 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9702 struct w32_palette_entry * plist;
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9703
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9704 plist = dpyinfo->color_list;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9705 while (plist)
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9706 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9707 struct w32_palette_entry * pentry = plist;
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9708 plist = plist->next;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9709 xfree(pentry);
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9710 }
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9711 dpyinfo->color_list = NULL;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9712 if (dpyinfo->palette)
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9713 DeleteObject(dpyinfo->palette);
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9714 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9715 xfree (dpyinfo->font_table);
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9716 xfree (dpyinfo->w32_id_name);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9717 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9718
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9719 /* Set up use of W32. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9720
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9721 DWORD w32_msg_worker ();
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9722
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9723 void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9724 x_flush (struct frame * f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9725 { /* Nothing to do */ }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9726
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9727 static struct redisplay_interface w32_redisplay_interface =
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9728 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9729 x_produce_glyphs,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9730 x_write_glyphs,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9731 x_insert_glyphs,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9732 x_clear_end_of_line,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9733 x_scroll_run,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9734 x_after_update_window_line,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9735 x_update_window_begin,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9736 x_update_window_end,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9737 w32_cursor_to,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9738 x_flush,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9739 x_get_glyph_overhangs,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9740 x_fix_overlapping_area
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9741 };
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9742
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9743 void
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9744 w32_initialize ()
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9745 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9746 rif = &w32_redisplay_interface;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9747
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
9748 /* MSVC does not type K&R functions with no arguments correctly, and
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
9749 so we must explicitly cast them. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9750 clear_frame_hook = (void (*)(void)) x_clear_frame;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9751 ins_del_lines_hook = x_ins_del_lines;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9752 change_line_highlight_hook = x_change_line_highlight;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9753 delete_glyphs_hook = x_delete_glyphs;
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
9754 ring_bell_hook = (void (*)(void)) w32_ring_bell;
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
9755 reset_terminal_modes_hook = (void (*)(void)) w32_reset_terminal_modes;
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
9756 set_terminal_modes_hook = (void (*)(void)) w32_set_terminal_modes;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9757 update_begin_hook = x_update_begin;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9758 update_end_hook = x_update_end;
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9759 set_terminal_window_hook = w32_set_terminal_window;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9760 read_socket_hook = w32_read_socket;
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9761 frame_up_to_date_hook = w32_frame_up_to_date;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9762 reassert_line_highlight_hook = w32_reassert_line_highlight;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9763 mouse_position_hook = w32_mouse_position;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9764 frame_rehighlight_hook = w32_frame_rehighlight;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9765 frame_raise_lower_hook = w32_frame_raise_lower;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9766 set_vertical_scroll_bar_hook = w32_set_vertical_scroll_bar;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9767 condemn_scroll_bars_hook = w32_condemn_scroll_bars;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9768 redeem_scroll_bar_hook = w32_redeem_scroll_bar;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9769 judge_scroll_bars_hook = w32_judge_scroll_bars;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9770 estimate_mode_line_height_hook = x_estimate_mode_line_height;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9771
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9772 scroll_region_ok = 1; /* we'll scroll partial frames */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9773 char_ins_del_ok = 0; /* just as fast to write the line */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9774 line_ins_del_ok = 1; /* we'll just blt 'em */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9775 fast_clear_end_of_line = 1; /* X does this well */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9776 memory_below_frame = 0; /* we don't remember what scrolls
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9777 off the bottom */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9778 baud_rate = 19200;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9779
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9780 last_tool_bar_item = -1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9781 any_help_event_p = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9782
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9783 /* Initialize input mode: interrupt_input off, no flow control, allow
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9784 8 bit character input, standard quit char. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9785 Fset_input_mode (Qnil, Qnil, make_number (2), Qnil);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9786
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9787 /* Create the window thread - it will terminate itself or when the app terminates */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9788
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9789 init_crit ();
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9790
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9791 dwMainThreadId = GetCurrentThreadId ();
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9792 DuplicateHandle (GetCurrentProcess (), GetCurrentThread (),
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9793 GetCurrentProcess (), &hMainThread, 0, TRUE, DUPLICATE_SAME_ACCESS);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9794
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9795 /* Wait for thread to start */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9796
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9797 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9798 MSG msg;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9799
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9800 PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9801
16884
36babc489b0c Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents: 16588
diff changeset
9802 hWindowsThread = CreateThread (NULL, 0,
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9803 (LPTHREAD_START_ROUTINE) w32_msg_worker,
16884
36babc489b0c Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents: 16588
diff changeset
9804 0, 0, &dwWindowsThreadId);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9805
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9806 GetMessage (&msg, NULL, WM_EMACS_DONE, WM_EMACS_DONE);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9807 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9808
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9809 /* It is desirable that mainThread should have the same notion of
16884
36babc489b0c Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents: 16588
diff changeset
9810 focus window and active window as windowsThread. Unfortunately, the
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9811 following call to AttachThreadInput, which should do precisely what
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9812 we need, causes major problems when Emacs is linked as a console
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9813 program. Unfortunately, we have good reasons for doing that, so
16884
36babc489b0c Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents: 16588
diff changeset
9814 instead we need to send messages to windowsThread to make some API
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9815 calls for us (ones that affect, or depend on, the active/focus
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9816 window state. */
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9817 #ifdef ATTACH_THREADS
16884
36babc489b0c Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents: 16588
diff changeset
9818 AttachThreadInput (dwMainThreadId, dwWindowsThreadId, TRUE);
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9819 #endif
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9820
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9821 /* Dynamically link to optional system components. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9822 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9823 HANDLE user_lib = LoadLibrary ("user32.dll");
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9824
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9825 #define LOAD_PROC(fn) pfn##fn = (void *) GetProcAddress (user_lib, #fn)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9826
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9827 /* New proportional scroll bar functions. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9828 LOAD_PROC( SetScrollInfo );
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9829 LOAD_PROC( GetScrollInfo );
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9830
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9831 #undef LOAD_PROC
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9832
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9833 FreeLibrary (user_lib);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9834
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9835 /* If using proportional scroll bars, ensure handle is at least 5 pixels;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9836 otherwise use the fixed height. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9837 vertical_scroll_bar_min_handle = (pfnSetScrollInfo != NULL) ? 5 :
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9838 GetSystemMetrics (SM_CYVTHUMB);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9839
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9840 /* For either kind of scroll bar, take account of the arrows; these
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9841 effectively form the border of the main scroll bar range. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9842 vertical_scroll_bar_top_border = vertical_scroll_bar_bottom_border
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9843 = GetSystemMetrics (SM_CYVSCROLL);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9844 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9845 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9846
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9847 void
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9848 syms_of_w32term ()
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9849 {
24131
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9850 Lisp_Object codepage;
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9851
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9852 staticpro (&w32_display_name_list);
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9853 w32_display_name_list = Qnil;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9854
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9855 staticpro (&last_mouse_scroll_bar);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9856 last_mouse_scroll_bar = Qnil;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9857
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9858 staticpro (&Qvendor_specific_keysyms);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9859 Qvendor_specific_keysyms = intern ("vendor-specific-keysyms");
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9860
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9861 DEFVAR_INT ("w32-num-mouse-buttons",
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9862 &Vw32_num_mouse_buttons,
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9863 "Number of physical mouse buttons.");
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9864 Vw32_num_mouse_buttons = Qnil;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9865
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9866 DEFVAR_LISP ("w32-swap-mouse-buttons",
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9867 &Vw32_swap_mouse_buttons,
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9868 "Swap the mapping of middle and right mouse buttons.\n\
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9869 When nil, middle button is mouse-2 and right button is mouse-3.");
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9870 Vw32_swap_mouse_buttons = Qnil;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9871
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9872 DEFVAR_LISP ("w32-grab-focus-on-raise",
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9873 &Vw32_grab_focus_on_raise,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9874 "Raised frame grabs input focus.\n\
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9875 When t, `raise-frame' grabs input focus as well. This fits well\n\
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9876 with the normal Windows click-to-focus policy, but might not be\n\
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9877 desirable when using a point-to-focus policy.");
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9878 Vw32_grab_focus_on_raise = Qt;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9879
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9880 DEFVAR_LISP ("w32-capslock-is-shiftlock",
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9881 &Vw32_capslock_is_shiftlock,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9882 "Apply CapsLock state to non character input keys.\n\
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9883 When nil, CapsLock only affects normal character input keys.");
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9884 Vw32_capslock_is_shiftlock = Qnil;
21614
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
9885
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
9886 DEFVAR_LISP ("w32-recognize-altgr",
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
9887 &Vw32_recognize_altgr,
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
9888 "Recognize right-alt and left-ctrl as AltGr.\n\
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
9889 When nil, the right-alt and left-ctrl key combination is\n\
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
9890 interpreted normally.");
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
9891 Vw32_recognize_altgr = Qt;
23638
e6fb9ffee4f4 (dumpglyphs): Use FRAME_FONT for w32_fill_area.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23510
diff changeset
9892
23639
516fc58a7b7b (w32_enable_unicode_output): Rename from
Geoff Voelker <voelker@cs.washington.edu>
parents: 23638
diff changeset
9893 DEFVAR_BOOL ("w32-enable-unicode-output",
516fc58a7b7b (w32_enable_unicode_output): Rename from
Geoff Voelker <voelker@cs.washington.edu>
parents: 23638
diff changeset
9894 &w32_enable_unicode_output,
516fc58a7b7b (w32_enable_unicode_output): Rename from
Geoff Voelker <voelker@cs.washington.edu>
parents: 23638
diff changeset
9895 "Enable the use of Unicode for text output if non-nil.\n\
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9896 Unicode output may prevent some third party applications for displaying\n\
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9897 Far-East Languages on Windows 95/98 from working properly.\n\
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9898 NT uses Unicode internally anyway, so this flag will probably have no\n\
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9899 affect on NT machines.");
23639
516fc58a7b7b (w32_enable_unicode_output): Rename from
Geoff Voelker <voelker@cs.washington.edu>
parents: 23638
diff changeset
9900 w32_enable_unicode_output = 1;
24131
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9901
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9902 DEFVAR_LISP ("w32-charset-to-codepage-alist",
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9903 &Vw32_charset_to_codepage_alist,
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9904 "Alist linking character sets to Windows Codepages.");
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9905 Vw32_charset_to_codepage_alist = Qnil;
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9906 /* Initialise the alist with some defaults. */
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9907 XSETFASTINT (codepage, 936);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9908 store_in_alist (&Vw32_charset_to_codepage_alist,
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9909 build_string ("gb2312"), codepage);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9910 XSETFASTINT (codepage, 950);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9911 store_in_alist (&Vw32_charset_to_codepage_alist,
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9912 build_string ("big5"), codepage);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9913 XSETFASTINT (codepage, 949);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9914 store_in_alist (&Vw32_charset_to_codepage_alist,
24146
9ed2245a9b79 (W32_TEXTOUT): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24131
diff changeset
9915 build_string ("ksc5601.1987"), codepage);
9ed2245a9b79 (W32_TEXTOUT): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24131
diff changeset
9916 XSETFASTINT (codepage, 1361);
24131
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9917 store_in_alist (&Vw32_charset_to_codepage_alist,
24146
9ed2245a9b79 (W32_TEXTOUT): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24131
diff changeset
9918 build_string ("ksc5601.1992"), codepage);
24131
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9919 XSETFASTINT (codepage, 932);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9920 store_in_alist (&Vw32_charset_to_codepage_alist,
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9921 build_string ("jisx0208-sjis"), codepage);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9922 XSETFASTINT (codepage, 874);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9923 store_in_alist (&Vw32_charset_to_codepage_alist,
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9924 build_string ("tis620"), codepage);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9925 XSETFASTINT (codepage, 20866);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9926 store_in_alist (&Vw32_charset_to_codepage_alist,
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9927 build_string ("koi8-r"), codepage);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9928 /* iso8859-13 is not yet officially adopted, but it is conveniently
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9929 covered by CP 1257. */
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9930 XSETFASTINT (codepage, 1257);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9931 store_in_alist (&Vw32_charset_to_codepage_alist,
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9932 build_string ("iso8859-13"), codepage);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9933 XSETFASTINT (codepage, 1254);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9934 store_in_alist (&Vw32_charset_to_codepage_alist,
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9935 build_string ("iso8859-9"), codepage);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9936 XSETFASTINT (codepage, 1255);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9937 store_in_alist (&Vw32_charset_to_codepage_alist,
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9938 build_string ("iso8859-8"), codepage);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9939 XSETFASTINT (codepage, 28597);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9940 store_in_alist (&Vw32_charset_to_codepage_alist,
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9941 build_string ("iso8859-7"), codepage);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9942 XSETFASTINT (codepage, 28596);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9943 store_in_alist (&Vw32_charset_to_codepage_alist,
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9944 build_string ("iso8859-6"), codepage);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9945 XSETFASTINT (codepage, 28595);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9946 store_in_alist (&Vw32_charset_to_codepage_alist,
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9947 build_string ("iso8859-5"), codepage);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9948 XSETFASTINT (codepage, 28594);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9949 store_in_alist (&Vw32_charset_to_codepage_alist,
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9950 build_string ("iso8859-4"), codepage);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9951 XSETFASTINT (codepage, 28593);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9952 store_in_alist (&Vw32_charset_to_codepage_alist,
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9953 build_string ("iso8859-3"), codepage);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9954 XSETFASTINT (codepage, 28592);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9955 store_in_alist (&Vw32_charset_to_codepage_alist,
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9956 build_string ("iso8859-2"), codepage);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9957 XSETFASTINT (codepage, 1252);
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9958 store_in_alist (&Vw32_charset_to_codepage_alist,
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
9959 build_string ("iso8859-1"), codepage);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9960
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9961 staticpro (&help_echo);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9962 help_echo = Qnil;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9963 staticpro (&previous_help_echo);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9964 previous_help_echo = Qnil;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9965
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9966 DEFVAR_BOOL ("x-stretch-cursor", &x_stretch_cursor_p,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9967 "*Non-nil means draw block cursor as wide as the glyph under it.\n\
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9968 For example, if a block cursor is over a tab, it will be drawn as\n\
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9969 wide as that tab on the display.");
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9970 x_stretch_cursor_p = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9971
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9972 DEFVAR_BOOL ("x-toolkit-scroll-bars-p", &x_toolkit_scroll_bars_p,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9973 "If not nil, Emacs uses toolkit scroll bars.");
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9974 x_toolkit_scroll_bars_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9975
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9976 staticpro (&last_mouse_motion_frame);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9977 last_mouse_motion_frame = Qnil;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9978 }