1 | /* $XFree86$ */
|
---|
2 | /*
|
---|
3 |
|
---|
4 | Copyright 1987, 1998 The Open Group
|
---|
5 | Copyright 2002 Red Hat Inc., Durham, North Carolina.
|
---|
6 |
|
---|
7 | Permission to use, copy, modify, distribute, and sell this software and its
|
---|
8 | documentation for any purpose is hereby granted without fee, provided that
|
---|
9 | the above copyright notice appear in all copies and that both that
|
---|
10 | copyright notice and this permission notice appear in supporting
|
---|
11 | documentation.
|
---|
12 |
|
---|
13 | The above copyright notice and this permission notice shall be included in
|
---|
14 | all copies or substantial portions of the Software.
|
---|
15 |
|
---|
16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
---|
17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
---|
18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
---|
19 | OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
---|
20 | AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
---|
21 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
---|
22 |
|
---|
23 | Except as contained in this notice, the name of The Open Group shall not be
|
---|
24 | used in advertising or otherwise to promote the sale, use or other dealings
|
---|
25 | in this Software without prior written authorization from The Open Group.
|
---|
26 |
|
---|
27 | */
|
---|
28 |
|
---|
29 | /*
|
---|
30 | * Authors:
|
---|
31 | * Rickard E. (Rik) Faith <[email protected]>
|
---|
32 | *
|
---|
33 | * This file was originally taken from xc/lib/Xaw/TemplateP.h
|
---|
34 | */
|
---|
35 |
|
---|
36 | #ifndef _CanvasP_h
|
---|
37 | #define _CanvasP_h
|
---|
38 |
|
---|
39 | #include "Canvas.h"
|
---|
40 |
|
---|
41 | /* include superclass private header file */
|
---|
42 | #include <X11/CoreP.h>
|
---|
43 |
|
---|
44 | typedef struct {
|
---|
45 | XtPointer extension;
|
---|
46 | } CanvasClassPart;
|
---|
47 |
|
---|
48 | typedef struct _CanvasClassRec {
|
---|
49 | CoreClassPart core_class;
|
---|
50 | CanvasClassPart canvas_class;
|
---|
51 | } CanvasClassRec;
|
---|
52 |
|
---|
53 | extern CanvasClassRec canvasClassRec;
|
---|
54 |
|
---|
55 | typedef struct {
|
---|
56 | XtCallbackList input_callback;
|
---|
57 | XtCallbackList expose_callback;
|
---|
58 | XtCallbackList resize_callback;
|
---|
59 | } CanvasPart;
|
---|
60 |
|
---|
61 | typedef struct _CanvasRec {
|
---|
62 | CorePart core;
|
---|
63 | CanvasPart canvas;
|
---|
64 | } CanvasRec;
|
---|
65 |
|
---|
66 | #endif /* _CanvasP_h */
|
---|