comparison include/KIProto.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: KIProto.h,v 1.3 1991/08/22 06:01:57 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 _KinputProtocol_h
20 #define _KinputProtocol_h
21
22 #include "ICtypes.h"
23
24 /*
25 KinputProtocol new resources:
26
27 name class type default access
28 ----------------------------------------------------------------------------
29 language Language String NULL CG
30 inputObjectClass Class Pointer NULL CG
31 displayObjectClass Class Pointer NULL CG
32 backwardCompatible BackwardCompatible Boolean False CG
33 xlcConversionStartKey XlcConversionStartKey String NULL CG
34
35 */
36
37 #define XtNlanguage "language"
38 #define XtCLanguage "Language"
39
40 #define XtNinputObjectClass "inputObjectClass"
41 #define XtNdisplayObjectClass "displayObjectClass"
42 #define XtCClass "Class"
43
44 #define XtNbackwardCompatible "backwardCompatible"
45 #define XtCBackwardCompatible "BackwardCompatible"
46
47 #define XtNxlcConversionStartKey "xlcConversionStartKey"
48 #define XtCXlcConversionStartKey "XlcConversionStartKey"
49
50 typedef struct _KinputProtocolClassRec* KinputProtocolWidgetClass;
51 typedef struct _KinputProtocolRec* KinputProtocolWidget;
52
53 extern WidgetClass kinputProtocolWidgetClass;
54
55 #endif