comparison include/XimpProto.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: XimpProto.h,v 1.5 1993/09/07 06:33:46 ishisone Rel $ */
2 /*
3 * Copyright (c) 1991 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 _XimpProtocol_h
20 #define _XimpProtocol_h
21
22 #include "ICtypes.h"
23
24 /*
25 XimpProtocol new resources:
26
27 name class type default access
28 ----------------------------------------------------------------------------
29 localeName LocaleName String NULL CG
30 serverName ServerName String "kinput2" CG
31 inputObjectClass Class Pointer NULL CG
32 displayObjectClass Class Pointer NULL CG
33 defaultFontList FontList String NULL CG
34 foreground Foreground Pixel DefaultForeground
35 CG
36 forceDefaultServer ForceDefaultServer Boolean False CG
37
38 */
39
40 #define XtNlocaleName "localeName"
41 #define XtCLocaleName "LocaleName"
42
43 #define XtNserverName "serverName"
44 #define XtCServerName "ServerName"
45
46 #define XtNinputObjectClass "inputObjectClass"
47 #define XtNdisplayObjectClass "displayObjectClass"
48 #define XtCClass "Class"
49
50 #define XtNdefaultFontList "defaultFontList"
51 #define XtCFontList "FontList"
52
53 #define XtNforceDefaultServer "forceDefaultServer"
54 #define XtCForceDefaultServer "ForceDefaultServer"
55
56 #define XtNconversionStartKeys "conversionStartKeys"
57 #define XtCConversionStartKeys "ConversionStartKeys"
58
59 #define XtNstatusWidth "statusWidth"
60 #define XtCStatusWidth "StatusWidth"
61
62 typedef struct _XimpProtocolClassRec* XimpProtocolWidgetClass;
63 typedef struct _XimpProtocolRec* XimpProtocolWidget;
64
65 extern WidgetClass ximpProtocolWidgetClass;
66
67 #endif