annotate oldXMenu/Imakefile @ 26729:f5dded41adcc

Changes for automatic remapping of X colors on terminal frames: * xfaces.c (XColor) [!HAVE_X_WINDOWS]: Provide a typedef for non-X frames. (Vface_tty_color_alist): Remove. (tty_defined_color): New function. (defined_color): Rewrite to support any type of frame. (tty_color_name): New function. (face_color_supported_p, Fface_color_gray_p, Fface_color_supported_p): Support non-X frames. (load_color): Enclose the color name in quotes, in the log messages. Remove DOS-specific version of load_color. (realize_tty_face): Take the supported colors from tty-color-alist. Support translation of X colors to the closest tty color, for both MSDOS and tty frames. [MSDOS]: Don't invert face colors if they were taken from the frame colors. (Fface_register_tty_color, Fface_clear_tty_colors): Remove. * frame.h (struct x_output) [!MSDOS, !WINDOWSNT, !HAVE_X_WINDOWS]: Define a mostly empty surrogate. (tty_display): Declare. * frame.c (make_terminal_frame) [!macintosh]: Don't use tty_display. (Fframe_parameters): Don't invert colors of non-FRAME_WINDOW_P frames when the frame's param_alist includes 'reverse. (tty_display): Define. (make_terminal_frame) [!MSDOS]: Assign &tty_display to the output_data.x member. (Fframe_parameters): Return foreground and background color names on tty frames as well, in addition to MSDOS frames. * msdos.h (DisplayWidth, DisplayHeight): Changes for Lisp_Object selected_frame. (struct x_output): Remove unused members; document who uses each member. (FRAME_PARAM_FACES, FRAME_N_PARAM_FACES, FRAME_DEFAULT_PARAM_FACE, FRAME_MODE_LINE_PARAM_FACE, FRAME_COMPUTED_FACES, FRAME_N_COMPUTED_FACES, FRAME_SIZE_COMPUTED_FACES, FRAME_DEFAULT_FACE, FRAME_MODE_LINE_FACE, unload_color): Remove unused macro definintions. * msdos.c (IT_set_frame_parameters): Don't call recompute_basic_faces, the next redisplay will, anyway. (x_current_display): Remove unused variable. Many functions: changes for Lisp_object selected_frame. (IT_set_face): If the tty_reverse_p flag is set for the face, reverse the foreground and background colors. (Fmsdos_remember_default_colors): New function. (syms_of_msdos): Defsubr it. (IT_set_frame_parameters): Use initial_screen_colors[] when creating a new frame. If the frame parameters include 'reverse, swap the foreground and background colors. (internal_terminal_init): Initialize initial_screen_colors to -1. (syms_of_msdos): Add DEFVAR_BOOL for x-stretch-cursor, to shut up cus-start.el. * Makefile.in (lisp, shortlisp): Add lisp/term/tty-colors.elc. * xfns.c (x_defined_color): Rename from defined_color. All callers changed. (Fxw_color_defined_p): Renamed from Fx_color_defined_p; all callers changed. (Fxw_color_values): Renamed from Fx_color_values; all callers changed. (Fxw_display_color_p): Renamed from Fx_display_color_p; all callers changed. (x_window_to_frame, x_any_window_to_frame, x_non_menubar_window_to_frame, x_menubar_window_to_frame, x_top_window_to_frame): Use !FRAME_X_P instead of f->output_data.nothing. * xterm.h (x_defined_color): Rename from defined_color. * w32fns.c (x_window_to_frame): Use FRAME_W32_P instead of f->output_data.nothing. (Fxw_color_defined_p): Renamed from Fx_color_defined_p; all callers changed. (Fxw_color_values): Renamed from Fx_color_values; all callers changed. (Fxw_display_color_p): Renamed from Fx_display_color_p; all callers changed. * dispextern.h (tty_color_name): Add prototype. * xmenu.c (menubar_id_to_frame): Use FRAME_WINDOW_P instead of f->output_data.nothing. * w32menu.c (menubar_id_to_frame): Likewise. * w32term.h (w32_output): Declare. * dosfns.c (Qmsdos_color_translate): Remove. (msdos_stdcolor_name): Now returns a Lisp_Object. * dosfns.h (Qmsdos_color_translate): Remove. * s/msdos.h (INTERNAL_TERMINAL): Add entries for color support.
author Eli Zaretskii <eliz@gnu.org>
date Mon, 06 Dec 1999 16:54:09 +0000
parents bbce331da1be
children 695cf19ef79e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
25858
Dave Love <fx@gnu.org>
parents:
diff changeset
1 HEADERS = XMenu.h
Dave Love <fx@gnu.org>
parents:
diff changeset
2 LINTLIBS = ../lib/X/llib-lX.ln
Dave Love <fx@gnu.org>
parents:
diff changeset
3 INSTALLFLAGS = $(INSTINCFLAGS)
Dave Love <fx@gnu.org>
parents:
diff changeset
4 RANLIB = ranlib -t
Dave Love <fx@gnu.org>
parents:
diff changeset
5
Dave Love <fx@gnu.org>
parents:
diff changeset
6 SRCS = Activate.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
7 AddPane.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
8 AddSel.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
9 ChgPane.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
10 ChgSel.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
11 Create.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
12 DelPane.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
13 DelSel.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
14 Destroy.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
15 Error.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
16 EvHand.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
17 FindPane.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
18 FindSel.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
19 InsPane.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
20 InsSel.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
21 Internal.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
22 Locate.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
23 Post.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
24 Recomp.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
25 SetAEQ.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
26 SetFrz.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
27 SetPane.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
28 SetSel.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
29 XCrAssoc.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
30 XDelAssoc.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
31 XDestAssoc.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
32 XLookAssoc.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
33 XMakeAssoc.c
Dave Love <fx@gnu.org>
parents:
diff changeset
34
Dave Love <fx@gnu.org>
parents:
diff changeset
35 OBJS = Activate.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
36 AddPane.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
37 AddSel.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
38 ChgPane.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
39 ChgSel.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
40 Create.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
41 DelPane.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
42 DelSel.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
43 Destroy.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
44 Error.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
45 EvHand.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
46 FindPane.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
47 FindSel.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
48 InsPane.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
49 InsSel.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
50 Internal.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
51 Locate.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
52 Post.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
53 Recomp.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
54 SetAEQ.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
55 SetFrz.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
56 SetPane.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
57 SetSel.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
58 XCrAssoc.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
59 XDelAssoc.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
60 XDestAssoc.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
61 XLookAssoc.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
62 XMakeAssoc.o
Dave Love <fx@gnu.org>
parents:
diff changeset
63
Dave Love <fx@gnu.org>
parents:
diff changeset
64 #if DebugOldLibXMenu && ProfileOldLibXMenu
Dave Love <fx@gnu.org>
parents:
diff changeset
65 DebuggedAndProfiledLibraryObjectRule()
Dave Love <fx@gnu.org>
parents:
diff changeset
66 #else
Dave Love <fx@gnu.org>
parents:
diff changeset
67 # if DebugOldLibXMenu
Dave Love <fx@gnu.org>
parents:
diff changeset
68 DebuggedLibraryObjectRule()
Dave Love <fx@gnu.org>
parents:
diff changeset
69 # else
Dave Love <fx@gnu.org>
parents:
diff changeset
70 # if ProfileOldLibXMenu
Dave Love <fx@gnu.org>
parents:
diff changeset
71 ProfiledLibraryObjectRule()
Dave Love <fx@gnu.org>
parents:
diff changeset
72 # else
Dave Love <fx@gnu.org>
parents:
diff changeset
73 NormalLibraryObjectRule()
Dave Love <fx@gnu.org>
parents:
diff changeset
74 # endif
Dave Love <fx@gnu.org>
parents:
diff changeset
75 # endif
Dave Love <fx@gnu.org>
parents:
diff changeset
76 #endif
Dave Love <fx@gnu.org>
parents:
diff changeset
77
Dave Love <fx@gnu.org>
parents:
diff changeset
78 NormalLibraryTarget(XMenu11,$(OBJS))
Dave Love <fx@gnu.org>
parents:
diff changeset
79 LintLibraryTarget(XMenu11,$(SRCS))
Dave Love <fx@gnu.org>
parents:
diff changeset
80 InstallLibrary(XMenu11,$(USRLIBDIR))
Dave Love <fx@gnu.org>
parents:
diff changeset
81 #if InstallLintLibs
Dave Love <fx@gnu.org>
parents:
diff changeset
82 InstallLintLibrary(XMenu11,$(LINTLIBDIR))
Dave Love <fx@gnu.org>
parents:
diff changeset
83 #endif
Dave Love <fx@gnu.org>
parents:
diff changeset
84 InstallMultiple($(HEADERS),$(INCDIR))
Dave Love <fx@gnu.org>
parents:
diff changeset
85
Dave Love <fx@gnu.org>
parents:
diff changeset
86 #if ProfileOldLibXMenu
Dave Love <fx@gnu.org>
parents:
diff changeset
87 ProfiledLibraryTarget(XMenu11,$(OBJS))
Dave Love <fx@gnu.org>
parents:
diff changeset
88 InstallLibrary(XMenu11_p,$(USRLIBDIR))
Dave Love <fx@gnu.org>
parents:
diff changeset
89 #endif
Dave Love <fx@gnu.org>
parents:
diff changeset
90
Dave Love <fx@gnu.org>
parents:
diff changeset
91 #if DebugOldLibXMenu
Dave Love <fx@gnu.org>
parents:
diff changeset
92 DebuggedLibraryTarget(XMenu11,$(OBJS))
Dave Love <fx@gnu.org>
parents:
diff changeset
93 #endif
Dave Love <fx@gnu.org>
parents:
diff changeset
94
Dave Love <fx@gnu.org>
parents:
diff changeset
95 DependTarget()
Dave Love <fx@gnu.org>
parents:
diff changeset
96
Dave Love <fx@gnu.org>
parents:
diff changeset
97 NormalLintTarget($(SRCS))