annotate src/objects-tty.c @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children 0293115a14e9
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"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 /* 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
32 Lisp_Object Vtty_color_alist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #if 0 /* This stuff doesn't quite work yet */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 Lisp_Object Vtty_dynamic_color_fg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 Lisp_Object Vtty_dynamic_color_bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 DEFUN ("register-tty-color", Fregister_tty_color, Sregister_tty_color, 3, 3,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 Register COLOR as a recognized TTY color.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 COLOR should be a string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 Strings FG-STRING and BG-STRING should specify the escape sequences to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 set the foreground and background to the given color, respectively.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 (color, fg_string, bg_string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 Lisp_Object color, fg_string, bg_string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 CHECK_STRING (color);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 CHECK_STRING (fg_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 CHECK_STRING (bg_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 color = Fintern (color, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 Vtty_color_alist = Fremassq (color, Vtty_color_alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 Vtty_color_alist = Fcons (Fcons (color, Fcons (fg_string, bg_string)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 Vtty_color_alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 DEFUN ("unregister-tty-color", Funregister_tty_color, Sunregister_tty_color,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 1, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 Unregister COLOR as a recognized TTY color.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 (color)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 Lisp_Object color;
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 DEFUN ("find-tty-color", Ffind_tty_color, Sfind_tty_color, 1, 1, 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.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 (color)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 Lisp_Object color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 Lisp_Object result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 CHECK_STRING (color);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 result = Fassq (Fintern (color, Qnil), Vtty_color_alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 if (!NILP (result))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 return list2 (Fcar (Fcdr (result)), Fcdr (Fcdr (result)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 DEFUN ("tty-color-list", Ftty_color_list, Stty_color_list, 0, 0, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 Return a list of the registered TTY colors.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 Lisp_Object result = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 LIST_LOOP (rest, Vtty_color_alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 result = Fcons (Fsymbol_name (XCAR (XCAR (rest))), result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 return Fnreverse (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 /* This approach is too simplistic. The problem is that the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 dynamic color settings apply to *all* text in the default color,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 not just the text output after the escape sequence has been given. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 DEFUN ("set-tty-dynamic-color-specs", Fset_tty_dynamic_color_specs,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 Sset_tty_dynamic_color_specs, 2, 2, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 Set the dynamic color specifications for TTY's.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 FG and BG should be either nil or vaguely printf-like strings,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 where each occurrence of %s is replaced with the color name and each
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 occurrence of %% is replaced with a single % character.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 (fg, bg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 Lisp_Object fg, bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 if (!NILP (fg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 CHECK_STRING (fg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 if (!NILP (bg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 CHECK_STRING (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 Vtty_dynamic_color_fg = fg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 Vtty_dynamic_color_bg = bg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 DEFUN ("tty-dynamic-color-specs", Ftty_dynamic_color_specs,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 Stty_dynamic_color_specs, 0, 0, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 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
140 See `set-tty-dynamic-color-specs'.
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 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 return list2 (Vtty_dynamic_color_fg, Vtty_dynamic_color_bg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 #endif /* 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 tty_initialize_color_instance (struct Lisp_Color_Instance *c, Lisp_Object name,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 Lisp_Object device, Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 Lisp_Object result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 name = Fintern (name, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 result = assq_no_quit (name, Vtty_color_alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 if (NILP (result))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 if (!STRINGP (Vtty_dynamic_color_fg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 && !STRINGP (Vtty_dynamic_color_bg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 /* Don't allocate the data until we're sure that we will succeed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 c->data = malloc_type (struct tty_color_instance_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 COLOR_INSTANCE_TTY_SYMBOL (c) = name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 tty_mark_color_instance (struct Lisp_Color_Instance *c,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 void (*markobj) (Lisp_Object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 ((markobj) (COLOR_INSTANCE_TTY_SYMBOL (c)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 tty_print_color_instance (struct Lisp_Color_Instance *c,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 Lisp_Object printcharfun,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 tty_finalize_color_instance (struct Lisp_Color_Instance *c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 if (c->data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 xfree (c->data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 tty_color_instance_equal (struct Lisp_Color_Instance *c1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 struct Lisp_Color_Instance *c2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 return (EQ (COLOR_INSTANCE_TTY_SYMBOL (c1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 COLOR_INSTANCE_TTY_SYMBOL (c2)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 static unsigned long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 tty_color_instance_hash (struct Lisp_Color_Instance *c, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 return LISP_HASH (COLOR_INSTANCE_TTY_SYMBOL (c));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 tty_valid_color_name_p (struct device *d, Lisp_Object color)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 return (!NILP (assoc_no_quit (Fintern (color, Qnil), Vtty_color_alist)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 || STRINGP (Vtty_dynamic_color_fg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 || STRINGP (Vtty_dynamic_color_bg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 tty_initialize_font_instance (struct Lisp_Font_Instance *f, Lisp_Object name,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 Lisp_Object device, Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 Bufbyte *str = string_data (XSTRING (name));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 Lisp_Object charset = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 if (strncmp ((CONST char *) str, "normal", 6))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 str += 6;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 if (*str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 /* Don't allocate the data until we're sure that we will succeed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 f->data = malloc_type (struct tty_font_instance_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 FONT_INSTANCE_TTY_CHARSET (f) = charset;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 f->width = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 f->proportional_p = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 f->ascent = f->height = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 f->descent = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 tty_mark_font_instance (struct Lisp_Font_Instance *f,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 void (*markobj) (Lisp_Object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 ((markobj) (FONT_INSTANCE_TTY_CHARSET (f)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 tty_print_font_instance (struct Lisp_Font_Instance *f,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 Lisp_Object printcharfun,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 tty_finalize_font_instance (struct Lisp_Font_Instance *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 if (f->data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 xfree (f->data);
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 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 tty_list_fonts (Lisp_Object pattern, Lisp_Object device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 return list1 (build_string ("normal"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274
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 /* initialization */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 syms_of_objects_tty (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 defsubr (&Sregister_tty_color);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 defsubr (&Sunregister_tty_color);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 defsubr (&Sfind_tty_color);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 defsubr (&Stty_color_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 defsubr (&Sset_tty_dynamic_color_specs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 defsubr (&Stty_dynamic_color_specs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 console_type_create_objects_tty (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 /* object methods */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 CONSOLE_HAS_METHOD (tty, initialize_color_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 CONSOLE_HAS_METHOD (tty, mark_color_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 CONSOLE_HAS_METHOD (tty, print_color_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 CONSOLE_HAS_METHOD (tty, finalize_color_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 CONSOLE_HAS_METHOD (tty, color_instance_equal);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 CONSOLE_HAS_METHOD (tty, color_instance_hash);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 CONSOLE_HAS_METHOD (tty, valid_color_name_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 CONSOLE_HAS_METHOD (tty, initialize_font_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 CONSOLE_HAS_METHOD (tty, mark_font_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 CONSOLE_HAS_METHOD (tty, print_font_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 CONSOLE_HAS_METHOD (tty, finalize_font_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 CONSOLE_HAS_METHOD (tty, list_fonts);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 vars_of_objects_tty (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 staticpro (&Vtty_color_alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 Vtty_color_alist = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 staticpro (&Vtty_dynamic_color_fg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 Vtty_dynamic_color_fg = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 staticpro (&Vtty_dynamic_color_bg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 Vtty_dynamic_color_bg = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 }