OSDN Git Service

7ead10ba5738d5b4827cee134c06e17def896013
[bbk/bchanf.git] / src / hmi / texteditor_characterstate.h
1 /*
2  * texteditor_characterstate.h
3  *
4  * Copyright (c) 2013-2014 project bchan
5  *
6  * This software is provided 'as-is', without any express or implied
7  * warranty. In no event will the authors be held liable for any damages
8  * arising from the use of this software.
9  *
10  * Permission is granted to anyone to use this software for any purpose,
11  * including commercial applications, and to alter it and redistribute it
12  * freely, subject to the following restrictions:
13  *
14  * 1. The origin of this software must not be misrepresented; you must not
15  *    claim that you wrote the original software. If you use this software
16  *    in a product, an acknowledgment in the product documentation would be
17  *    appreciated but is not required.
18  *
19  * 2. Altered source versions must be plainly marked as such, and must not be
20  *    misrepresented as being the original software.
21  *
22  * 3. This notice may not be removed or altered from any source
23  *    distribution.
24  *
25  */
26
27 #include    <basic.h>
28 #include        <btron/dp.h>
29 #include    <tad.h>
30
31 #include        <tad/tadsegment.h>
32 #include        <tad/tadlangcode.h>
33
34 #ifndef __TEXTEDITOR_CHARACTERSTATE_H__
35 #define __TEXTEDITOR_CHARACTERSTATE_H__
36
37 /* Functionality name: texteditor */
38 /* Detail name: characterstate */
39 struct texteditor_characterstate_t_ {
40         RATIO w_ratio;
41         tadlangcode lang;
42 };
43 typedef struct texteditor_characterstate_t_ texteditor_characterstate_t;
44
45 IMPORT VOID texteditor_characterstate_initialize(texteditor_characterstate_t *state);
46 IMPORT VOID texteditor_characterstate_finalize(texteditor_characterstate_t *state);
47 IMPORT W texteditor_charactorstate_input(texteditor_characterstate_t *state, tadsegment *segment);
48 IMPORT Bool texteditor_characterstate_ishankaku(texteditor_characterstate_t *state);
49 IMPORT W texteditor_characterstate_getlang(texteditor_characterstate_t *state, TC *str, W len);
50 IMPORT VOID texteditor_characterstate_getlangcode(texteditor_characterstate_t *state, tadlangcode *lang);
51 IMPORT Bool texteditor_characterstate_islang(texteditor_characterstate_t *state, TC *str, W len);
52
53 #endif