LabelP.h revision 7a84e134
1/*
2* $Xorg: LabelP.h,v 1.4 2001/02/09 02:03:44 xorgcvs Exp $
3*/
4
5
6/***********************************************************
7
8Copyright 1987, 1988, 1994, 1998  The Open Group
9
10Permission to use, copy, modify, distribute, and sell this software and its
11documentation for any purpose is hereby granted without fee, provided that
12the above copyright notice appear in all copies and that both that
13copyright notice and this permission notice appear in supporting
14documentation.
15
16The above copyright notice and this permission notice shall be included in
17all copies or substantial portions of the Software.
18
19THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
22OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
23AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25
26Except as contained in this notice, the name of The Open Group shall not be
27used in advertising or otherwise to promote the sale, use or other dealings
28in this Software without prior written authorization from The Open Group.
29
30
31Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts.
32
33                        All Rights Reserved
34
35Permission to use, copy, modify, and distribute this software and its
36documentation for any purpose and without fee is hereby granted,
37provided that the above copyright notice appear in all copies and that
38both that copyright notice and this permission notice appear in
39supporting documentation, and that the name of Digital not be
40used in advertising or publicity pertaining to distribution of the
41software without specific, written prior permission.
42
43DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
44ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
45DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
46ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
47WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
48ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
49SOFTWARE.
50
51******************************************************************/
52/* $XFree86: xc/lib/Xaw/LabelP.h,v 1.7 2001/01/17 19:42:27 dawes Exp $ */
53
54#ifndef _XawLabelP_h
55#define _XawLabelP_h
56
57/*
58 * Label Widget Private Data
59 */
60#include <X11/Xaw/Label.h>
61#include <X11/Xaw/SimpleP.h>
62
63/* New fields for the Label widget class record */
64typedef struct {
65  XtPointer extension;
66} LabelClassPart;
67
68/* Full class record declaration */
69typedef struct _LabelClassRec {
70    CoreClassPart	core_class;
71    SimpleClassPart	simple_class;
72    LabelClassPart	label_class;
73} LabelClassRec;
74
75extern LabelClassRec labelClassRec;
76
77/* New fields for the Label widget record */
78typedef struct {
79    /* resources */
80    Pixel	foreground;
81    XFontStruct	*font;
82    XFontSet 	fontset;
83    char	*label;
84    XtJustify	justify;
85    Dimension	internal_width;
86    Dimension	internal_height;
87    Pixmap	pixmap;
88    Boolean	resize;
89    unsigned char encoding;
90    Pixmap	left_bitmap;
91
92    /* private state */
93    GC		normal_GC;
94    GC          gray_GC;
95    Pixmap	stipple;
96    Position	label_x;
97    Position	label_y;
98    Dimension	label_width;
99    Dimension	label_height;
100    Dimension	label_len;
101    int		lbm_y;			/* where in label */
102    unsigned int lbm_width, lbm_height;	 /* size of pixmap */
103#ifndef OLDXAW
104    XtPointer pad[4];	/* for future use and keep binary compatability */
105#endif
106} LabelPart;
107
108/*
109 * Full instance record declaration
110 */
111typedef struct _LabelRec {
112    CorePart	core;
113    SimplePart	simple;
114    LabelPart	label;
115} LabelRec;
116
117#define LEFT_OFFSET(lw) ((lw)->label.left_bitmap \
118			 ? (lw)->label.lbm_width + (lw)->label.internal_width \
119			 : 0)
120
121#endif /* _XawLabelP_h */
122