(Qforeground_color, Qbackground_color): Declare.
[bpt/emacs.git] / src / msdos.h
CommitLineData
1b94449f
RS
1/* MS-DOS specific C utilities, interface.
2 Copyright (C) 1993 Free Software Foundation, Inc.
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
87485d6f
MW
21#ifndef _MSDOS_H_
22#define _MSDOS_H_
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;
54#define PIX_TYPE int
55#define XDISPLAY
56
57/* This is a cut-down version of the one in xterm.h, which see. */
26522841 58struct x_output
87485d6f
MW
59{
60 int left_pos;
61 int top_pos;
62 int line_height;
63 PIX_TYPE background_pixel;
64 PIX_TYPE foreground_pixel;
65 XFontStruct *font;
66 struct face **param_faces;
67 int n_param_faces;
68 struct face **computed_faces;
69 int n_computed_faces;
70 int size_computed_faces;
71};
72
26522841 73extern struct x_output the_only_x_display;
87485d6f
MW
74extern Display *x_current_display;
75
76#define FRAME_PARAM_FACES(f) (the_only_x_display.param_faces)
77#define FRAME_N_PARAM_FACES(f) (the_only_x_display.n_param_faces)
78#define FRAME_DEFAULT_PARAM_FACE(f) (FRAME_PARAM_FACES (f)[0])
79#define FRAME_MODE_LINE_PARAM_FACE(f) (FRAME_PARAM_FACES (f)[1])
80#define FRAME_COMPUTED_FACES(f) (the_only_x_display.computed_faces)
81#define FRAME_N_COMPUTED_FACES(f) (the_only_x_display.n_computed_faces)
82#define FRAME_SIZE_COMPUTED_FACES(f) (the_only_x_display.size_computed_faces)
83#define FRAME_DEFAULT_FACE(f) (the_only_x_display.computed_faces[0])
84#define FRAME_MODE_LINE_FACE(f) (the_only_x_display.computed_faces[1])
85#define FRAME_X_DISPLAY(f) ((Display *) 0)
86#define FRAME_FOREGROUND_PIXEL(f) (the_only_x_display.foreground_pixel)
87#define FRAME_BACKGROUND_PIXEL(f) (the_only_x_display.background_pixel)
88#define FRAME_FONT(f) (the_only_x_display.font)
89
90#define XFreeGC (void)
91#define same_size_fonts(foo,bar) (1)
92#define unload_font(p1,p2)
93#define unload_color(p1,p2)
94#define x_destroy_bitmap(p1,p2)
95#define load_pixmap(p1,p2,p3,p4) (0)
96#define XGetGeometry(p1,p2,p3,p4,p5,p6,p7,p8,p9)
964efc33
RS
97#define DisplayWidth(p1,p2) (selected_frame->width)
98#define DisplayHeight(p1,p2) (selected_frame->height)
87485d6f
MW
99#define XMenuSetAEQ (void)
100#define XMenuSetFreeze (void)
101#define XMenuRecompute (void)
102#define FONT_WIDTH(foo) 1
87485d6f
MW
103#define XM_FAILURE -1
104#define XM_SUCCESS 1
105#define XM_NO_SELECT 2
106#define XM_IA_SELECT 3
107#define ButtonReleaseMask 0
108
109typedef struct x_menu_struct
110{
111 int count;
112 char **text;
113 struct x_menu_struct **submenu;
114 int *panenumber; /* Also used as enable. */
115 int allocated;
116 int panecount;
117 int width;
118} XMenu;
119
cbc07d0a
RS
120XMenu *XMenuCreate (Display *, Window, char *);
121int XMenuAddPane (Display *, XMenu *, char *, int);
122int XMenuAddSelection (Display *, XMenu *, int, int, char *, int);
123void XMenuLocate (Display *, XMenu *, int, int, int, int,
124 int *, int *, int *, int *);
125int XMenuActivate (Display *, XMenu *, int *, int *, int, int, unsigned, char **);
126void XMenuDestroy (Display *, XMenu *);
127
87485d6f
MW
128#endif /* not HAVE_X_WINDOWS */
129
130#endif /* not _MSDOS_H_ */