Cleanup fallout from redesigning mouse highlight.
[bpt/emacs.git] / src / msdos.h
CommitLineData
1b94449f 1/* MS-DOS specific C utilities, interface.
0b5538bd 2 Copyright (C) 1993, 2001, 2002, 2003, 2004,
114f9c96 3 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
1b94449f
RS
4
5This file is part of GNU Emacs.
6
b9b1cc14 7GNU Emacs is free software: you can redistribute it and/or modify
1b94449f 8it under the terms of the GNU General Public License as published by
b9b1cc14
GM
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
1b94449f
RS
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
b9b1cc14 18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
1b94449f 19
102f33d0
EZ
20#ifndef EMACS_MSDOS_H
21#define EMACS_MSDOS_H
87485d6f 22
1b94449f
RS
23#include <dpmi.h>
24
ffd225c4 25int dos_ttraw (struct tty_display_info *);
3a8ce822 26int dos_ttcooked (void);
8a7b1700
KS
27int dos_get_saved_screen (char **, int *, int *);
28int dos_set_keyboard (int, int);
9a4a6c03 29void dos_set_window_size (int *, int *);
8a7b1700 30
1b94449f
RS
31int getdefdir (int, char*);
32void unixtodos_filename (char *);
33void dostounix_filename (char *);
af1b066b 34char *rootrelativepath (char *);
3a8ce822
EZ
35void init_environment (int, char **, int);
36void internal_terminal_init (void);
1b94449f
RS
37
38extern int have_mouse;
3a8ce822
EZ
39void mouse_init (void);
40void mouse_on (void);
41void mouse_off (void);
1b94449f 42void mouse_moveto (int, int);
87485d6f
MW
43\f
44#ifndef HAVE_X_WINDOWS
45/* Dummy types. */
46typedef int XFontStruct;
47typedef int GC;
48typedef int Pixmap;
49typedef int Display;
50typedef int Window;
bd5197a4 51typedef int XRectangle;
06f72b3d 52#define PIX_TYPE unsigned long
87485d6f
MW
53#define XDISPLAY
54
28118eb6
EZ
55typedef struct tty_display_info Display_Info;
56
ffd225c4 57extern struct tty_display_info the_only_display_info;
2d764c78 58
87485d6f 59#define FRAME_X_DISPLAY(f) ((Display *) 0)
ffd225c4
EZ
60#define FRAME_FONT(f) ((f)->output_data.tty->font)
61#define FRAME_X_DISPLAY_INFO(f) (&the_only_display_info)
2f950292 62
bd5197a4
EZ
63/* Prototypes. */
64
65/* Forward declarations for prototypes. */
66struct frame;
67struct window;
236027c9 68
236027c9 69/* Defined in xfns.c; emulated on msdos.c */
bd5197a4 70
383e0970
J
71extern void x_set_menu_bar_lines (struct frame *, Lisp_Object, Lisp_Object);
72extern int x_pixel_width (struct frame *);
73extern int x_pixel_height (struct frame *);
bd5197a4 74
87485d6f 75#define XFreeGC (void)
87485d6f 76#define x_destroy_bitmap(p1,p2)
87485d6f 77#define XGetGeometry(p1,p2,p3,p4,p5,p6,p7,p8,p9)
fdbf2e9b
KS
78#define DisplayWidth(p1,p2) (SELECTED_FRAME()->text_cols)
79#define DisplayHeight(p1,p2) (SELECTED_FRAME()->text_lines)
87485d6f
MW
80#define XMenuSetAEQ (void)
81#define XMenuSetFreeze (void)
82#define XMenuRecompute (void)
83#define FONT_WIDTH(foo) 1
87485d6f
MW
84#define XM_FAILURE -1
85#define XM_SUCCESS 1
86#define XM_NO_SELECT 2
87#define XM_IA_SELECT 3
88#define ButtonReleaseMask 0
89
90typedef struct x_menu_struct
91{
92 int count;
93 char **text;
94 struct x_menu_struct **submenu;
95 int *panenumber; /* Also used as enable. */
96 int allocated;
97 int panecount;
98 int width;
9863d8ff 99 char **help_text;
87485d6f
MW
100} XMenu;
101
cbc07d0a
RS
102XMenu *XMenuCreate (Display *, Window, char *);
103int XMenuAddPane (Display *, XMenu *, char *, int);
9863d8ff 104int XMenuAddSelection (Display *, XMenu *, int, int, char *, int, char *);
cbc07d0a
RS
105void XMenuLocate (Display *, XMenu *, int, int, int, int,
106 int *, int *, int *, int *);
9863d8ff 107int XMenuActivate (Display *, XMenu *, int *, int *, int, int, unsigned,
f5c322fc 108 char **, void (*callback)(char *, int, int));
cbc07d0a
RS
109void XMenuDestroy (Display *, XMenu *);
110
87485d6f
MW
111#endif /* not HAVE_X_WINDOWS */
112
102f33d0 113#endif /* not EMACS_MSDOS_H */
ab5796a9
MB
114
115/* arch-tag: ad21eeed-8fdb-4357-8007-36368a6bdbf3
116 (do not change this comment) */