Mercurial > emacs
annotate src/s/hpux.h @ 1717:aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
`has_vertical_scrollbars'.
(FRAME_CAN_HAVE_SCROLLBARS, FRAME_HAS_VERTICAL_SCROLLBARS): New
accessors, for both the MULTI_FRAME and non-MULTI_FRAME.
(VERTICAL_SCROLLBAR_WIDTH, WINDOW_VERTICAL_SCROLLBAR,
WINDOW_VERTICAL_SCROLLBAR_COLUMN,
WINDOW_VERTICAL_SCROLLBAR_HEIGHT): New macros.
* window.h (struct window): New field `vertical_scrollbar'.
* xterm.h (struct x_display): vertical_scrollbars,
judge_timestamp, vertical_scrollbar_extra: New fields.
(struct scrollbar): New struct.
(VERTICAL_SCROLLBAR_PIXEL_WIDTH, VERTICAL_SCROLLBAR_PIXEL_HEIGHT,
VERTICAL_SCROLLBAR_LEFT_BORDER, VERTICAL_SCROLLBAR_RIGHT_BORDER,
VERTICAL_SCROLLBAR_TOP_BORDER, VERTICAL_SCROLLBAR_BOTTOM_BORDER,
CHAR_TO_PIXEL_WIDTH, CHAR_TO_PIXEL_HEIGHT, PIXEL_TO_CHAR_WIDTH,
PIXEL_TO_CHAR_HEIGHT): New accessors and macros.
* frame.c (make_frame): Initialize the `can_have_scrollbars' and
`has_vertical_scrollbars' fields of the frame.
* term.c (term_init): Note that TERMCAP terminals don't support
scrollbars.
(mouse_position_hook): Document new args.
(set_vertical_scrollbar_hook, condemn_scrollbars_hook,
redeem_scrollbar_hook, judge_scrollbars_hook): New hooks.
* termhooks.h: Declare and document them.
(enum scrollbar_part): New type.
(struct input_event): Describe the new form of the scrollbar_click
event type. Change `part' from a Lisp_Object to an enum
scrollbar_part. Add a new field `scrollbar'.
* keyboard.c (kbd_buffer_get_event): Pass appropriate new
parameters to *mouse_position_hook, and make_lispy_movement.
* xfns.c (x_set_vertical_scrollbar): New function.
(x_figure_window_size): Use new macros to calculate frame size.
(Fx_create_frame): Note that X Windows frames do support scroll
bars. Default to "yes".
* xterm.c: #include <X11/cursorfont.h> and "window.h".
(x_vertical_scrollbar_cursor): New variable.
(x_term_init): Initialize it.
(last_mouse_bar, last_mouse_bar_frame, last_mouse_part,
last_mouse_scroll_range_start, last_mouse_scroll_range_end): New
variables.
(XTmouse_position): Use them to return scrollbar movement events.
Take new arguments, for that purpose.
(x_window_to_scrollbar, x_scrollbar_create,
x_scrollbar_set_handle, x_scrollbar_remove, x_scrollbar_move,
XTset_scrollbar, XTcondemn_scrollbars, XTredeem_scrollbar,
XTjudge_scrollbars, x_scrollbar_expose,
x_scrollbar_background_expose, x_scrollbar_handle_click,
x_scrollbar_handle_motion): New functions to implement scrollbars.
(x_term_init): Set the termhooks.h hooks to point to them.
(x_set_window_size): Use new macros to calculate frame size. Set
vertical_scrollbar_extra field.
(x_make_frame_visible): Use the frame accessor
FRAME_HAS_VERTICAL_SCROLLBARS to decide if we need to map the
frame's subwindows as well.
(XTread_socket): Use new size-calculation macros from xterm.h when
processing ConfigureNotify events.
(x_wm_set_size_hint): Use PIXEL_TO_CHAR_WIDTH and
PIXEL_TO_CHAR_HEIGHT macros.
* ymakefile (xdisp.o): This now depends on termhooks.h.
(xterm.o): This now depends on window.h.
| author | Jim Blandy <jimb@redhat.com> |
|---|---|
| date | Thu, 24 Dec 1992 06:17:18 +0000 |
| parents | a40107cc6486 |
| children | 6c044c8796dd |
| rev | line source |
|---|---|
| 456 | 1 /* Definitions file for GNU Emacs running on HPUX release 7.0. |
| 2 Based on AT&T System V.2. | |
| 3 Copyright (C) 1985, 1986 Free Software Foundation, Inc. | |
| 4 | |
| 5 This file is part of GNU Emacs. | |
| 6 | |
| 7 GNU Emacs is free software; you can redistribute it and/or modify | |
| 8 it under the terms of the GNU General Public License as published by | |
| 9 the Free Software Foundation; either version 1, or (at your option) | |
| 10 any later version. | |
| 11 | |
| 12 GNU Emacs is distributed in the hope that it will be useful, | |
| 13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 15 GNU General Public License for more details. | |
| 16 | |
| 17 You should have received a copy of the GNU General Public License | |
| 18 along with GNU Emacs; see the file COPYING. If not, write to | |
| 19 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
| 20 | |
| 21 | |
| 22 /* | |
| 23 * Define symbols to identify the version of Unix this is. | |
| 24 * Define all the symbols that apply correctly. | |
| 25 */ | |
| 26 | |
| 27 #define USG /* System III, System V, etc */ | |
| 28 | |
| 29 #define USG5 | |
| 30 | |
| 31 #define HPUX | |
| 32 | |
| 33 /* SYSTEM_TYPE should indicate the kind of system you are using. | |
| 34 It sets the Lisp variable system-type. */ | |
| 35 | |
| 36 #define SYSTEM_TYPE "hpux" | |
| 37 | |
| 38 /* `nomultiplejobs' should be defined if your system's shell | |
| 39 does not have "job control" (the ability to stop a program, | |
| 40 run some other program, then continue the first one). | |
| 41 | |
| 42 On hpux this depends on the precise kind of machine in use, | |
| 43 so the m- file defines this symbol if appropriate. */ | |
| 44 | |
| 45 /* Default is to set interrupt_input to 0: don't do input buffering within Emacs */ | |
| 46 | |
| 47 /* #define INTERRUPT_INPUT */ | |
| 48 | |
| 49 /* Letter to use in finding device name of first pty, | |
| 50 if system supports pty's. 'p' means it is /dev/ptym/ptyp0 */ | |
| 51 | |
| 52 #define FIRST_PTY_LETTER 'p' | |
| 53 | |
| 54 /* | |
| 55 * Define HAVE_TERMIO if the system provides sysV-style ioctls | |
| 56 * for terminal control. | |
| 57 */ | |
| 58 | |
| 59 #define HAVE_TERMIO | |
| 60 | |
| 61 /* Says to include time.h, and not include sys/time.h. */ | |
| 62 | |
| 63 #define NEED_TIME_H | |
| 64 | |
| 65 /* | |
| 66 * Define HAVE_TIMEVAL if the system supports the BSD style clock values. | |
| 67 * Look in <sys/time.h> for a timeval structure. | |
| 68 */ | |
| 69 | |
| 70 #define HAVE_TIMEVAL | |
| 71 | |
| 72 /* With HAVE_TIMEVAL define, Emacs expects to use `utimes'. | |
| 73 But HPUX does not have one. */ | |
| 74 | |
| 75 #define MISSING_UTIMES | |
| 76 | |
| 77 /* | |
| 78 * Define HAVE_SELECT if the system supports the `select' system call. | |
| 79 */ | |
| 80 | |
| 81 #define HAVE_SELECT | |
| 82 | |
| 83 /* | |
| 84 * Define HAVE_PTYS if the system supports pty devices. | |
| 85 */ | |
| 86 | |
| 87 #define HAVE_PTYS | |
| 88 | |
| 89 /* Define HAVE_SOCKETS if system supports 4.2-compatible sockets. */ | |
| 90 | |
| 91 #define HAVE_SOCKETS | |
| 92 | |
| 93 /* | |
| 94 * Define NONSYSTEM_DIR_LIBRARY to make Emacs emulate | |
| 95 * The 4.2 opendir, etc., library functions. | |
| 96 */ | |
| 97 | |
| 98 /* #define NONSYSTEM_DIR_LIBRARY */ | |
| 99 | |
| 100 /* Define this symbol if your system has the functions bcopy, etc. | |
| 101 * s800 and later versions of s300 (s200) kernels have equivilents | |
| 102 * of the BSTRING functions of BSD. If your s200 kernel doesn't have | |
| 103 * em comment out this section. | |
| 104 */ | |
| 105 | |
| 106 #define BSTRING | |
| 107 | |
| 108 /* subprocesses should be defined if you want to | |
| 109 have code for asynchronous subprocesses | |
| 110 (as used in M-x compile and M-x shell). | |
| 111 This is generally OS dependent, and not supported | |
| 112 under most USG systems. */ | |
| 113 | |
| 114 #define subprocesses | |
| 115 | |
| 116 /* If your system uses COFF (Common Object File Format) then define the | |
| 117 preprocessor symbol "COFF". */ | |
| 118 | |
| 119 /* #define COFF */ | |
| 120 | |
| 121 /* define MAIL_USE_FLOCK if the mailer uses flock | |
| 122 to interlock access to /usr/spool/mail/$USER. | |
| 123 The alternative is that a lock file named | |
| 124 /usr/spool/mail/$USER.lock. */ | |
| 125 | |
| 126 /* #define MAIL_USE_FLOCK */ | |
| 127 | |
| 128 /* Say we have the SYSV style of interprocess communication. */ | |
| 129 | |
| 130 #define HAVE_SYSVIPC | |
| 131 | |
| 132 /* Define CLASH_DETECTION if you want lock files to be written | |
| 133 so that Emacs can tell instantly when you try to modify | |
| 134 a file that someone else has modified in his Emacs. */ | |
| 135 | |
| 545 | 136 #define CLASH_DETECTION |
| 456 | 137 |
| 138 /* Define SHORTNAMES if the C compiler can distinguish only | |
| 139 short names. It means that the stuff in ../shortnames | |
| 140 must be run to convert the long names to short ones. | |
| 141 | |
| 142 Some USG systems support long names. | |
| 143 If yours is one, DO NOT change this file! | |
| 144 Do #undef SHORTNAMES in the m- file or in config.h. */ | |
| 145 | |
| 146 /* #define SHORTNAMES */ | |
| 147 | |
| 148 /* We use the Berkeley (and usg5.2.2) interface to nlist. */ | |
| 149 | |
| 150 #define NLIST_STRUCT | |
| 151 | |
| 152 /* The file containing the kernel's symbol table is called /hp-ux. */ | |
| 153 | |
| 154 #define KERNEL_FILE "/hp-ux" | |
| 155 | |
| 156 /* The symbol in the kernel where the load average is found | |
| 157 depends on the cpu type, so we let the m- files define LDAV_SYMBOL. */ | |
| 158 | |
| 159 /* Special hacks needed to make Emacs run on this system. */ | |
| 160 | |
| 161 /* | |
| 162 * Make the sigsetmask function go away. Don't know what the | |
| 163 * ramifications of this are, but doesn't seem possible to | |
| 164 * emulate it properly anyway at this point. | |
| 165 */ | |
| 166 | |
| 167 /* HPUX has sigsetmask */ | |
| 168 /* #define sigsetmask(mask) / * Null expansion * / */ | |
| 169 | |
| 170 /* setjmp and longjmp can safely replace _setjmp and _longjmp, | |
| 171 but they will run slower. */ | |
| 172 | |
| 173 /* HP-UX has _setjmp and _longjmp */ | |
| 174 /* | |
| 175 #define _setjmp setjmp | |
| 176 #define _longjmp longjmp | |
| 177 */ | |
| 178 | |
| 179 /* On USG systems the system calls are interruptable by signals | |
| 180 that the user program has elected to catch. Thus the system call | |
| 181 must be retried in these cases. To handle this without massive | |
| 182 changes in the source code, we remap the standard system call names | |
| 183 to names for our own functions in sysdep.c that do the system call | |
| 184 with retries. */ | |
| 185 | |
| 186 #define read sys_read | |
| 187 #define open sys_open | |
| 188 #define write sys_write | |
| 189 | |
| 190 #define INTERRUPTIBLE_OPEN | |
| 191 #define INTERRUPTIBLE_IO | |
| 192 | |
| 193 /* Use the system provided termcap(3) library */ | |
| 194 #define TERMINFO | |
| 195 | |
| 196 /* The 48-bit versions are more winning for Emacs. */ | |
| 197 | |
| 198 #define rand lrand48 | |
| 199 #define srand srand48 | |
| 200 | |
| 201 /* In hpux, the symbol SIGIO is defined, but the feature | |
| 625 | 202 doesn't work in the way Emacs needs it to. |
| 456 | 203 |
| 204 Here we assume that signal.h is included before config.h | |
| 205 so that we can override it here. */ | |
| 206 | |
| 207 #undef SIGIO | |
| 208 | |
| 209 /* USG systems tend to put everything declared static | |
| 210 into the initialized data area, which becomes pure after dumping Emacs. | |
| 211 Foil this. Emacs carefully avoids static vars inside functions. */ | |
| 212 | |
| 213 #define static | |
| 214 | |
| 215 /* Define extra libraries to load. | |
| 216 This should have -lBSD, but that library is said to make | |
| 217 `signal' fail to work. */ | |
| 218 | |
| 219 #ifdef HPUX_NET | |
| 220 #define LIBS_SYSTEM -ln | |
| 221 #else | |
| 222 #define LIBS_SYSTEM | |
| 223 #endif | |
| 224 | |
| 225 /* Some additional system facilities exist. */ | |
| 226 | |
| 227 #define HAVE_DUP2 | |
| 228 #define HAVE_GETTIMEOFDAY | |
|
1492
a40107cc6486
(HAVE_GETHOSTNAME): Define it.
Richard M. Stallman <rms@gnu.org>
parents:
625
diff
changeset
|
229 |
|
a40107cc6486
(HAVE_GETHOSTNAME): Define it.
Richard M. Stallman <rms@gnu.org>
parents:
625
diff
changeset
|
230 /* Implementation of uname is broken on hpux. Use gethostname. */ |
|
a40107cc6486
(HAVE_GETHOSTNAME): Define it.
Richard M. Stallman <rms@gnu.org>
parents:
625
diff
changeset
|
231 #define HAVE_GETHOSTNAME |
|
a40107cc6486
(HAVE_GETHOSTNAME): Define it.
Richard M. Stallman <rms@gnu.org>
parents:
625
diff
changeset
|
232 |
| 456 | 233 #define HAVE_VFORK |
| 234 #define HAVE_PERROR /* Delete this line for version 6. */ | |
| 621 | 235 #define HAVE_RENAME |
| 456 | 236 |
| 237 /* The following maps shared exec file to demand loaded exec. | |
| 238 Don't do this as demand loaded exec is broken in hpux. */ | |
| 239 | |
| 240 #if 0 | |
| 241 | |
| 242 /* Adjust a header field for the executable file about to be dumped. */ | |
| 243 | |
| 244 #define ADJUST_EXEC_HEADER \ | |
| 245 hdr.a_magic = ((ohdr.a_magic.file_type == OLDMAGIC.file_type) ? \ | |
| 246 NEWMAGIC : ohdr.a_magic); | |
| 247 | |
| 248 #endif | |
| 249 | |
| 250 /* Baud-rate values in tty status have nonstandard meanings. */ | |
| 251 | |
| 252 #define BAUD_CONVERT \ | |
| 253 { 0, 50, 75, 110, 135, 150, 200, 300, 600, 900, 1200, \ | |
| 254 1800, 2400, 3600, 4800, 7200, 9600, 19200, 38400 } | |
| 255 | |
| 256 /* This is needed for HPUX version 6.2; it may not be needed for 6.2.1. */ | |
| 257 #define SHORT_CAST_BUG | |
| 258 | |
| 259 /* This is how to get the device name of the tty end of a pty. */ | |
| 260 #define PTY_TTY_NAME_SPRINTF \ | |
| 621 | 261 sprintf (pty_name, "/dev/pty/tty%c%x", c, i); |
| 456 | 262 |
| 263 /* This is how to get the device name of the control end of a pty. */ | |
| 264 #define PTY_NAME_SPRINTF \ | |
| 621 | 265 sprintf (pty_name, "/dev/ptym/pty%c%x", c, i); |
