comparison include/Canna.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 688ac5040e7d
comparison
equal deleted inserted replaced
-1:000000000000 0:92745d501b9a
1 /* $Id: Canna.h,v 1.2 1994/09/21 04:56:56 kon Exp $ */
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 /* Copyright 1991 NEC Corporation, Tokyo, Japan.
20 *
21 * Permission to use, copy, modify, and distribute this software and its
22 * documentation for any purpose and without fee is hereby granted,
23 * provided that the above copyright notice appear in all copies and that
24 * both that copyright notice and this permission notice appear in
25 * supporting documentation, and that the name of NEC Corporation
26 * not be used in advertising or publicity pertaining to distribution
27 * of the software without specific, written prior permission. NEC
28 * Corporation makes no representations about the suitability of this
29 * software for any purpose. It is provided "as is" without express
30 * or implied warranty.
31 *
32 * NEC CORPORATION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
33 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
34 * NO EVENT SHALL NEC CORPORATION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
35 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
36 * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
37 * OTHER TORTUOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
38 * PERFORMANCE OF THIS SOFTWARE.
39 *
40 * Author: Akira Kon, NEC Corporation. (kon@d1.bs2.mt.nec.co.jp)
41 */
42
43 #ifndef _Canna_h
44 #define _Canna_h
45
46 #include "InputConv.h"
47
48 /*
49 Canna new resources:
50
51 name class type default access
52 ----------------------------------------------------------------------------
53 cannahost Cannahost String *1 CG
54 cannafile Cannafile String *2 CG
55
56 note: *1) if not specified, use value of an environment variable "CANNAHOST"
57 *2) if not specified, use value of an environment variable "CANNAFILE"
58 */
59
60 #define XtNcannahost "cannahost"
61 #define XtCCannahost "Cannahost"
62 #define XtNcannafile "cannafile"
63 #define XtCCannafile "Cannafile"
64 #define XtNsendReturnByString "sendReturnByString"
65 #define XtCSendReturnByString "SendReturnByString"
66
67 typedef struct _CannaClassRec *CannaObjectClass;
68 typedef struct _CannaRec *CannaObject;
69
70 extern WidgetClass cannaObjectClass;
71
72 #endif /* _Canna_h */
73