1 | /* |
---|
2 | * (c) Copyright 1989, 1990, 1991, 1992 OPEN SOFTWARE FOUNDATION, INC. |
---|
3 | * ALL RIGHTS RESERVED |
---|
4 | */ |
---|
5 | /* |
---|
6 | * Motif Release 1.2 |
---|
7 | */ |
---|
8 | /* $RCSfile: WmIDecor.h,v $ $Revision: 1.1.1.1 $ $Date: 1997-03-25 09:12:20 $ */ |
---|
9 | /* |
---|
10 | * (c) Copyright 1987, 1988, 1989, 1990 HEWLETT-PACKARD COMPANY */ |
---|
11 | |
---|
12 | #ifdef _NO_PROTO |
---|
13 | extern void CreateActiveIconTextWindow (); |
---|
14 | extern void DrawIconTitle (); |
---|
15 | extern void GetIconDimensions (); |
---|
16 | extern void GetIconTitleBox (); |
---|
17 | extern void HideActiveIconText (); |
---|
18 | extern void IconExposureProc (); |
---|
19 | extern void InitIconSize (); |
---|
20 | extern Boolean MakeIcon (); |
---|
21 | extern void MakeIconShadows (); |
---|
22 | extern void MoveActiveIconText (); |
---|
23 | extern void PaintActiveIconText (); |
---|
24 | extern void PutBoxInIconBox (); |
---|
25 | extern void PutBoxOnScreen (); |
---|
26 | extern void RedisplayIconTitle (); |
---|
27 | extern void ReparentIconWindow (); |
---|
28 | extern void ShowActiveIcon (); |
---|
29 | extern void ShowActiveIconText (); |
---|
30 | extern void ShowInactiveIcon (); |
---|
31 | |
---|
32 | #else /* _NO_PROTO */ |
---|
33 | |
---|
34 | extern void CreateActiveIconTextWindow (WmScreenData *pSD); |
---|
35 | extern void DrawIconTitle (ClientData *pcd); |
---|
36 | extern void GetIconDimensions (WmScreenData *pSD, unsigned int *pWidth, |
---|
37 | unsigned int *pLabelHeight, |
---|
38 | unsigned int *pImageHeight); |
---|
39 | extern void GetIconTitleBox (ClientData *pcd, XRectangle *pBox); |
---|
40 | extern void HideActiveIconText (WmScreenData *pSD); |
---|
41 | extern void IconExposureProc (ClientData *pcd, Boolean clearFirst); |
---|
42 | extern void InitIconSize (WmScreenData *pSD); |
---|
43 | extern Boolean MakeIcon (WmWorkspaceData *pWS, ClientData *pcd); |
---|
44 | extern void MakeIconShadows (ClientData *pcd, int xOffset, int yOffset); |
---|
45 | extern void MoveActiveIconText (ClientData *pcd); |
---|
46 | extern void PaintActiveIconText (ClientData *pcd, Boolean erase); |
---|
47 | extern void PutBoxInIconBox (ClientData *pCD, int *px, int *py, |
---|
48 | unsigned int *width, unsigned int *height); |
---|
49 | extern void PutBoxOnScreen (int screen, int *px, int *py, unsigned int width, |
---|
50 | unsigned int height); |
---|
51 | extern void RedisplayIconTitle (ClientData *pcd); |
---|
52 | extern void ReparentIconWindow (ClientData *pcd, int xOffset, int yOffset); |
---|
53 | extern void ShowActiveIcon (ClientData *pcd); |
---|
54 | extern void ShowActiveIconText (ClientData *pcd); |
---|
55 | extern void ShowInactiveIcon (ClientData *pcd, Boolean refresh); |
---|
56 | |
---|
57 | #endif /* _NO_PROTO */ |
---|
58 | |
---|