File: Sj3P.h

package info (click to toggle)
kinput2 3.0-19
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,688 kB
  • ctags: 4,649
  • sloc: ansic: 45,508; makefile: 100; sh: 35
file content (100 lines) | stat: -rw-r--r-- 3,331 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/* $Id: Sj3P.h,v 2.0 1992/02/09 17:56:19 nao Exp $ */
/*
 * Copyright (c) 1990  Software Research Associates, Inc.
 *
 * Permission to use, copy, modify, and distribute this software and its
 * documentation for any purpose and without fee is hereby granted, provided
 * that the above copyright notice appear in all copies and that both that
 * copyright notice and this permission notice appear in supporting
 * documentation, and that the name of Software Research Associates not be
 * used in advertising or publicity pertaining to distribution of the
 * software without specific, written prior permission.  Software Research
 * Associates makes no representations about the suitability of this software
 * for any purpose.  It is provided "as is" without express or implied
 * warranty.
 *
 * Author:  Makoto Ishisone, Software Research Associates, Inc., Japan
 */

/*
 * Copyright 1991 Sony Corporation
 *
 * Permission to use, copy, modify, distribute, and sell this software and its
 * documentation for any purpose is hereby granted without fee, provided that
 * the above copyright notice appear in all copies and that both that
 * copyright notice and this permission notice appear in supporting
 * documentation, and that the name of Sony not be used in advertising or
 * publicity pertaining to distribution of the software without specific,
 * written prior permission.  Sony makes no representations about the
 * suitability of this software for any purpose.  It is provided "as is"
 * without express or implied warranty.
 *
 * SONY DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL SONY
 * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 
 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */
/*
 * Author: Naoshi Suzuki, SONY Corporation.  (nao@sm.sony.co.jp)
 */

#ifndef _Sj3P_h
#define _Sj3P_h

#include "InputConvP.h"

#include "Sj3.h"
#include "Xsj3clib.h"

typedef struct {
    int foo;
} Sj3ClassPart;

typedef struct _Sj3ClassRec {
    ObjectClassPart     object_class;
    InputConvClassPart  inputConv_class;
    Sj3ClassPart        sj3_class;
} Sj3ClassRec;

typedef enum {
    normal_state,
    candidate_state, 
    symbol_state,
    hinsi_state 
} Sj3State;

typedef struct {

    /* resources */
    String              sj3serv;
    String              sj3serv2;
    String              sj3user;
    String              rcfile;
    String              rkfile;
    String              hkfile;
    String              zhfile;
    String              sbfile;

    /* private data */
    Xsj3cBuf            sj3buf;
    Sj3State            state;
    ICString           *candlist;
    int                 candlistsize;
    int                 numcand;
    int                 curcand;
    ICString           *symbollist;
    int                 cursymbol;
    ICString           *hinsilist;
    int                 curhinsi; 
    Boolean             selectionending;
} Sj3Part;

typedef struct _Sj3Rec {
    ObjectPart          object;
    InputConvPart       inputConv;
    Sj3Part             sj3;
} Sj3Rec;

#endif