gnus-art.el (gnus-article-add-buttons): Simplify condition.
[bpt/emacs.git] / src / msdos.h
CommitLineData
1b94449f 1/* MS-DOS specific C utilities, interface.
0b5538bd 2 Copyright (C) 1993, 2001, 2002, 2003, 2004,
5df4f04c 3 2005, 2006, 2007, 2008, 2009, 2010, 2011 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);
7ac5dac9 37void initialize_msdos_display (struct terminal *);
1b94449f
RS
38
39extern int have_mouse;
3a8ce822
EZ
40void mouse_init (void);
41void mouse_on (void);
42void mouse_off (void);
1b94449f 43void mouse_moveto (int, int);
87485d6f
MW
44\f
45#ifndef HAVE_X_WINDOWS
46/* Dummy types. */
47typedef int XFontStruct;
48typedef int GC;
49typedef int Pixmap;
50typedef int Display;
51typedef int Window;
bd5197a4 52typedef int XRectangle;
06f72b3d 53#define PIX_TYPE unsigned long
87485d6f
MW
54#define XDISPLAY
55
28118eb6
EZ
56typedef struct tty_display_info Display_Info;
57
ffd225c4 58extern struct tty_display_info the_only_display_info;
2d764c78 59
87485d6f 60#define FRAME_X_DISPLAY(f) ((Display *) 0)
ffd225c4
EZ
61#define FRAME_FONT(f) ((f)->output_data.tty->font)
62#define FRAME_X_DISPLAY_INFO(f) (&the_only_display_info)
2f950292 63
bd5197a4
EZ
64/* Prototypes. */
65
66/* Forward declarations for prototypes. */
67struct frame;
68struct window;
236027c9 69
236027c9 70/* Defined in xfns.c; emulated on msdos.c */
bd5197a4 71
383e0970
J
72extern void x_set_menu_bar_lines (struct frame *, Lisp_Object, Lisp_Object);
73extern int x_pixel_width (struct frame *);
74extern int x_pixel_height (struct frame *);
bd5197a4 75
87485d6f 76#define XFreeGC (void)
87485d6f 77#define x_destroy_bitmap(p1,p2)
87485d6f 78#define XGetGeometry(p1,p2,p3,p4,p5,p6,p7,p8,p9)
fdbf2e9b
KS
79#define DisplayWidth(p1,p2) (SELECTED_FRAME()->text_cols)
80#define DisplayHeight(p1,p2) (SELECTED_FRAME()->text_lines)
87485d6f
MW
81#define XMenuSetAEQ (void)
82#define XMenuSetFreeze (void)
83#define XMenuRecompute (void)
84#define FONT_WIDTH(foo) 1
87485d6f
MW
85#define XM_FAILURE -1
86#define XM_SUCCESS 1
87#define XM_NO_SELECT 2
88#define XM_IA_SELECT 3
89#define ButtonReleaseMask 0
90
91typedef struct x_menu_struct
92{
93 int count;
94 char **text;
95 struct x_menu_struct **submenu;
96 int *panenumber; /* Also used as enable. */
97 int allocated;
98 int panecount;
99 int width;
9863d8ff 100 char **help_text;
87485d6f
MW
101} XMenu;
102
cbc07d0a
RS
103XMenu *XMenuCreate (Display *, Window, char *);
104int XMenuAddPane (Display *, XMenu *, char *, int);
9863d8ff 105int XMenuAddSelection (Display *, XMenu *, int, int, char *, int, char *);
cbc07d0a
RS
106void XMenuLocate (Display *, XMenu *, int, int, int, int,
107 int *, int *, int *, int *);
9863d8ff 108int XMenuActivate (Display *, XMenu *, int *, int *, int, int, unsigned,
f5c322fc 109 char **, void (*callback)(char *, int, int));
cbc07d0a
RS
110void XMenuDestroy (Display *, XMenu *);
111
87485d6f
MW
112#endif /* not HAVE_X_WINDOWS */
113
102f33d0 114#endif /* not EMACS_MSDOS_H */
ab5796a9 115