File: GTestP.h

package info (click to toggle)
xmbdfed 3.3-1
  • links: PTS
  • area: main
  • in suites: slink
  • size: 1,412 kB
  • ctags: 2,109
  • sloc: ansic: 29,997; makefile: 98
file content (120 lines) | stat: -rw-r--r-- 2,967 bytes parent folder | download | duplicates (2)
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
/*
 * Copyright 1996, 1997, 1998 Computing Research Labs,
 * New Mexico State University
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY
 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
 * OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
 * THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */
#ifndef _h_XmuttGTestP
#define _h_XmuttGTestP

#include <stdio.h>
#include <Xm/XmP.h>
#if (XmVERSION == 1) && (XmREVISION >= 2)
#include <Xm/PrimitiveP.h>
#else if (XmVERSION == 2)
#include <X11/CoreP.h>
#include <Xm/PrimitiveP.h>
#endif
#include "GTest.h"

#ifdef __cplusplus
extern "C" {
#endif

#ifndef MAX
#define MAX(h, i) ((h) > (i) ? (h) : (i))
#endif

#ifndef MIN
#define MIN(l, o) ((l) < (o) ? (l) : (o))
#endif

#ifndef MYABS
#define MYABS(xx) ((xx) < 0 ? -(xx) : (xx))
#endif

/*
 * Class and instance structures.
 */
typedef struct _XmuttGlyphTestClassPart {
    XtPointer extension;
} XmuttGlyphTestClassPart;

typedef struct _XmuttGlyphTestClassRec {
    CoreClassPart core_class;
    XmPrimitiveClassPart primitive_class;
    XmuttGlyphTestClassPart gtest_class;
} XmuttGlyphTestClassRec;

typedef struct {
    bdf_font_t *font;
    bdf_glyph_t *glyph;
} _XmuttGlyphTestGlyph;

typedef struct {
    _XmuttGlyphTestGlyph *glyphs;
    unsigned long glyphs_used;
    unsigned long glyphs_size;
    XPoint cpoint;
    Dimension width;
    Dimension height;
    bdf_bbx_t bbx;
} _XmuttGlyphTestLine;

typedef struct {
    /*
     * Public members.
     */
    int dir;

    XtCallbackList add;
    XtCallbackList update;

    Boolean show_baseline;

    /*
     * Private members.
     */
    GC glyphgc;

    _XmuttGlyphTestLine line;

    XPoint *image;
    unsigned long image_used;
    unsigned long image_size;

    Boolean unencoded;

    /*
     * Boolean indicating whether the widget has the focus or not.
     */
    Boolean hasfocus;
} XmuttGlyphTestPart;

typedef struct _XmuttGlyphTestRec {
    CorePart core;
    XmPrimitivePart primitive;
    XmuttGlyphTestPart gtest;
} XmuttGlyphTestRec;

#ifdef __cplusplus
}
#endif

#endif /* _h_XmuttGTestP */