-
Notifications
You must be signed in to change notification settings - Fork 6
/
FastLabelP.h
148 lines (114 loc) · 3.46 KB
/
FastLabelP.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/*@
* Copyright(c) 1995-1997 Gregory M. Messner
* All rights reserved
*
* Permission to use, copy, modify and distribute this material for
* non-commercial personal and educational use without fee is hereby
* granted, provided that the above copyright notice and this permission
* notice appear in all copies, and that the name of Gregory M. Messner
* not be used in advertising or publicity pertaining to this material
* without the specific, prior written permission of Gregory M. Messner
* or an authorized representative.
*
* GREGORY M. MESSNER MAKES NO REPRESENTATIONS AND EXTENDS NO WARRANTIES,
* EXPRESS OR IMPLIED, WITH RESPECT TO THE SOFTWARE, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* ANY PARTICULAR PURPOSE, AND THE WARRANTY AGAINST INFRINGEMENT OF PATENTS
* OR OTHER INTELLECTUAL PROPERTY RIGHTS. THE SOFTWARE IS PROVIDED "AS IS",
* AND IN NO EVENT SHALL GREGORY M. MESSNER BE LIABLE FOR ANY DAMAGES,
* INCLUDING ANY LOST PROFITS OR OTHER INCIDENTAL OR CONSEQUENTIAL DAMAGES
* RELATING TO THE SOFTWARE.
*
*/
/*************************************************************************\
* Copyright (c) 1994-2004 The University of Chicago, as Operator of Argonne
* National Laboratory.
* Copyright (c) 1997-2003 Southeastern Universities Research Association,
* as Operator of Thomas Jefferson National Accelerator Facility.
* Copyright (c) 1997-2002 Deutches Elektronen-Synchrotron in der Helmholtz-
* Gemelnschaft (DESY).
* This file is distributed subject to a Software License Agreement found
* in the file LICENSE that is included with this distribution.
\*************************************************************************/
/* +++FHDR+++
*
* Filename: FastLabelP.h
* Module : Xg Widget Set
* SCCS ID : 1.1 25 Oct 1995
*
* Description:
* This is the private header file for the fast label widget.
*
*
*
* Changes
*
* By Date Description
* ------ -------------- ----------------------------------------------
* messner 01/93 Original file
*
*
* ---FHDR--- */
#ifndef _XgFastLabelP_h
#define _XgFastLabelP_h
/*
* Super Class include
*/
#if XmVersion > 1001
#include <Xm/PrimitiveP.h>
#endif
#include "FastLabel.h"
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/*
* New fields for the FastLabel widget class record
*/
typedef struct _XgFastLabelClassPart {
int empty;
} XgFastLabelClassPart;
/*
* Class record declaration
*/
typedef struct _XgFastLabelClassRec {
CoreClassPart core_class;
XmPrimitiveClassPart prim_class;
XgFastLabelClassPart fastlabel_class;
} XgFastLabelClassRec;
extern XgFastLabelClassRec xgFastLabelClassRec;
/*
* Fast Label instance structure.
*/
typedef struct _XgFastLabelPart {
/*
* Public resources
*/
unsigned char alignment; /* */
int rotation; /* */
XmFontList font_list;
String label_string; /* */
Boolean recompute_size; /* */
Dimension margin_width; /* */
Dimension margin_height; /* */
/*
* Private resources
*/
GC text_gc;
GC erase_gc;
XFontStruct *font;
String my_string;
Pixmap pix;
} XgFastLabelPart;
/*
* Full instance record declaration
*/
typedef struct _XgFastLabelRec {
CorePart core;
XmPrimitivePart primitive;
XgFastLabelPart fastlabel;
} XgFastLabelRec;
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* _XgFastLabelP_h */
/* DON'T ADD STUFF AFTER THIS #endif */