~ubuntu-branches/ubuntu/trusty/fcitx/trusty-proposed

« back to all changes in this revision

Viewing changes to tools/pyTools.h

  • Committer: Package Import Robot
  • Author(s): Aron Xu
  • Date: 2013-02-10 17:03:56 UTC
  • mfrom: (1.3.18) (33.1.3 experimental)
  • Revision ID: package-import@ubuntu.com-20130210170356-2yuv6xy3ed378kn0
Tags: 1:4.2.7-1
* New upstream release.
* New binary packages:
  - fcitx-libs-gclient: D-Bus client library for Glib
  - fcitx-libs-qt: D-Bus client library for Qt
  - fcitx-module-quickphrase-editor: Quick Phrase editor module

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
 *   Copyright (C) 2002~2005 by Yuking                                     *
3
 
 *   yuking_net@sohu.com                                                   *
4
 
 *                                                                         *
5
 
 *   This program is free software; you can redistribute it and/or modify  *
6
 
 *   it under the terms of the GNU General Public License as published by  *
7
 
 *   the Free Software Foundation; either version 2 of the License, or     *
8
 
 *   (at your option) any later version.                                   *
9
 
 *                                                                         *
10
 
 *   This program is distributed in the hope that it will be useful,       *
11
 
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12
 
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13
 
 *   GNU General Public License for more details.                          *
14
 
 *                                                                         *
15
 
 *   You should have received a copy of the GNU General Public License     *
16
 
 *   along with this program; if not, write to the                         *
17
 
 *   Free Software Foundation, Inc.,                                       *
18
 
 *   51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.              *
19
 
 ***************************************************************************/
20
 
 
21
 
#ifndef _PY_TOOLS_H
22
 
#define _PY_TOOLS_H
23
 
 
24
 
#include "fcitx-utils/utf8.h"
25
 
 
26
 
/**
27
 
 * Code table for Pinyin
28
 
 **/
29
 
 
30
 
struct _PYMB {
31
 
    int PYFAIndex;
32
 
    char HZ[UTF8_MAX_LENGTH + 1];
33
 
    int UserPhraseCount;
34
 
 
35
 
    struct {
36
 
        int Length;
37
 
        char *Map;
38
 
        char *Phrase;
39
 
        int Index;
40
 
        int Hit;
41
 
    } *UserPhrase;
42
 
};
43
 
 
44
 
struct _HZMap {
45
 
    char Map[3];
46
 
    int BaseCount;
47
 
    char **HZ;
48
 
    int *Index;
49
 
};
50
 
 
51
 
int LoadPYBase(FILE *, struct _HZMap **);
52
 
void LoadPYMB(FILE *fi, struct _PYMB **pPYMB, int isUser);
53
 
 
54
 
#endif /* _PY_TOOLS_H */
55
 
 
56
 
 
57
 
// kate: indent-mode cstyle; space-indent on; indent-width 4;