Mercurial > hg > xemacs-beta
annotate src/ExternalClient.h @ 1346:01c57eb70ae9
[xemacs-hg @ 2003-03-09 02:27:27 by ben]
To: xemacs-patches@xemacs.org
i.c: Sleep between calls to check for I/O, since these calls are non-blocking.
behavior.el: Allow other keywords for forward compatibility.
cl-macs.el: Rewrite to eliminate byte-compiler warning when `return' is used
without `finally'.
cmdloop.el: Avoid truncated error messages for `end-of-file' and the like.
cmdloop.el: Avoid char-int error after syncing.
files.el: Eliminate byte-compile warnings.
printer.el: Fix line-width calculations.
#### This used to work. Someone's changes (perhaps by
Michael Sperber?) seem to have messed something up.
simple.el: Use new clear-left-side functions to avoid messages ending up on
the same line as other output.
xemacs.mak: Add override for info/ as well when separate source/build dirs.
xemacs.mak: Order sections in main build process and add comments. Add
additional dependencies to try and prevent later steps from
happening when failures in earlier steps have occurred.
Makefile.in.in: Order sections in main build process and add comments. Add
additional dependencies to try and prevent later steps from
happening when failures in earlier steps have occurred.
alloc.c: Don't arbitrarily clear Vconfigure_info_directory since it
messes up separate build/source dirs.
console.c, console.h, device-msw.c, device.c: Add accidentally omitted msprinter console and data descriptions.
print.c, console-msw.c: Add clear-left-side functionality to help keep stdio/stderr
output from separate sources on separate lines. Generalize
the different kinds of debugging output. Add dpa().
profile.c: Add better docs on Unix/Windows differences.
regex.c: Fix problems with rel-alloc compilation caused by previous patch.
emacs.c: Seg fault rather than abort on Cygwin, since gdb doesn't trap
aborts properly.
console-gtk-impl.h, console-gtk.h, console-msw.h, console-x-impl.h, console-x.h, dialog-gtk.c, dialog-x.c, event-msw.c, frame-gtk.c, frame-x.c, frameslots.h, glyphs-gtk.c, glyphs-x.c, gui-gtk.c, gui-x.c, inline.c, menubar-gtk.c, menubar-msw.c, menubar-x.c, scrollbar-gtk.c, scrollbar-x.c, ui-gtk.c: Delete popup-data object. Delete menubar_data field from frames,
since its usage is frame-specific. Delete menubar-msw.h,
gui-x.h, gui-gtk.h. Clean up handling of lwlib callback data
GCPRO'ing and add missing GCPRO recomputation in widget code.
author | ben |
---|---|
date | Sun, 09 Mar 2003 02:27:46 +0000 |
parents | 74fd4e045ea6 |
children | 697ef44129c6 2aa9cd456ae7 |
rev | line source |
---|---|
0 | 1 /* External client widget external header file. |
2 Copyright (C) 1993, 1994 Sun Microsystems, Inc. | |
3 | |
4 This library is free software; you can redistribute it and/or | |
5 modify it under the terms of the GNU Library General Public | |
6 License as published by the Free Software Foundation; either | |
7 version 2 of the License, or (at your option) any later version. | |
8 | |
9 This library is distributed in the hope that it will be useful, | |
10 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
12 Library General Public License for more details. | |
13 | |
14 You should have received a copy of the GNU Library General Public | |
15 License along with this library; if not, write to | |
16 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
17 Boston, MA 02111-1307, USA. */ | |
18 | |
19 /* Synched up with: Not in FSF. */ | |
20 | |
21 /* Written by Ben Wing. */ | |
22 | |
398 | 23 #ifndef INCLUDED_ExternalClient_h_ |
24 #define INCLUDED_ExternalClient_h_ | |
0 | 25 |
26 #ifndef XtNshellTimeout | |
27 #define XtNshellTimeout "shellTimeout" | |
28 #endif | |
29 #ifndef XtCShellTimeout | |
30 #define XtCShellTimeout "ShellTimeout" | |
31 #endif | |
32 | |
33 #ifndef XtNdeadShell | |
34 #define XtNdeadShell "deadShell" | |
35 #endif | |
36 #ifndef XtCDeadShell | |
37 #define XtCDeadShell "DeadShell" | |
38 #endif | |
39 | |
40 #ifndef XtNemacsProcID | |
41 #define XtNemacsProcID "emacsProcID" | |
42 #endif | |
43 #ifndef XtCEmacsProcID | |
44 #define XtCEmacsProcID "EmacsProcID" | |
45 #endif | |
46 | |
47 #ifndef XtNshellReadyCallback | |
48 #define XtNshellReadyCallback "shellReadyCallback" | |
49 #endif | |
50 | |
51 #ifndef XtNshellName | |
52 #define XtNshellName "shellName" | |
53 #endif | |
54 #ifndef XtCShellName | |
55 #define XtCShellName "ShellName" | |
56 #endif | |
57 | |
58 #ifndef XtNuseToolTalk | |
59 #define XtNuseToolTalk "useToolTalk" | |
60 #endif | |
61 #ifndef XtCUseToolTalk | |
62 #define XtCUseToolTalk "UseToolTalk" | |
63 #endif | |
64 | |
65 typedef struct _ExternalClientClassRec *ExternalClientWidgetClass; | |
66 typedef struct _ExternalClientRec *ExternalClientWidget; | |
67 extern WidgetClass externalClientWidgetClass; | |
68 | |
69 /* External entry points when using direct Xlib */ | |
70 | |
71 void ExternalClientInitialize (Display *display, Window win); | |
72 void ExternalClientEventHandler (Display *display, Window win, XEvent *event); | |
73 | |
398 | 74 #endif /* INCLUDED_ExternalClient_h_ */ |