Mercurial > emacs
annotate src/msdos.h @ 50238:20e4ebf5399d
(No_Cursor): Declare as None for X.
(struct mac_output): Replace member cross_cursor by hand_cursor.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Fri, 21 Mar 2003 13:52:57 +0000 |
parents | 1ba638ccab28 |
children | f9447a2e045c |
rev | line source |
---|---|
5503 | 1 /* MS-DOS specific C utilities, interface. |
36253
6ece4a809131
(struct x_output): Rename busy_window to
Gerd Moellmann <gerd@gnu.org>
parents:
30340
diff
changeset
|
2 Copyright (C) 1993, 2001 Free Software Foundation, Inc. |
5503 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
10503
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
8 the Free Software Foundation; either version 2, or (at your option) |
5503 | 9 any later version. |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13395
diff
changeset
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13395
diff
changeset
|
19 Boston, MA 02111-1307, USA. */ |
5503 | 20 |
29611
f39e60352427
(EMACS_MSDOS_H): Renamed from MSDOS_H_.
Eli Zaretskii <eliz@gnu.org>
parents:
29557
diff
changeset
|
21 #ifndef EMACS_MSDOS_H |
f39e60352427
(EMACS_MSDOS_H): Renamed from MSDOS_H_.
Eli Zaretskii <eliz@gnu.org>
parents:
29557
diff
changeset
|
22 #define EMACS_MSDOS_H |
9572 | 23 |
5503 | 24 #include <dpmi.h> |
25 | |
26 int dos_ttraw (); | |
27 int dos_ttcooked (); | |
13178 | 28 int dos_get_saved_screen (char **, int *, int *); |
29 int dos_set_keyboard (int, int); | |
14285
6081221167de
(dos_set_window_size): Prototype for a new function.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
30 void dos_set_window_size (int *, int *); |
13178 | 31 |
5503 | 32 int getdefdir (int, char*); |
33 void unixtodos_filename (char *); | |
34 void dostounix_filename (char *); | |
7822
17b96e349369
Add template for rootrelativepath.
Richard M. Stallman <rms@gnu.org>
parents:
7604
diff
changeset
|
35 char *rootrelativepath (char *); |
5503 | 36 void init_environment (); |
37 void internal_terminal_init (); | |
38 void ctrl_break_func (_go32_dpmi_registers *); | |
39 void install_ctrl_break_check (); | |
40 | |
41 extern int have_mouse; | |
42 void mouse_init (); | |
43 void mouse_on (); | |
44 void mouse_off (); | |
45 void mouse_moveto (int, int); | |
9572 | 46 |
47 #ifndef HAVE_X_WINDOWS | |
48 /* Dummy types. */ | |
49 typedef int XFontStruct; | |
50 typedef int GC; | |
51 typedef int Pixmap; | |
52 typedef int Display; | |
53 typedef int Window; | |
21784
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
54 typedef int XRectangle; |
9572 | 55 #define PIX_TYPE int |
56 #define XDISPLAY | |
57 | |
27018 | 58 /* A stripped version of struct x_display_info in xterm.h, which see. */ |
59 struct display_info | |
60 { | |
61 /* These variables describe the range of text currently shown in its | |
62 mouse-face, together with the window they apply to. As long as | |
63 the mouse stays within this range, we need not redraw anything on | |
64 its account. Rows and columns are glyph matrix positions in | |
65 MOUSE_FACE_WINDOW. */ | |
66 int mouse_face_beg_row, mouse_face_beg_col; | |
67 int mouse_face_end_row, mouse_face_end_col; | |
68 int mouse_face_past_end; | |
69 Lisp_Object mouse_face_window; | |
70 int mouse_face_face_id; | |
71 | |
72 /* 1 if a mouse motion event came and we didn't handle it right away because | |
73 gc was in progress. */ | |
74 int mouse_face_deferred_gc; | |
75 | |
76 /* FRAME and X, Y position of mouse when last checked for | |
77 highlighting. X and Y can be negative or out of range for the frame. */ | |
78 struct frame *mouse_face_mouse_frame; | |
79 int mouse_face_mouse_x, mouse_face_mouse_y; | |
80 | |
81 /* Nonzero means defer mouse-motion highlighting. */ | |
82 int mouse_face_defer; | |
43370
9a4630ba3eae
(struct display_info): Add mouse_face_hidden.
Kim F. Storm <storm@cua.dk>
parents:
40501
diff
changeset
|
83 |
9a4630ba3eae
(struct display_info): Add mouse_face_hidden.
Kim F. Storm <storm@cua.dk>
parents:
40501
diff
changeset
|
84 /* Nonzero means that the mouse highlight should not be shown. */ |
9a4630ba3eae
(struct display_info): Add mouse_face_hidden.
Kim F. Storm <storm@cua.dk>
parents:
40501
diff
changeset
|
85 int mouse_face_hidden; |
27018 | 86 }; |
87 | |
50226
1ba638ccab28
(Display_Info): Add generic typedef.
Kim F. Storm <storm@cua.dk>
parents:
43370
diff
changeset
|
88 typedef struct display_info Display_Info; |
1ba638ccab28
(Display_Info): Add generic typedef.
Kim F. Storm <storm@cua.dk>
parents:
43370
diff
changeset
|
89 |
9572 | 90 /* This is a cut-down version of the one in xterm.h, which see. */ |
13395
c18547cf191f
(struct x_output): Rename from struct x_display.
Karl Heuer <kwzh@gnu.org>
parents:
13178
diff
changeset
|
91 struct x_output |
9572 | 92 { |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
25111
diff
changeset
|
93 int left_pos; /* used in xmenu_show (xmenu.c) */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
25111
diff
changeset
|
94 int top_pos; /* ditto */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
25111
diff
changeset
|
95 int line_height; /* used in x-popup-menu (xmenu.c) */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
25111
diff
changeset
|
96 PIX_TYPE background_pixel; /* used in xfaces.c and lots of other places */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
25111
diff
changeset
|
97 PIX_TYPE foreground_pixel; /* ditto */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
25111
diff
changeset
|
98 XFontStruct *font; /* used in x-popup-menu (xmenu.c) */ |
36253
6ece4a809131
(struct x_output): Rename busy_window to
Gerd Moellmann <gerd@gnu.org>
parents:
30340
diff
changeset
|
99 Window hourglass_window; /* currently unused (but maybe some day) */ |
6ece4a809131
(struct x_output): Rename busy_window to
Gerd Moellmann <gerd@gnu.org>
parents:
30340
diff
changeset
|
100 unsigned hourglass_p : 1; /* ditto */ |
27018 | 101 struct display_info display_info; /* used for drawing mouse highlight */ |
9572 | 102 }; |
103 | |
13395
c18547cf191f
(struct x_output): Rename from struct x_display.
Karl Heuer <kwzh@gnu.org>
parents:
13178
diff
changeset
|
104 extern struct x_output the_only_x_display; |
9572 | 105 |
106 #define FRAME_X_DISPLAY(f) ((Display *) 0) | |
107 #define FRAME_FOREGROUND_PIXEL(f) (the_only_x_display.foreground_pixel) | |
108 #define FRAME_BACKGROUND_PIXEL(f) (the_only_x_display.background_pixel) | |
109 #define FRAME_FONT(f) (the_only_x_display.font) | |
27018 | 110 #define FRAME_X_DISPLAY_INFO(f) (&the_only_x_display.display_info) |
40501
db6f2f5c4fa7
(FRAME_LINE_HEIGHT): Define (it's used by xmenu.c).
Eli Zaretskii <eliz@gnu.org>
parents:
36253
diff
changeset
|
111 #define FRAME_LINE_HEIGHT(f) (the_only_x_display.line_height) |
9572 | 112 |
27957
5210a97b3ac7
(FRAME_INTERNAL_BORDER_WIDTH): Define to zero.
Eli Zaretskii <eliz@gnu.org>
parents:
27463
diff
changeset
|
113 #define FRAME_INTERNAL_BORDER_WIDTH(f) (0) |
5210a97b3ac7
(FRAME_INTERNAL_BORDER_WIDTH): Define to zero.
Eli Zaretskii <eliz@gnu.org>
parents:
27463
diff
changeset
|
114 |
21784
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
115 /* Prototypes. */ |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
116 |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
117 /* Forward declarations for prototypes. */ |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
118 struct frame; |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
119 struct window; |
25111
36169f5d88da
Remove redundant declarations (most of them are now in
Eli Zaretskii <eliz@gnu.org>
parents:
21784
diff
changeset
|
120 |
36169f5d88da
Remove redundant declarations (most of them are now in
Eli Zaretskii <eliz@gnu.org>
parents:
21784
diff
changeset
|
121 /* From xterm.c; emulated on msdos.c */ |
36169f5d88da
Remove redundant declarations (most of them are now in
Eli Zaretskii <eliz@gnu.org>
parents:
21784
diff
changeset
|
122 |
21784
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
123 extern void pixel_to_glyph_coords P_ ((struct frame *f, int pix_x, int pix_y, |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
124 int *x, int *y, XRectangle *bounds, |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
125 int noclip)); |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
126 extern void glyph_to_pixel_coords P_ ((struct frame *f, int x, int y, |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
127 int *pix_x, int *pix_y)); |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
128 |
25111
36169f5d88da
Remove redundant declarations (most of them are now in
Eli Zaretskii <eliz@gnu.org>
parents:
21784
diff
changeset
|
129 /* Defined in xfns.c; emulated on msdos.c */ |
21784
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
130 |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
131 extern int have_menus_p P_ ((void)); |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
132 extern void x_set_menu_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object)); |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
133 extern int x_pixel_width P_ ((struct frame *)); |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
134 extern int x_pixel_height P_ ((struct frame *)); |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
135 |
9572 | 136 #define XFreeGC (void) |
137 #define x_destroy_bitmap(p1,p2) | |
138 #define load_pixmap(p1,p2,p3,p4) (0) | |
139 #define XGetGeometry(p1,p2,p3,p4,p5,p6,p7,p8,p9) | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
25111
diff
changeset
|
140 #define DisplayWidth(p1,p2) (SELECTED_FRAME()->width) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
25111
diff
changeset
|
141 #define DisplayHeight(p1,p2) (SELECTED_FRAME()->height) |
9572 | 142 #define XMenuSetAEQ (void) |
143 #define XMenuSetFreeze (void) | |
144 #define XMenuRecompute (void) | |
145 #define FONT_WIDTH(foo) 1 | |
146 #define XM_FAILURE -1 | |
147 #define XM_SUCCESS 1 | |
148 #define XM_NO_SELECT 2 | |
149 #define XM_IA_SELECT 3 | |
150 #define ButtonReleaseMask 0 | |
151 | |
152 typedef struct x_menu_struct | |
153 { | |
154 int count; | |
155 char **text; | |
156 struct x_menu_struct **submenu; | |
157 int *panenumber; /* Also used as enable. */ | |
158 int allocated; | |
159 int panecount; | |
160 int width; | |
27463
6e3d60350319
Change prototypes of XMenuAddSelection and XMenuActivate.
Eli Zaretskii <eliz@gnu.org>
parents:
27018
diff
changeset
|
161 char **help_text; |
9572 | 162 } XMenu; |
163 | |
10503
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
164 XMenu *XMenuCreate (Display *, Window, char *); |
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
165 int XMenuAddPane (Display *, XMenu *, char *, int); |
27463
6e3d60350319
Change prototypes of XMenuAddSelection and XMenuActivate.
Eli Zaretskii <eliz@gnu.org>
parents:
27018
diff
changeset
|
166 int XMenuAddSelection (Display *, XMenu *, int, int, char *, int, char *); |
10503
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
167 void XMenuLocate (Display *, XMenu *, int, int, int, int, |
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
168 int *, int *, int *, int *); |
27463
6e3d60350319
Change prototypes of XMenuAddSelection and XMenuActivate.
Eli Zaretskii <eliz@gnu.org>
parents:
27018
diff
changeset
|
169 int XMenuActivate (Display *, XMenu *, int *, int *, int, int, unsigned, |
30340
be29e15ece0e
(XMenuActivate): Update prototype.
Eli Zaretskii <eliz@gnu.org>
parents:
29611
diff
changeset
|
170 char **, void (*callback)(char *, int, int)); |
10503
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
171 void XMenuDestroy (Display *, XMenu *); |
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
172 |
9572 | 173 #endif /* not HAVE_X_WINDOWS */ |
174 | |
29611
f39e60352427
(EMACS_MSDOS_H): Renamed from MSDOS_H_.
Eli Zaretskii <eliz@gnu.org>
parents:
29557
diff
changeset
|
175 #endif /* not EMACS_MSDOS_H */ |