File: tooltip.h

package info (click to toggle)
mpsql 2.1-2
  • links: PTS
  • area: non-free
  • in suites: potato
  • size: 3,528 kB
  • ctags: 4,886
  • sloc: ansic: 35,184; makefile: 3,761; sh: 44
file content (23 lines) | stat: -rw-r--r-- 810 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/************************************************************************/
/* File   : tooltip.h    				                */
/* Purpose: tooltip module header		                        */
/* By     : Keith R. Davis				                */
/* Date   : 6/10/97				                        */
/* Notes  : Copyright(c) 1996-98 Mutiny Bay Software			*/
/*          Some of this code was lifted from a snippet w/ no author    */
/************************************************************************/

#ifndef _TOOLTIP_H
#define _TOOLTIP_H

/* inits the tooltip module */
void InitializeTooltip (Display *display, char *className);

/* displays the tooltip window */
void PopdownTooltip (Widget w, XtPointer clientdata, XtPointer callData);

/* removes the tooltip window */
void PopupTooltip (Widget button);

#endif