annotate src/balloon_help.h @ 388:aabb7f5b1c81 r21-2-9

Import from CVS: tag r21-2-9
author cvs
date Mon, 13 Aug 2007 11:09:42 +0200
parents c5d627a313b1
children 74fd4e045ea6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
136
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
1 /* Balloon Help
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
2 Copyright (c) 1997 Douglas Keller
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
3
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
4 This file is part of XEmacs.
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
5
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
6 XEmacs is free software; you can redistribute it and/or modify it
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
7 under the terms of the GNU General Public License as published by the
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
8 Free Software Foundation; either version 2, or (at your option) any
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
9 later version.
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
10
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
14 for more details.
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
15
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
16 You should have received a copy of the GNU General Public License
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
17 along with XEmacs; see the file COPYING. If not, write to
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
19 Boston, MA 02111-1307, USA. */
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
20
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
21 /* Synched up with: Not in FSF. */
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
22
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents:
diff changeset
23 #ifndef BALLOON_HELP_H
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents:
diff changeset
24 #define BALLOON_HELP_H
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents:
diff changeset
25
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 203
diff changeset
26 #include "xintrinsic.h"
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents:
diff changeset
27
136
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
28 void balloon_help_create (Display* dpy,
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents:
diff changeset
29 Pixel fg, Pixel bg, Pixel shine, Pixel shadow,
136
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
30 XFontStruct* font);
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
31 void balloon_help_set_delay (unsigned long milliseconds);
203
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 136
diff changeset
32 void balloon_help_show (CONST char* text);
136
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
33 void balloon_help_hide (void);
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
34 void balloon_help_move_to_pointer (void);
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents:
diff changeset
35
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents:
diff changeset
36 #endif /* BALLOON_HELP_H */