Mercurial > emacs
annotate src/msdos.h @ 10811:7f9e55cdc349
(set-fill-prefix): start from left-margin.
(fill-region-as-paragraph): don't delete hard newlines. ignore whitespace
at beginning of region. Remove justification indentation.
(fill-region): Don't use paragraph-movement commands when use-hard-newlines
is true, just search for hard newlines.
(current-justification): take care at EOB.
(set-justification): new argWHOLE-PAR. Callers changed.
(justify-current-line): Error if JUSTIFY arg is not reasonable.
Better interaction if there is a fill-prefix.
"Line too long" warning removed.
(unjustify-current-line, unjustify-region): New functions.
author | Boris Goldowsky <boris@gnu.org> |
---|---|
date | Thu, 23 Feb 1995 18:22:04 +0000 |
parents | 4d94f31dc555 |
children | 84916366643e |
rev | line source |
---|---|
5503 | 1 /* MS-DOS specific C utilities, interface. |
2 Copyright (C) 1993 Free Software Foundation, Inc. | |
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 | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
9572 | 20 #ifndef _MSDOS_H_ |
21 #define _MSDOS_H_ | |
22 | |
5503 | 23 #include <dpmi.h> |
24 | |
25 int dos_ttraw (); | |
26 int dos_ttcooked (); | |
27 int getdefdir (int, char*); | |
28 void unixtodos_filename (char *); | |
29 void dostounix_filename (char *); | |
30 void sleep_or_kbd_hit (int, int); | |
7822
17b96e349369
Add template for rootrelativepath.
Richard M. Stallman <rms@gnu.org>
parents:
7604
diff
changeset
|
31 char *rootrelativepath (char *); |
5503 | 32 void init_environment (); |
33 void internal_terminal_init (); | |
9572 | 34 #ifdef _stdio_h_ |
5503 | 35 int internal_flush (FILE *); |
36 #endif | |
37 void ctrl_break_func (_go32_dpmi_registers *); | |
38 void install_ctrl_break_check (); | |
39 | |
40 extern int have_mouse; | |
41 int mouse_init1 (); | |
42 void mouse_init (); | |
43 void mouse_on (); | |
44 void mouse_off (); | |
45 void mouse_moveto (int, int); | |
46 void mouse_check_moved (); | |
47 int mouse_pressed (int, int *, int *); | |
48 int mouse_released (int, int *, int *); | |
7604
caae041f9b9e
Add template for init_gettimeofday.
Richard M. Stallman <rms@gnu.org>
parents:
5503
diff
changeset
|
49 void init_gettimeofday (); |
9572 | 50 |
51 #ifndef HAVE_X_WINDOWS | |
52 /* Dummy types. */ | |
53 typedef int XFontStruct; | |
54 typedef int GC; | |
55 typedef int Pixmap; | |
56 typedef int Display; | |
57 typedef int Window; | |
58 #define PIX_TYPE int | |
59 #define XDISPLAY | |
60 | |
61 /* This is a cut-down version of the one in xterm.h, which see. */ | |
62 struct x_display | |
63 { | |
64 int left_pos; | |
65 int top_pos; | |
66 int line_height; | |
67 PIX_TYPE background_pixel; | |
68 PIX_TYPE foreground_pixel; | |
69 XFontStruct *font; | |
70 struct face **param_faces; | |
71 int n_param_faces; | |
72 struct face **computed_faces; | |
73 int n_computed_faces; | |
74 int size_computed_faces; | |
75 }; | |
76 | |
77 extern struct x_display the_only_x_display; | |
78 extern Display *x_current_display; | |
79 | |
80 #define FRAME_PARAM_FACES(f) (the_only_x_display.param_faces) | |
81 #define FRAME_N_PARAM_FACES(f) (the_only_x_display.n_param_faces) | |
82 #define FRAME_DEFAULT_PARAM_FACE(f) (FRAME_PARAM_FACES (f)[0]) | |
83 #define FRAME_MODE_LINE_PARAM_FACE(f) (FRAME_PARAM_FACES (f)[1]) | |
84 #define FRAME_COMPUTED_FACES(f) (the_only_x_display.computed_faces) | |
85 #define FRAME_N_COMPUTED_FACES(f) (the_only_x_display.n_computed_faces) | |
86 #define FRAME_SIZE_COMPUTED_FACES(f) (the_only_x_display.size_computed_faces) | |
87 #define FRAME_DEFAULT_FACE(f) (the_only_x_display.computed_faces[0]) | |
88 #define FRAME_MODE_LINE_FACE(f) (the_only_x_display.computed_faces[1]) | |
89 #define FRAME_X_DISPLAY(f) ((Display *) 0) | |
90 #define FRAME_FOREGROUND_PIXEL(f) (the_only_x_display.foreground_pixel) | |
91 #define FRAME_BACKGROUND_PIXEL(f) (the_only_x_display.background_pixel) | |
92 #define FRAME_FONT(f) (the_only_x_display.font) | |
93 | |
94 #define XFreeGC (void) | |
95 #define same_size_fonts(foo,bar) (1) | |
96 #define unload_font(p1,p2) | |
97 #define unload_color(p1,p2) | |
98 #define x_destroy_bitmap(p1,p2) | |
99 #define load_pixmap(p1,p2,p3,p4) (0) | |
100 #define XGetGeometry(p1,p2,p3,p4,p5,p6,p7,p8,p9) | |
101 #define DisplayWidth(p1,p2) (the_only_frame.width) | |
102 #define DisplayHeight(p1,p2) (the_only_frame.height) | |
103 #define XMenuSetAEQ (void) | |
104 #define XMenuSetFreeze (void) | |
105 #define XMenuRecompute (void) | |
106 #define FONT_WIDTH(foo) 1 | |
107 /* Function `getcbrk' is the most harmless I can think of right now... */ | |
108 #define check_x if (FRAME_TERMCAP_P (bar)) error ("Not running under a windows system."); else getcbrk | |
10503
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
109 #define x_mouse_leave getcbrk |
9572 | 110 #define XM_FAILURE -1 |
111 #define XM_SUCCESS 1 | |
112 #define XM_NO_SELECT 2 | |
113 #define XM_IA_SELECT 3 | |
114 #define ButtonReleaseMask 0 | |
115 | |
116 typedef struct x_menu_struct | |
117 { | |
118 int count; | |
119 char **text; | |
120 struct x_menu_struct **submenu; | |
121 int *panenumber; /* Also used as enable. */ | |
122 int allocated; | |
123 int panecount; | |
124 int width; | |
125 } XMenu; | |
126 | |
10503
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
127 XMenu *XMenuCreate (Display *, Window, char *); |
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
128 int XMenuAddPane (Display *, XMenu *, char *, int); |
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
129 int XMenuAddSelection (Display *, XMenu *, int, int, char *, int); |
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
130 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
|
131 int *, int *, int *, int *); |
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
132 int XMenuActivate (Display *, XMenu *, int *, int *, int, int, unsigned, char **); |
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
133 void XMenuDestroy (Display *, XMenu *); |
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
134 |
9572 | 135 #endif /* not HAVE_X_WINDOWS */ |
136 | |
137 #endif /* not _MSDOS_H_ */ |