comparison include/CanvasSheP.h @ 0:92745d501b9a

initial import from kinput2-v3.1
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Mon, 08 Mar 2010 04:44:30 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:92745d501b9a
1 /* $Id: CanvasSheP.h,v 1.3 1991/03/22 13:15:11 ishisone Rel $ */
2 /*
3 * Copyright (c) 1990 Software Research Associates, Inc.
4 *
5 * Permission to use, copy, modify, and distribute this software and its
6 * documentation for any purpose and without fee is hereby granted, provided
7 * that the above copyright notice appear in all copies and that both that
8 * copyright notice and this permission notice appear in supporting
9 * documentation, and that the name of Software Research Associates not be
10 * used in advertising or publicity pertaining to distribution of the
11 * software without specific, written prior permission. Software Research
12 * Associates makes no representations about the suitability of this software
13 * for any purpose. It is provided "as is" without express or implied
14 * warranty.
15 *
16 * Author: Makoto Ishisone, Software Research Associates, Inc., Japan
17 */
18
19 #ifndef _CanvasShellP_h
20 #define _CanvasShellP_h
21
22 #include "AdoptedShP.h"
23 #include "CanvasShel.h"
24
25 typedef struct {
26 int empty;
27 } CanvasShellClassPart;
28
29 typedef struct _CanvasShellClassRec {
30 CoreClassPart core_class;
31 CompositeClassPart composite_class;
32 ShellClassPart shell_class;
33 OverrideShellClassPart override_shell_class;
34 AdoptedShellClassPart adoptedshell_class;
35 CanvasShellClassPart canvasshell_class;
36 } CanvasShellClassRec;
37
38 extern CanvasShellClassRec canvasShellClassRec;
39
40 typedef struct {
41 Cursor cursor;
42 XtCallbackList exposecallback;
43 XtCallbackList resizecallback;
44 } CanvasShellPart;
45
46 typedef struct _CanvasShellRec {
47 CorePart core;
48 CompositePart composite;
49 ShellPart shell;
50 OverrideShellPart override;
51 AdoptedShellPart adoptedshell;
52 CanvasShellPart canvasshell;
53 } CanvasShellRec;
54 #endif