summaryrefslogtreecommitdiffstats
path: root/src/sql/sqlite/updates
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2008-12-06 21:05:06 +0100
committerBjørn Lindeijer <bjorn@lindeijer.nl>2008-12-06 21:05:19 +0100
commitb552cba2177b36898d432e80fea3f4c2f483a78d (patch)
tree087e268fc2ac668a2cbc5b8e42468a0d49467b02 /src/sql/sqlite/updates
parentd82a032815fa6bd0150007adc5fbf6147ffdd356 (diff)
Really removed the tmwserv-data submodule
Diffstat (limited to 'src/sql/sqlite/updates')
0 files changed, 0 insertions, 0 deletions
='#n92'>92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
/* 
 *  libpinyin
 *  Library to deal with pinyin.
 *  
 *  Copyright (C) 2011 Peng Wu <alexepico@gmail.com>
 *  
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 * 
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 *  GNU General Public License for more details.
 *  
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

#ifndef CHEWING_KEY_H
#define CHEWING_KEY_H

#include <glib.h>

/** @file chewing_key.h
 *  @brief the definitions of chewing key related classes and structs.
 */

namespace pinyin{
/**
 * @brief enums of chewing initial element.
 */
enum ChewingInitial
{
    CHEWING_ZERO_INITIAL = 0,  /* zero initial. */
    CHEWING_B  = 1,            /* "ㄅ". */
    CHEWING_C  = 2,            /* "ㄘ". */
    CHEWING_CH = 3,            /* "ㄔ". */
    CHEWING_D  = 4,            /* "ㄉ". */
    CHEWING_F  = 5,            /* "ㄈ". */
    CHEWING_H  = 6,            /* "ㄏ". */
    CHEWING_G  = 7,            /* "ㄍ". */
    CHEWING_K  = 8,            /* "ㄎ". */
    CHEWING_J  = 9,            /* "ㄐ". */
    CHEWING_M  = 10,           /* "ㄇ". */
    CHEWING_N  = 11,           /* "ㄋ". */
    CHEWING_L  = 12,           /* "ㄌ". */
    CHEWING_R  = 13,           /* "ㄖ". */
    CHEWING_P  = 14,           /* "ㄆ". */
    CHEWING_Q  = 15,           /* "ㄑ". */
    CHEWING_S  = 16,           /* "ㄙ". */
    CHEWING_SH = 17,           /* "ㄕ". */
    CHEWING_T  = 18,           /* "ㄊ". */
    PINYIN_W   = 19,           /* Invalid Chewing. */
    CHEWING_X  = 20,           /* "ㄒ". */
    PINYIN_Y   = 21,           /* Invalid Chewing. */
    CHEWING_Z  = 22,           /* "ㄗ". */
    CHEWING_ZH = 23,           /* "ㄓ". */
    CHEWING_LAST_INITIAL = CHEWING_ZH,
    CHEWING_NUMBER_OF_INITIALS = CHEWING_LAST_INITIAL + 1
};


/**
 * @brief enums of chewing middle element.
 */