forked from zlgopen/awtk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput_engine_pinyin.h
55 lines (47 loc) · 1.12 KB
/
input_engine_pinyin.h
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
/**
* File: input_engine_pinyin.h
* Author: AWTK Develop Team
* Brief: input_engine_pinyin
*
* Copyright (c) 2019 - 2022 Guangzhou ZHIYUAN Electronics Co.,Ltd.
*
* 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
* License file for more details.
*
*/
/**
* History:
* ================================================================
* 2019-01-02 Li XianJing <[email protected]> created
*
*/
#ifndef TK_INPUT_ENGINE_PINYIN_H
#define TK_INPUT_ENGINE_PINYIN_H
#include "base/input_engine.h"
BEGIN_C_DECLS
/**
* @class input_engine_pinyin_t
* @parent input_engine_t
*
* 拼音输入法引擎实现。
*
* 基于谷歌拼音输入法实现。
*
* @annotation["fake"]
*
*/
/**
* @method input_engine_create
* @export none
* @annotation ["constructor"]
*
* 创建拼音输入法引擎对象。
*
* @return {input_engine_t*} 返回输入法引擎对象。
*
*/
input_engine_t* input_engine_create(void);
END_C_DECLS
#endif /*TK_INPUT_ENGINE_PINYIN_H*/