annotate src/objects-tty.c @ 398:74fd4e045ea6 r21-2-29

Import from CVS: tag r21-2-29
author cvs
date Mon, 13 Aug 2007 11:13:30 +0200
parents 8626e4521993
children 697ef44129c6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* TTY-specific Lisp objects.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1995 Board of Trustees, University of Illinois.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1995, 1996 Ben Wing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 #include "console-tty.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #include "insdel.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #include "objects-tty.h"
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
30 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
31 #include "device.h"
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
32 #include "mule-charset.h"
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
33 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 /* An alist mapping from color names to a cons of (FG-STRING, BG-STRING). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 Lisp_Object Vtty_color_alist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #if 0 /* This stuff doesn't quite work yet */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 Lisp_Object Vtty_dynamic_color_fg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 Lisp_Object Vtty_dynamic_color_bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
42 DEFUN ("register-tty-color", Fregister_tty_color, 3, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 Register COLOR as a recognized TTY color.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 COLOR should be a string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 Strings FG-STRING and BG-STRING should specify the escape sequences to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 set the foreground and background to the given color, respectively.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
47 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
48 (color, fg_string, bg_string))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 CHECK_STRING (color);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 CHECK_STRING (fg_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 CHECK_STRING (bg_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 color = Fintern (color, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 Vtty_color_alist = Fremassq (color, Vtty_color_alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 Vtty_color_alist = Fcons (Fcons (color, Fcons (fg_string, bg_string)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 Vtty_color_alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
62 DEFUN ("unregister-tty-color", Funregister_tty_color, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 Unregister COLOR as a recognized TTY color.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
64 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
65 (color))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 CHECK_STRING (color);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 color = Fintern (color, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 Vtty_color_alist = Fremassq (color, Vtty_color_alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
74 DEFUN ("find-tty-color", Ffind_tty_color, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 Look up COLOR in the list of registered TTY colors.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 If it is found, return a list (FG-STRING BG-STRING) of the escape
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 sequences used to set the foreground and background to the color, respectively.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 If it is not found, return nil.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
79 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
80 (color))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 Lisp_Object result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 CHECK_STRING (color);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 result = Fassq (Fintern (color, Qnil), Vtty_color_alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 if (!NILP (result))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 return list2 (Fcar (Fcdr (result)), Fcdr (Fcdr (result)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
93 DEFUN ("tty-color-list", Ftty_color_list, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 Return a list of the registered TTY colors.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
95 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
96 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 Lisp_Object result = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 LIST_LOOP (rest, Vtty_color_alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 result = Fcons (Fsymbol_name (XCAR (XCAR (rest))), result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 return Fnreverse (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 /* This approach is too simplistic. The problem is that the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 dynamic color settings apply to *all* text in the default color,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 not just the text output after the escape sequence has been given. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
115 DEFUN ("set-tty-dynamic-color-specs", Fset_tty_dynamic_color_specs, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 Set the dynamic color specifications for TTY's.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 FG and BG should be either nil or vaguely printf-like strings,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 where each occurrence of %s is replaced with the color name and each
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 occurrence of %% is replaced with a single % character.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
120 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
121 (fg, bg))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 if (!NILP (fg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 CHECK_STRING (fg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 if (!NILP (bg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 CHECK_STRING (bg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 Vtty_dynamic_color_fg = fg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 Vtty_dynamic_color_bg = bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
134 DEFUN ("tty-dynamic-color-specs", Ftty_dynamic_color_specs, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 Return the dynamic color specifications for TTY's as a list of (FG BG).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 See `set-tty-dynamic-color-specs'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
137 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
138 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 return list2 (Vtty_dynamic_color_fg, Vtty_dynamic_color_bg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 #endif /* 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 static int
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
146 tty_initialize_color_instance (Lisp_Color_Instance *c, Lisp_Object name,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 Lisp_Object device, Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 Lisp_Object result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 name = Fintern (name, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 result = assq_no_quit (name, Vtty_color_alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 if (NILP (result))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 if (!STRINGP (Vtty_dynamic_color_fg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 && !STRINGP (Vtty_dynamic_color_bg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 /* Don't allocate the data until we're sure that we will succeed. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 70
diff changeset
164 c->data = xnew (struct tty_color_instance_data);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 COLOR_INSTANCE_TTY_SYMBOL (c) = name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 static void
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
171 tty_mark_color_instance (Lisp_Color_Instance *c)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
173 mark_object (COLOR_INSTANCE_TTY_SYMBOL (c));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 static void
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
177 tty_print_color_instance (Lisp_Color_Instance *c,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 Lisp_Object printcharfun,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 static void
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
184 tty_finalize_color_instance (Lisp_Color_Instance *c)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 if (c->data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 xfree (c->data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 static int
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
191 tty_color_instance_equal (Lisp_Color_Instance *c1,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
192 Lisp_Color_Instance *c2,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 return (EQ (COLOR_INSTANCE_TTY_SYMBOL (c1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 COLOR_INSTANCE_TTY_SYMBOL (c2)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 static unsigned long
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
200 tty_color_instance_hash (Lisp_Color_Instance *c, int depth)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 return LISP_HASH (COLOR_INSTANCE_TTY_SYMBOL (c));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 tty_valid_color_name_p (struct device *d, Lisp_Object color)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 return (!NILP (assoc_no_quit (Fintern (color, Qnil), Vtty_color_alist)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 || STRINGP (Vtty_dynamic_color_fg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 || STRINGP (Vtty_dynamic_color_bg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 static int
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
217 tty_initialize_font_instance (Lisp_Font_Instance *f, Lisp_Object name,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 Lisp_Object device, Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 {
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
220 Bufbyte *str = XSTRING_DATA (name);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 Lisp_Object charset = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
223 if (strncmp ((const char *) str, "normal", 6))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 str += 6;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 if (*str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 {
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
228 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
229 if (*str != '/')
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
230 return 0;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
231 str++;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
232 charset = Ffind_charset (intern ((const char *) str));
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
233 if (NILP (charset))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
234 return 0;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
235 #else
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 return 0;
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
237 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 /* Don't allocate the data until we're sure that we will succeed. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 70
diff changeset
241 f->data = xnew (struct tty_font_instance_data);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 FONT_INSTANCE_TTY_CHARSET (f) = charset;
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
243 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
244 if (CHARSETP (charset))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
245 f->width = XCHARSET_COLUMNS (charset);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
246 else
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
247 #endif
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
248 f->width = 1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 f->proportional_p = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 f->ascent = f->height = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 f->descent = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 static void
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
258 tty_mark_font_instance (Lisp_Font_Instance *f)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
260 mark_object (FONT_INSTANCE_TTY_CHARSET (f));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 static void
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
264 tty_print_font_instance (Lisp_Font_Instance *f,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 Lisp_Object printcharfun,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 static void
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
271 tty_finalize_font_instance (Lisp_Font_Instance *f)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 if (f->data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 xfree (f->data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 tty_list_fonts (Lisp_Object pattern, Lisp_Object device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 return list1 (build_string ("normal"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
283 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
284
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
285 static int
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
286 tty_font_spec_matches_charset (struct device *d, Lisp_Object charset,
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
287 const Bufbyte *nonreloc, Lisp_Object reloc,
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
288 Bytecount offset, Bytecount length)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
289 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
290 const Bufbyte *the_nonreloc = nonreloc;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 70
diff changeset
291
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
292 if (!the_nonreloc)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
293 the_nonreloc = XSTRING_DATA (reloc);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
294 fixup_internal_substring (nonreloc, reloc, offset, &length);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
295 the_nonreloc += offset;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 70
diff changeset
296
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
297 if (UNBOUNDP (charset))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
298 return !memchr (the_nonreloc, '/', length);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
299 the_nonreloc = (const Bufbyte *) memchr (the_nonreloc, '/', length);
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
300 if (!the_nonreloc)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
301 return 0;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
302 the_nonreloc++;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
303 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
304 Lisp_String *s = symbol_name (XSYMBOL (XCHARSET_NAME (charset)));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
305 return !strcmp ((const char *) the_nonreloc,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
306 (const char *) string_data (s));
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
307 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
308 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
309
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
310 /* find a font spec that matches font spec FONT and also matches
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
311 (the registry of) CHARSET. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
312 static Lisp_Object
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
313 tty_find_charset_font (Lisp_Object device, Lisp_Object font,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
314 Lisp_Object charset)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
315 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
316 Bufbyte *fontname = XSTRING_DATA (font);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
317
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
318 if (strchr ((const char *) fontname, '/'))
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
319 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
320 if (tty_font_spec_matches_charset (XDEVICE (device), charset, 0,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
321 font, 0, -1))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
322 return font;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
323 return Qnil;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
324 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
325
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
326 if (UNBOUNDP (charset))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
327 return font;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
328
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
329 return concat3 (font, build_string ("/"),
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
330 Fsymbol_name (XCHARSET_NAME (charset)));
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
331 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
332
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
333 #endif /* MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
334
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 /* initialization */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 syms_of_objects_tty (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 {
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
343 DEFSUBR (Fregister_tty_color);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
344 DEFSUBR (Funregister_tty_color);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
345 DEFSUBR (Ffind_tty_color);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
346 DEFSUBR (Ftty_color_list);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 #if 0
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
348 DEFSUBR (Fset_tty_dynamic_color_specs);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
349 DEFSUBR (Ftty_dynamic_color_specs);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 console_type_create_objects_tty (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 /* object methods */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 CONSOLE_HAS_METHOD (tty, initialize_color_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 CONSOLE_HAS_METHOD (tty, mark_color_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 CONSOLE_HAS_METHOD (tty, print_color_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 CONSOLE_HAS_METHOD (tty, finalize_color_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 CONSOLE_HAS_METHOD (tty, color_instance_equal);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 CONSOLE_HAS_METHOD (tty, color_instance_hash);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 CONSOLE_HAS_METHOD (tty, valid_color_name_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 CONSOLE_HAS_METHOD (tty, initialize_font_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 CONSOLE_HAS_METHOD (tty, mark_font_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 CONSOLE_HAS_METHOD (tty, print_font_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 CONSOLE_HAS_METHOD (tty, finalize_font_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 CONSOLE_HAS_METHOD (tty, list_fonts);
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
370 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
371 CONSOLE_HAS_METHOD (tty, font_spec_matches_charset);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
372 CONSOLE_HAS_METHOD (tty, find_charset_font);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
373 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 vars_of_objects_tty (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 staticpro (&Vtty_color_alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 Vtty_color_alist = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 staticpro (&Vtty_dynamic_color_fg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 Vtty_dynamic_color_fg = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 staticpro (&Vtty_dynamic_color_bg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 Vtty_dynamic_color_bg = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 }