*** empty log message ***
[bpt/emacs.git] / src / msdos.h
CommitLineData
1b94449f 1/* MS-DOS specific C utilities, interface.
231c4d5c 2 Copyright (C) 1993, 2001 Free Software Foundation, Inc.
1b94449f
RS
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
cbc07d0a 8the Free Software Foundation; either version 2, or (at your option)
1b94449f
RS
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
1b94449f 20
102f33d0
EZ
21#ifndef EMACS_MSDOS_H
22#define EMACS_MSDOS_H
87485d6f 23
1b94449f
RS
24#include <dpmi.h>
25
26int dos_ttraw ();
27int dos_ttcooked ();
8a7b1700
KS
28int dos_get_saved_screen (char **, int *, int *);
29int dos_set_keyboard (int, int);
9a4a6c03 30void dos_set_window_size (int *, int *);
8a7b1700 31
1b94449f
RS
32int getdefdir (int, char*);
33void unixtodos_filename (char *);
34void dostounix_filename (char *);
af1b066b 35char *rootrelativepath (char *);
1b94449f
RS
36void init_environment ();
37void internal_terminal_init ();
1b94449f
RS
38void ctrl_break_func (_go32_dpmi_registers *);
39void install_ctrl_break_check ();
40
41extern int have_mouse;
1b94449f
RS
42void mouse_init ();
43void mouse_on ();
44void mouse_off ();
45void mouse_moveto (int, int);
87485d6f
MW
46\f
47#ifndef HAVE_X_WINDOWS
48/* Dummy types. */
49typedef int XFontStruct;
50typedef int GC;
51typedef int Pixmap;
52typedef int Display;
53typedef int Window;
bd5197a4 54typedef int XRectangle;
87485d6f
MW
55#define PIX_TYPE int
56#define XDISPLAY
57
adb9900f
EZ
58/* A stripped version of struct x_display_info in xterm.h, which see. */
59struct 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;
83};
84
87485d6f 85/* This is a cut-down version of the one in xterm.h, which see. */
26522841 86struct x_output
87485d6f 87{
2d764c78
EZ
88 int left_pos; /* used in xmenu_show (xmenu.c) */
89 int top_pos; /* ditto */
90 int line_height; /* used in x-popup-menu (xmenu.c) */
91 PIX_TYPE background_pixel; /* used in xfaces.c and lots of other places */
92 PIX_TYPE foreground_pixel; /* ditto */
93 XFontStruct *font; /* used in x-popup-menu (xmenu.c) */
231c4d5c
GM
94 Window hourglass_window; /* currently unused (but maybe some day) */
95 unsigned hourglass_p : 1; /* ditto */
adb9900f 96 struct display_info display_info; /* used for drawing mouse highlight */
87485d6f
MW
97};
98
26522841 99extern struct x_output the_only_x_display;
2d764c78 100
87485d6f
MW
101#define FRAME_X_DISPLAY(f) ((Display *) 0)
102#define FRAME_FOREGROUND_PIXEL(f) (the_only_x_display.foreground_pixel)
103#define FRAME_BACKGROUND_PIXEL(f) (the_only_x_display.background_pixel)
104#define FRAME_FONT(f) (the_only_x_display.font)
adb9900f 105#define FRAME_X_DISPLAY_INFO(f) (&the_only_x_display.display_info)
cacbb9e9 106#define FRAME_LINE_HEIGHT(f) (the_only_x_display.line_height)
87485d6f 107
2f950292
EZ
108#define FRAME_INTERNAL_BORDER_WIDTH(f) (0)
109
bd5197a4
EZ
110/* Prototypes. */
111
112/* Forward declarations for prototypes. */
113struct frame;
114struct window;
236027c9
EZ
115
116/* From xterm.c; emulated on msdos.c */
117
bd5197a4
EZ
118extern void pixel_to_glyph_coords P_ ((struct frame *f, int pix_x, int pix_y,
119 int *x, int *y, XRectangle *bounds,
120 int noclip));
121extern void glyph_to_pixel_coords P_ ((struct frame *f, int x, int y,
122 int *pix_x, int *pix_y));
123
236027c9 124/* Defined in xfns.c; emulated on msdos.c */
bd5197a4
EZ
125
126extern int have_menus_p P_ ((void));
127extern void x_set_menu_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
128extern int x_pixel_width P_ ((struct frame *));
129extern int x_pixel_height P_ ((struct frame *));
130
87485d6f 131#define XFreeGC (void)
87485d6f
MW
132#define x_destroy_bitmap(p1,p2)
133#define load_pixmap(p1,p2,p3,p4) (0)
134#define XGetGeometry(p1,p2,p3,p4,p5,p6,p7,p8,p9)
2d764c78
EZ
135#define DisplayWidth(p1,p2) (SELECTED_FRAME()->width)
136#define DisplayHeight(p1,p2) (SELECTED_FRAME()->height)
87485d6f
MW
137#define XMenuSetAEQ (void)
138#define XMenuSetFreeze (void)
139#define XMenuRecompute (void)
140#define FONT_WIDTH(foo) 1
87485d6f
MW
141#define XM_FAILURE -1
142#define XM_SUCCESS 1
143#define XM_NO_SELECT 2
144#define XM_IA_SELECT 3
145#define ButtonReleaseMask 0
146
147typedef struct x_menu_struct
148{
149 int count;
150 char **text;
151 struct x_menu_struct **submenu;
152 int *panenumber; /* Also used as enable. */
153 int allocated;
154 int panecount;
155 int width;
9863d8ff 156 char **help_text;
87485d6f
MW
157} XMenu;
158
cbc07d0a
RS
159XMenu *XMenuCreate (Display *, Window, char *);
160int XMenuAddPane (Display *, XMenu *, char *, int);
9863d8ff 161int XMenuAddSelection (Display *, XMenu *, int, int, char *, int, char *);
cbc07d0a
RS
162void XMenuLocate (Display *, XMenu *, int, int, int, int,
163 int *, int *, int *, int *);
9863d8ff 164int XMenuActivate (Display *, XMenu *, int *, int *, int, int, unsigned,
f5c322fc 165 char **, void (*callback)(char *, int, int));
cbc07d0a
RS
166void XMenuDestroy (Display *, XMenu *);
167
87485d6f
MW
168#endif /* not HAVE_X_WINDOWS */
169
102f33d0 170#endif /* not EMACS_MSDOS_H */