(m17n_object): Rename extern from m17n_object_setup.
[m17n/m17n-lib.git] / src / m17n-core.h
1 /* m17n-core.h -- header file for the CORE API of the m17n library.
2    Copyright (C) 2003, 2004
3      National Institute of Advanced Industrial Science and Technology (AIST)
4      Registration Number H15PRO112
5
6    This file is part of the m17n library.
7
8    The m17n library is free software; you can redistribute it and/or
9    modify it under the terms of the GNU Lesser General Public License
10    as published by the Free Software Foundation; either version 2.1 of
11    the License, or (at your option) any later version.
12
13    The m17n library is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16    Lesser General Public License for more details.
17
18    You should have received a copy of the GNU Lesser General Public
19    License along with the m17n library; if not, write to the Free
20    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21    02111-1307, USA.  */
22
23 #ifndef _M17N_CORE_H_
24 #define _M17N_CORE_H_
25
26 #ifdef __cplusplus
27 extern "C"
28 {
29 #endif
30
31 /*
32  * Header file for m17n library.
33  */
34
35 /* (C1) Introduction */
36
37 /***en @defgroup m17nIntro Introduction  */
38 /***ja @defgroup m17nIntro ¤Ï¤¸¤á¤Ë  */
39 /*=*/
40
41 #define M17NLIB_MAJOR_VERSION 1
42 #define M17NLIB_MINOR_VERSION 1
43 #define M17NLIB_PATCH_LEVEL 0
44 #define M17NLIB_VERSION_NAME "1.1.0"
45
46 extern void m17n_init_core (void);
47 #define M17N_INIT() m17n_init_core ()
48 extern void m17n_fini_core (void);
49 #define M17N_FINI() m17n_fini_core ()
50
51 /*=*/
52
53 /*** @ingroup m17nIntro */
54 /***en
55     @brief Enumeration for the status of the m17n library.
56
57     The enum #M17NStatus is used as a return value of the function
58     m17n_status ().  */
59
60 /***ja
61     @brief  m17n ¥é¥¤¥Ö¥é¥ê¤Î¾õÂÖ¤ò¼¨¤¹Îóµó·¿.
62
63     Îóµó·¿ #M17NStatus ¤Ï´Ø¿ô m17n_status () ¤ÎÌá¤êÃͤȤ·¤ÆÍѤ¤¤é¤ì¤ë¡£ */
64
65 enum M17NStatus
66   {
67     /***en No modules is initialized, and all modules are finalized.  */
68     M17N_NOT_INITIALIZED, 
69     /***en Only the modules in CORE API are initialized.  */
70     M17N_CORE_INITIALIZED,
71     /***en Only the modules in CORE and SHELL APIs are initialized.  */
72     M17N_SHELL_INITIALIZED, 
73     /***en All modules are initialized.  */
74     M17N_GUI_INITIALIZED
75   };
76
77 /*=*/
78
79 extern enum M17NStatus m17n_status (void);
80
81 /***en @defgroup m17nCore CORE API  */
82 /***ja @defgroup m17nCore ¥³¥¢ API */
83 /*=*/
84 /*** @ingroup m17nCore */
85 /***en @defgroup m17nObject Managed Object */
86 /***ja @defgroup m17nObject ´ÉÍý²¼¥ª¥Ö¥¸¥§¥¯¥È */
87 /*=*/
88
89 /*** @ingroup m17nObject  */
90 /***en
91     @brief The first member of a managed object.
92
93     When an application program defines a new structure for managed
94     objects, its first member must be of the type @c struct
95     #M17NObjectHead.  Its contents are used by the m17n library, and
96     application programs should never touch them.  */
97 /***ja
98     @brief ´ÉÍý²¼¥ª¥Ö¥¸¥§¥¯¥È¤ÎºÇ½é¤Î¥á¥ó¥Ð.
99
100     ¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¥×¥í¥°¥é¥à¤¬¿·¤·¤¤¹½Â¤ÂΤò´ÉÍý²¼¥ª¥Ö¥¸¥§¥¯¥È¤È¤·¤Æ
101      ÄêµÁ¤¹¤ëºÝ¤Ë¤Ï¡¢ºÇ½é¤Î¥á¥ó¥Ð¤Ï @c #M17NObjectHead ¹½Â¤Âη¿¤Ç¤Ê¤¯
102      ¤Æ¤Ï¤Ê¤é¤Ê¤¤¡£@c #M17NObjectHead ¤ÎÆâÍƤϠm17n ¥é¥¤¥Ö¥é¥ê¤¬»ÈÍѤ¹
103      ¤ë¤Î¤Ç¡¢¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¥×¥í¥°¥é¥à¤Ï¿¨¤ì¤Æ¤Ï¤Ê¤é¤Ê¤¤¡£
104      */
105
106 typedef struct
107 {
108   void *filler[2];
109 } M17NObjectHead;
110
111 /*=*/
112
113 /* Return a newly allocated managed object.  */
114 extern void *m17n_object (int size, void (*freer) (void *));
115
116 /* Increment the reference count of managed object OBJECT.  */
117 extern int m17n_object_ref (void *object);
118
119 /* Decrement the reference count of managed object OBJECT.  */
120 extern int m17n_object_unref (void *object);
121
122 /*=*/
123
124 /* (C2) Symbol handling */
125
126 /*** @ingroup m17nCore */
127 /***en @defgroup m17nSymbol Symbol  */
128 /***ja @defgroup m17nSymbol ¥·¥ó¥Ü¥ë */
129 /*=*/
130
131 /***
132     @ingroup m17nSymbol */
133 /***en
134     @brief Type of symbols.
135
136     The type #MSymbol is for a @e symbol object.  Its internal
137     structure is concealed from application programs.  */
138
139 /***ja
140     @brief ¥·¥ó¥Ü¥ë¤Î·¿Àë¸À.
141
142     #MSymbol ¤Ï¥·¥ó¥Ü¥ë¥ª¥Ö¥¸¥§¥¯¥È¤Î·¿¤Ç¤¢¤ë¡£ÆâÉô¹½Â¤¤Ï¥¢¥×¥ê¥±¡¼¥·¥ç
143     ¥ó¥×¥í¥°¥é¥à¤«¤é¤Ï¸«¤¨¤Ê¤¤¡£  */
144
145 typedef struct MSymbolStruct *MSymbol;
146
147 /*=*/
148
149 /* Predefined symbols. */ 
150 extern MSymbol Mnil;
151 extern MSymbol Mt;
152 extern MSymbol Mstring;
153 extern MSymbol Msymbol;
154 extern MSymbol Mtext;
155
156 /* Return a symbol of name NAME.  */
157 extern MSymbol msymbol (const char *name);
158
159 /* Return a managing key of name NAME.  */
160 extern MSymbol msymbol_as_managing_key (const char *name);
161
162 /* Return a symbol of name NAME if it already exists.  */
163 extern MSymbol msymbol_exist (const char *name);
164
165 /* Return the name of SYMBOL.  */
166 extern char *msymbol_name (MSymbol symbol);
167
168 /* Give SYMBOL KEY property with value VALUE.  */
169 extern int msymbol_put (MSymbol symbol, MSymbol key, void *val);
170
171 /*** Return KEY property value of SYMBOL.  */
172 extern void *msymbol_get (MSymbol symbol, MSymbol key);
173
174 /* 
175  *  (2-1) Property List
176  */
177 /*=*/
178 /*** @ingroup m17nCore */
179 /***en @defgroup m17nPlist Property List */
180 /***ja @defgroup m17nPlist ¥×¥í¥Ñ¥Æ¥£¥ê¥¹¥È */
181 /*=*/
182
183 /***
184     @ingroup m17nPlist */ 
185 /***en
186     @brief Type of property list objects.
187
188     The type #MPlist is for a @e property @e list object.  Its internal
189     structure is concealed from application programs.  */
190
191 /***ja
192     @brief ¥×¥í¥Ñ¥Æ¥£¥ê¥¹¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¤Î·¿Àë¸À.
193
194     #MPlist ¤Ï @e ¥×¥í¥Ñ¥Æ¥£¥ê¥¹¥È (Property list) ¥ª¥Ö¥¸¥§¥¯¥È¤Î·¿¤Ç¤¢¤ë¡£
195     ÆâÉô¹½Â¤¤Ï¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¥×¥í¥°¥é¥à¤«¤é¤Ï¸«¤¨¤Ê¤¤¡£  */
196
197 typedef struct MPlist MPlist;
198
199 /*=*/
200
201 extern MSymbol Mplist, Minteger;
202
203 extern MPlist *mplist ();
204
205 extern MPlist *mplist_copy (MPlist *plist);
206
207 extern MPlist *mplist_add (MPlist *plist, MSymbol key, void *val);
208
209 extern MPlist *mplist_push (MPlist *plist, MSymbol key, void *val);
210
211 extern void *mplist_pop (MPlist *plist);
212
213 extern MPlist *mplist_put (MPlist *plist, MSymbol key, void *val);
214
215 extern void *mplist_get (MPlist *plist, MSymbol key);
216
217 extern MPlist *mplist_find_by_key (MPlist *plist, MSymbol key);
218
219 extern MPlist *mplist_find_by_value (MPlist *plist, void *val);
220
221 extern MPlist *mplist_next (MPlist *plist);
222
223 extern MPlist *mplist_set (MPlist *plist, MSymbol key, void *val);
224
225 extern int mplist_length (MPlist *plist);
226
227 extern MSymbol mplist_key (MPlist *plist);
228
229 extern void *mplist_value (MPlist *plist);
230
231 /* (S1) Characters */
232
233 /*=*/
234 /*** @ingroup m17nCore */
235 /***en @defgroup m17nCharacter Character */
236 /***ja @defgroup m17nCharacter Ê¸»ú */
237 /*=*/
238
239 #define MCHAR_MAX 0x3FFFFF
240 /*#define MCHAR_MAX 0x7FFFFFFF*/
241
242 extern MSymbol Mscript;
243 extern MSymbol Mname;
244 extern MSymbol Mcategory;
245 extern MSymbol Mcombining_class;
246 extern MSymbol Mbidi_category;
247 extern MSymbol Msimple_case_folding;
248 extern MSymbol Mcomplicated_case_folding;
249
250 extern MSymbol mchar_define_property (const char *name, MSymbol type);
251
252 extern void *mchar_get_prop (int c, MSymbol key);
253
254 extern int mchar_put_prop (int c, MSymbol key, void *val);
255
256 /* (C3) Handling chartable */
257
258 /*** @ingroup m17nCore */
259 /***en @defgroup m17nChartable Chartable */
260 /***ja @defgroup m17nChartable Ê¸»ú¥Æ¡¼¥Ö¥ë */
261 /*=*/
262 extern MSymbol Mchar_table;
263
264 /***
265     @ingroup m17nChartable */
266 /***en
267     @brief Type of chartables.
268
269     The type #MCharTable is for a @e chartable objects.  Its
270     internal structure is concealed from application programs.  */
271
272 /***ja
273     @brief Ê¸»ú¥Æ¡¼¥Ö¥ë¤Î·¿Àë¸À.
274
275     #MCharTable ¤Ï @e Ê¸»ú¥Æ¡¼¥Ö¥ë (chartable) ¥ª¥Ö¥¸¥§¥¯¥È¤Î·¿¤Ç¤¢¤ë¡£
276     ÆâÉô¹½Â¤¤Ï¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¥×¥í¥°¥é¥à¤«¤é¤Ï¸«¤¨¤Ê¤¤¡£  */
277
278 typedef struct MCharTable MCharTable;
279 /*=*/
280
281 extern MCharTable *mchartable (MSymbol key, void *default_value);
282
283 extern void *mchartable_lookup (MCharTable *table, int c);
284
285 extern int mchartable_set (MCharTable *table, int c, void *val);
286
287 extern int mchartable_set_range (MCharTable *table, int from, int to,
288                                  void *val);
289
290 extern int mchartable_map (MCharTable *table, void *ignore,
291                            void (*func) (int from, int to,
292                                          void *val, void *arg), 
293                            void *func_arg);
294
295 extern void mchartable_range (MCharTable *table, int *from, int *to);
296
297 /*
298  *  (5) Handling M-text.
299  *      "M" of M-text stands for:
300  *      o Multilingual
301  *      o Metamorphic
302  *      o More than string
303  */
304
305 /*** @ingroup m17nCore */
306 /***en @defgroup m17nMtext M-text */
307 /***ja @defgroup m17nMtext M-text */
308 /*=*/
309
310 /*
311  * (5-1) M-text basics
312  */
313 /*=*/
314 /*** @ingroup m17nMtext */
315 /***en
316     @brief Type of @e M-texts.
317
318     The type #MText is for an @e M-text object.  Its internal
319     structure is concealed from application programs.  */
320
321 /***ja
322     @brief @e MText ¤Î·¿Àë¸À.
323
324     #Mtext ¤Ï @e M-text ¥ª¥Ö¥¸¥§¥¯¥È¤Î·¿¤Ç¤¢¤ë¡£
325     ÆâÉô¹½Â¤¤Ï¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¥×¥í¥°¥é¥à¤«¤é¤Ï¸«¤¨¤Ê¤¤¡£ 
326
327     @latexonly \IPAlabel{MText} @endlatexonly
328     @latexonly \IPAlabel{MText->MPlist} @endlatexonly  */
329
330 typedef struct MText MText;
331
332 /*=*/
333
334 /*** @ingroup m17nMtext */
335 /***en
336     @brief Enumeration for specifying the format of an M-text.
337
338     The enum #MTextFormat is used as an argument of the
339     mtext_from_data () function to specify the format of data from
340     which an M-text is created.  */
341
342 /***ja
343     @brief M-text ¤Î¥Õ¥©¡¼¥Þ¥Ã¥È¤ò»ØÄꤹ¤ëÎóµó·¿.
344
345     Îóµó·¿ #MTextFormat ¤Ï
346     ´Ø¿ô mtext_from_data () ¤Î°ú¿ô¤È¤·¤ÆÍѤ¤¤é¤ì¡¢
347     M-text ¤òÀ¸À®¤¹¤ë¸µ¤È¤Ê¤ë¥Ç¡¼¥¿¤Î¥Õ¥©¡¼¥Þ¥Ã¥È¤ò»ØÄꤹ¤ë¡£  */
348
349 enum MTextFormat
350   {
351     MTEXT_FORMAT_US_ASCII,
352     MTEXT_FORMAT_UTF_8,
353     MTEXT_FORMAT_UTF_16LE,
354     MTEXT_FORMAT_UTF_16BE,
355     MTEXT_FORMAT_UTF_32LE,
356     MTEXT_FORMAT_UTF_32BE,
357     MTEXT_FORMAT_MAX
358   };
359 /*=*/
360
361 extern MText *mtext ();
362
363 /*=*/
364
365 extern const enum MTextFormat MTEXT_FORMAT_UTF_16;
366 extern const enum MTextFormat MTEXT_FORMAT_UTF_32;
367
368 /*=*/
369
370 extern MText *mtext_from_data (const void *data, int nitems,
371                                enum MTextFormat format);
372
373
374 /*=*/
375
376 /*
377  *  (5-2) Functions to manipulate M-texts.  They correspond to string
378  *   manipulating functions in libc.
379  *   In the following functions, mtext_XXX() corresponds to strXXX().
380  */
381
382 extern int mtext_len (MText *mt);
383
384 extern int mtext_ref_char (MText *mt, int pos);
385
386 extern int mtext_set_char (MText *mt, int pos, int c);
387
388 extern MText *mtext_copy (MText *mt1, int pos, MText *mt2, int from, int to);
389
390 extern int mtext_compare (MText *mt1, int from1, int to1,
391                           MText *mt2, int from2, int to2);
392
393 extern int mtext_case_compare (MText *mt1, int from1, int to1,
394                                MText *mt2, int from2, int to2);
395
396 extern int mtext_character (MText *mt, int from, int to, int c);
397
398 extern int mtext_del (MText *mt, int from, int to);
399
400 extern int mtext_ins (MText *mt1, int pos, MText *mt2);
401
402 extern int mtext_ins_char (MText *mt, int pos, int c, int n);
403
404 extern MText *mtext_cat_char (MText *mt, int c);
405
406 extern MText *mtext_duplicate (MText *mt, int from, int to);
407
408 extern MText *mtext_dup (MText *mt);
409
410 extern MText *mtext_cat (MText *mt1, MText *mt2);
411
412 extern MText *mtext_ncat (MText *mt1, MText *mt2, int n);
413
414 extern MText *mtext_cpy (MText *mt1, MText *mt2);
415
416 extern MText *mtext_ncpy (MText *mt1, MText *mt2, int n);
417
418 extern int mtext_chr (MText *mt, int c);
419
420 extern int mtext_rchr (MText *mt, int c);
421
422 extern int mtext_cmp (MText *mt1, MText *mt2);
423
424 extern int mtext_ncmp (MText *mt1, MText *mt2, int n);
425
426 extern int mtext_spn (MText *mt1, MText *mt2);
427
428 extern int mtext_cspn (MText *mt1, MText *mt2);
429
430 extern int mtext_pbrk (MText *mt1, MText *mt2);
431
432 extern int mtext_text (MText *mt1, int pos, MText *mt2);
433
434 extern int mtext_search (MText *mt1, int from, int to, MText *mt2);
435
436 extern MText *mtext_tok (MText *mt, MText *delim, int *pos);
437
438 extern int mtext_casecmp (MText *mt1, MText *mt2);
439
440 extern int mtext_ncasecmp (MText *mt1, MText *mt2, int n);
441
442 /*** @ingroup m17nPlist */
443 extern MPlist *mplist_deserialize (MText *mt);
444
445 /*
446  * (5-3) Text properties
447  */
448 /*=*/
449 /*** @ingroup m17nCore */
450 /***en @defgroup m17nTextProperty Text Property */
451 /***ja @defgroup m17nTextProperty ¥Æ¥­¥¹¥È¥×¥í¥Ñ¥Æ¥£ */
452 /*=*/
453 /*** @ingroup m17nTextProperty */
454 /***en
455     @brief Flag bits to control text property.
456
457     The mtext_property () funciton accepts logical OR of these flag
458     bits as an argument.  They control the behaviour of the created
459     text property as described in the documentation of each flag
460     bit.  */
461
462 /***ja
463     @brief ¥Æ¥­¥¹¥È¥×¥í¥Ñ¥Æ¥£¤òÀ©¸æ¤¹¤ë¥Õ¥é¥°¥Ó¥Ã¥È.
464
465     ´Ø¿ô mtext_property () ¤Ï°Ê²¼¤Î¥Õ¥é¥°¥Ó¥Ã¥È¤ÎÏÀÍý OR ¤ò°ú¿ô¤È¤·¤Æ
466     ¤È¤ë¤³¤È¤¬¤Ç¤­¤ë¡£¥Õ¥é¥°¥Ó¥Ã¥È¤ÏÀ¸À®¤µ¤ì¤¿¥Æ¥­¥¹¥È¥×¥í¥Ñ¥Æ¥£¤Î¿¶Éñ
467     ¤¤¤òÀ©¸æ¤¹¤ë¡£¾ÜºÙ¤Ï³Æ¥Õ¥é¥°¥Ó¥Ã¥È¤ÎÀâÌÀ¤ò»²¾È¡£*/
468
469 enum MTextPropertyControl
470   {
471     /***en If this flag bit is on, an M-text inserted at the start
472         position or at the middle of the text property inherits the
473         text property.  */
474     /***ja ¤³¤Î¥Ó¥Ã¥È¤¬ on ¤Ê¤é¤Ð¡¢¤³¤Î¥Æ¥­¥¹¥È¥×¥í¥Ñ¥Æ¥£¤Î»Ï¤Þ¤ëÅÀ¤¢
475         ¤ë¤¤¤ÏÃæ´Ö¤ËÁÞÆþ¤µ¤ì¤¿ M-text ¤Ï¤³¤Î¥Æ¥­¥¹¥È¥×¥í¥Ñ¥Æ¥£¤ò·Ñ¾µ¤¹¤ë¡£
476         */
477     MTEXTPROP_FRONT_STICKY = 0x01,
478
479     /***en If this flag bit is on, an M-text inserted at the end
480         position or at the middle of the text property inherits the
481         text property.  */
482     /***ja ¤³¤Î¥Ó¥Ã¥È¤¬ on ¤Ê¤é¤Ð¡¢¤³¤Î¥Æ¥­¥¹¥È¥×¥í¥Ñ¥Æ¥£¤Î½ª¤ï¤ëÅÀ¤¢
483         ¤ë¤¤¤ÏÃæ´Ö¤ËÁÞÆþ¤µ¤ì¤¿ M-text ¤Ï¤³¤Î¥Æ¥­¥¹¥È¥×¥í¥Ñ¥Æ¥£¤ò·Ñ¾µ¤¹¤ë¡£
484         */
485     MTEXTPROP_REAR_STICKY = 0x02,
486
487     /***en If this flag bit is on, the text property is removed if a
488         text in its region is modified.  */
489     /***ja ¤³¤Î¥Ó¥Ã¥È¤¬ on ¤Ê¤é¤Ð¡¢¤³¤Î¥Æ¥­¥¹¥È¥×¥í¥Ñ¥Æ¥£¤ÎÈÏ°ÏÆâ¤Î
490         ¥Æ¥­¥¹¥È¤¬Êѹ¹¤µ¤ì¤¿¾ì¹ç¥Æ¥­¥¹¥È¥×¥í¥Ñ¥Æ¥£¤Ï¼è¤ê½ü¤«¤ì¤ë¡£  */
491     MTEXTPROP_VOLATILE_WEAK = 0x04,
492
493     /***en If this flag bit is on, the text property is removed if a
494         text or the other text property in its region is modified.  */
495     /***ja ¤³¤Î¥Ó¥Ã¥È¤¬ on ¤Ê¤é¤Ð¡¢¤³¤Î¥Æ¥­¥¹¥È¥×¥í¥Ñ¥Æ¥£¤ÎÈÏ°ÏÆâ¤Î
496         ¥Æ¥­¥¹¥È¤¢¤ë¤¤¤ÏÊ̤Υƥ­¥¹¥È¥×¥í¥Ñ¥Æ¥£¤¬Êѹ¹¤µ¤ì¤¿¾ì¹ç¤³¤Î¥Æ¥­
497         ¥¹¥È¥×¥í¥Ñ¥Æ¥£¤Ï¼è¤ê½ü¤«¤ì¤ë¡£*/
498     MTEXTPROP_VOLATILE_STRONG = 0x08,
499
500     /***en If this flag bit is on, the text property is not
501         automatically merged with the others.  */
502     /***ja ¤³¤Î¥Ó¥Ã¥È¤¬ on ¤Ê¤é¤Ð¡¢¤³¤Î¥Æ¥­¥¹¥È¥×¥í¥Ñ¥Æ¥£¤Ï¾¤Î¥×¥í¥Ñ
503         ¥Æ¥£¤È¼«Æ°Åª¤Ë¤Ï¥Þ¡¼¥¸¤µ¤ì¤Ê¤¤¡£ */
504     MTEXTPROP_NO_MERGE = 0x10,
505
506     MTEXTPROP_CONTROL_MAX = 0x1F
507   };
508
509 /*=*/
510 extern MSymbol Mtext_prop_serializer;
511 extern MSymbol Mtext_prop_deserializer;
512
513
514 /*** @ingroup m17nTextProperty */
515 /***en
516     @brief Type of serializer functions.
517
518     This is the type of serializer functions.  If the key of a symbol
519     property is #Msymbol_prop_serializer, the value must be of this
520     type.
521
522     @seealso Mtext_prop_serialize (), Mtext_prop_serializer
523 */
524 /***ja
525     @brief ¥·¥ê¥¢¥é¥¤¥¶´Ø¿ô¤Î·¿Àë¸À.
526
527     ¥·¥ê¥¢¥é¥¤¥¶´Ø¿ô¤Î·¿¤Ç¤¢¤ë¡£ ¤¢¤ë¥·¥ó¥Ü¥ë¤Î¥×¥í¥Ñ¥Æ¥£¤Î¥­¡¼¤¬ @c
528     #Msymbol_prop_serializer ¤Ç¤¢¤ë¤È¤­¡¢ ÃͤϤ³¤Î·¿¤Ç¤Ê¤¯¤Æ¤Ï¤Ê¤é¤Ê¤¤¡£
529
530     @seealso Mtext_prop_serialize (), Mtext_prop_serializer
531 */
532
533 typedef MPlist *(*MTextPropSerializeFunc) (void *val);
534
535 /*** @ingroup m17nTextProperty */
536 /***en
537     @brief Type of deserializer functions.
538
539     This is the type of deserializer functions.  If the key of a
540     symbol property is #Msymbol_prop_deserializer, the value must be
541     of this type.
542
543     @seealso Mtext_prop_deserialize (), Mtext_prop_deserializer
544 */
545 /***ja
546     @brief ¥Ç¥·¥ê¥¢¥é¥¤¥¶´Ø¿ô¤Î·¿Àë¸À.
547
548     ¥Ç¥·¥ê¥¢¥é¥¤¥¶´Ø¿ô¤Î·¿¤Ç¤¢¤ë¡£ ¤¢¤ë¥·¥ó¥Ü¥ë¤Î¥×¥í¥Ñ¥Æ¥£¤Î¥­¡¼¤¬ @c
549     #Msymbol_prop_deserializer ¤Ç¤¢¤ë¤È¤­¡¢ ÃͤϤ³¤Î·¿¤Ç¤Ê¤¯¤Æ¤Ï¤Ê¤é¤Ê¤¤¡£
550
551     @seealso Mtext_prop_deserialize (), Mtext_prop_deserializer
552 */
553 typedef void *(*MTextPropDeserializeFunc) (MPlist *plist);
554
555 extern void *mtext_get_prop (MText *mt, int pos, MSymbol key);
556
557 extern int mtext_get_prop_values (MText *mt, int pos, MSymbol key,
558                                   void **values, int num);
559
560 extern int mtext_get_prop_keys (MText *mt, int pos, MSymbol **keys);
561
562 extern int mtext_put_prop (MText *mt, int from, int to,
563                            MSymbol key, void *val);
564
565 extern int mtext_put_prop_values (MText *mt, int from, int to,
566                                   MSymbol key, void **values, int num);
567
568 extern int mtext_push_prop (MText *mt, int from, int to,
569                             MSymbol key, void *val);
570
571 extern int mtext_pop_prop (MText *mt, int from, int to,
572                            MSymbol key);
573
574 extern int mtext_change_prop (MText *mt, int from, int to,
575                               MSymbol key,
576                               int (*func) (int, void ***, int *));
577
578 extern int mtext_prop_range (MText *mt, MSymbol key, int pos,
579                              int *from, int *to, int deeper);
580
581 /*=*/
582 /***
583     @ingroup m17nTextProperty */
584 /***en
585     @brief Type of text properties.
586
587     The type #MTextProperty is for a @e text @e property objects.  Its
588     internal structure is concealed from application programs.  */
589 /***ja
590     @brief @c ¥Æ¥­¥¹¥È¥×¥í¥Ñ¥Æ¥£¤Î·¿Àë¸À.
591
592     #MTextProperty ¤Ï @e ¥Æ¥­¥¹¥È¥×¥í¥Ñ¥Æ¥£ ¥ª¥Ö¥¸¥§¥¯¥È¤Î·¿¤Ç¤¢¤ë¡£
593     ÆâÉô¹½Â¤¤Ï¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¥×¥í¥°¥é¥à¤«¤é¤Ï¸«¤¨¤Ê¤¤¡£  */
594
595 typedef struct MTextProperty MTextProperty;
596
597 /*=*/
598
599 extern MTextProperty *mtext_property (MSymbol key, void *val,
600                                       int control_bits);
601
602 extern MText *mtext_property_mtext (MTextProperty *prop);
603
604 extern MSymbol mtext_property_key (MTextProperty *prop);
605
606 extern void *mtext_property_value (MTextProperty *prop);
607
608 extern int mtext_property_start (MTextProperty *prop);
609
610 extern int mtext_property_end (MTextProperty *prop);
611
612 extern MTextProperty *mtext_get_property (MText *mt, int pos, MSymbol key);
613
614 extern int mtext_get_properties (MText *mt, int pos, MSymbol key,
615                                  MTextProperty **props, int num);
616
617 extern int mtext_attach_property (MText *mt, int from, int to,
618                                   MTextProperty *prop);
619
620 extern int mtext_detach_property (MTextProperty *prop);
621
622 extern int mtext_push_property (MText *mt, int from, int to,
623                                 MTextProperty *prop);
624
625 extern MText *mtext_serialize (MText *mt, int from, int to,
626                                MPlist *property_list);
627
628 extern MText *mtext_deserialize (MText *mt);
629
630 #ifdef __cplusplus
631 }
632 #endif
633
634 #endif /* _M17N_CORE_H_ */
635
636 /*
637   Local Variables:
638   coding: euc-japan
639   End:
640 */