Mercurial > emacs
annotate oldXMenu/XMenuInt.h @ 105975:be1ec2846896
2009-11-13 Carsten Dominik <carsten.dominik@gmail.com>
* org.texi: Removed @Ie, @ie, @Eg, @eg macros.
2009-11-13 James TD Smith <ahktenzero@mohorovi.cc>
* org.texi (Column attributes): Add the new age summary operators.
Also, mention the fact you can only use one summary operator per
property.
2009-11-13 John Wiegley <johnw@newartisans.com>
* org.texi (Tracking your habits): Added a new section in the
manual about how to track habits.
(Resolving idle time): Added a section on how idle and
dangling clocks are resolved.
2009-11-13 Carsten Dominik <carsten.dominik@gmail.com>
* org.texi (Agenda commands): Document the new `i' command.
(Inserting deadline/schedule): Document logging changes
of scheduling and deadline times stamps.
(In-buffer settings): Document the in-buffer keywords for logging
changes of scheduling and deadline times stamps.
(Structure editing, Plain lists): Document indentation
cycling in empty entries with TAB.
(Archiving): Document the default archiving command.
(Moving subtrees): Document the new keys for archiving.
(Internal archiving): Fix incorrect key.
(Agenda commands): Document the TODO set switching commands.
(Agenda commands): Document the new archiving keys.
(Clocking work time): Better description on how to save
and restore a clock.
(Resolving idle time): Mention the x11idle program to get true
idleness also under X11.
(Resolving idle time): Use @kbd instead of @key for normal
letters, because this is how he rest of the manual does this.
(Pushing to MobileOrg): Mention that `org-directory'
should be set.
(Agenda commands): Document that SPC is a filter for
any tag.
(Search view): Renamed from "Keyword search".
(Capure): New chapter.
(Markup): New chapter.
(Links in HTML export, Images in HTML export): Extend
the section titles.
(Images in HTML export): Document the align option.
(Text areas in HTML export): Extend the section title.
(Images in LaTeX export): Explain image placement in LaTeX.
author | Carsten Dominik <dominik@science.uva.nl> |
---|---|
date | Fri, 13 Nov 2009 08:39:50 +0000 |
parents | c2500786b8c5 |
children | edf631bdbb7a ec58e5c426ef 5cc91198ffb2 |
rev | line source |
---|---|
25858 | 1 /* Copyright Massachusetts Institute of Technology 1985 */ |
76173
c2500786b8c5
Remove FSF copyright since file does not differ significantly from X11
Glenn Morris <rgm@gnu.org>
parents:
75348
diff
changeset
|
2 |
c2500786b8c5
Remove FSF copyright since file does not differ significantly from X11
Glenn Morris <rgm@gnu.org>
parents:
75348
diff
changeset
|
3 #include "copyright.h" |
c2500786b8c5
Remove FSF copyright since file does not differ significantly from X11
Glenn Morris <rgm@gnu.org>
parents:
75348
diff
changeset
|
4 |
25858 | 5 |
6 /* | |
7 * XMenu: MIT Project Athena, X Window system menu package | |
8 * | |
9 * XMenuInternal.h - Internal menu system include file for the | |
10 * MIT Project Athena XMenu X window system | |
11 * menu package. | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
12 * |
25858 | 13 * Author: Tony Della Fera, DEC |
14 * October, 1985 | |
15 */ | |
16 | |
17 #ifndef _XMenuInternal_h_ | |
18 #define _XMenuInternal_h_ | |
19 | |
20 /* Avoid warnings about redefining NULL by including <stdio.h> first; | |
21 the other file which wants to define it (<stddef.h> on Ultrix | |
22 systems) can deal if NULL is already defined, but <stdio.h> can't. */ | |
23 #include <stdio.h> | |
24 #include <X11/Xlib.h> | |
25 #include "X10.h" | |
26 #include "XMenu.h" | |
27 | |
28 #define min(x, y) ((x) <= (y) ? (x) : (y)) | |
29 #define max(x, y) ((x) >= (y) ? (x) : (y)) | |
30 #define abs(a) ((a) < 0 ? -(a) : (a)) | |
31 | |
32 #define _X_FAILURE -1 | |
33 | |
34 #define _SUCCESS 1 | |
35 #define _FAILURE -1 | |
36 | |
37 /* | |
38 * XMenu internal event handler variable. | |
39 */ | |
40 extern int (*_XMEventHandler)(); | |
41 | |
42 #ifndef Pixel | |
43 #define Pixel unsigned long | |
44 #endif | |
45 | |
46 /* | |
47 * Internal routine declarations. | |
48 */ | |
49 int _XMWinQueInit(); /* No value actually returned. */ | |
50 int _XMWinQueAddPane(); | |
51 int _XMWinQueAddSelection(); | |
52 int _XMWinQueFlush(); | |
53 XMPane *_XMGetPanePtr(); | |
54 XMSelect *_XMGetSelectionPtr(); | |
55 int _XMRecomputeGlobals(); /* No value actually returned. */ | |
56 int _XMRecomputePane(); | |
57 int _XMRecomputeSelection(); | |
58 int _XMTransToOrigin(); /* No value actually returned. */ | |
59 int _XMRefreshPane(); /* No value actually returned. */ | |
60 int _XMRefreshSelections(); /* No value actually returned. */ | |
61 int _XMHighlightSelection(); /* No value actually returned. */ | |
62 | |
63 #endif | |
64 /* Don't add stuff after this #endif */ | |
52401 | 65 |
66 /* arch-tag: 00640af1-9386-48b5-a4be-35620b8cd3aa | |
67 (do not change this comment) */ |