Introduction(3m17n) | The m17n Library | Introduction(3m17n) |
Introduction - Introduction to the m17n library.
#define M17NLIB_MAJOR_VERSION
#define M17NLIB_MINOR_VERSION
#define M17NLIB_PATCH_LEVEL
#define M17NLIB_VERSION_NAME
#define M17N_INIT()
Initialize the m17n library. #define M17N_FINI()
Finalize the m17n library.
enum M17NStatus { M17N_NOT_INITIALIZED,
M17N_CORE_INITIALIZED, M17N_SHELL_INITIALIZED,
M17N_GUI_INITIALIZED }
Enumeration for the status of the m17n library.
enum M17NStatus m17n_status (void)
Report which part of the m17n library is initialized.
Introduction to the m17n library.
API LEVELS
The API of the m17n library is divided into these five.
It provides basic modules to handle M-texts. To use this API, an application program must include <m17n-core.h> and be linked with -lm17n-core.
It provides modules for character properties, character set handling, code conversion, etc. They load various kinds of data from the database on demand. To use this API, an application program must include <m17n.h> and be linked with -lm17n-core -lm17n.
When you use this API, CORE API is also available.
It provides modules for text shaping using mdbFLT. To use this API, an application program must include <m17n.h> and be linked with -lm17n-core -lm17n-flt.
When you use this API, CORE API is also available.
It provides GUI modules such as drawing and inputting M-texts on a graphic device. This API itself is independent of graphic devices, but most functions require an argument MFrame that is created for a specific type of graphic devices. The currently supported graphic devices are null device, the X Window System, and image data (gdImagePtr) of the GD library.
On a frame of a null device, you cannot draw text nor use input methods. However, functions like mdraw_glyph_list(), etc. are available.
On a frame of the X Window System, you can use the whole GUI API.
On a frame of the GD library, you can use all drawing API but cannot use input methods.
To use this API, an application program must include <m17n-gui.h> and be linked with -lm17n-core -lm17n -lm17n-gui.
When you use this API, CORE, SHELL, and FLT APIs are also available.
It provides miscellaneous functions to support error handling and debugging. This API cannot be used standalone; it must be used with one or more APIs listed above. To use this API, an application program must include <m17n-misc.h> in addition to one of the header files described above.
See also the section m17n-config(1).
ENVIRONMENT VARIABLES
The m17n library pays attention to the following environment variables.
The name of the directory that contains data of the m17n database. See Database for details.
Environment variables whose names start with 'MDEBUG_' control debug information output. See Debugging for details.
API NAMING CONVENTION
The m17n library exports functions, variables, macros, and types. All of them start with the letter 'm' or 'M', and are followed by an object name (e.g. 'symbol', 'plist') or a module name (e.g. draw, input). Note that the name of M-text objects start with 'mtext' and not with 'mmtext'.
They start with 'm' and are followed by an object name in lower case. Words are separated by '_'. For example, msymbol(), mtext_ref_char(), mdraw_text().
The naming convention is the same as functions (e.g. mface_large).
Variables of the type MSymbol start with 'M' and are followed by their names. Words are separated by '_'. For example, Mlanguage (the name is 'language'), Miso_2022 (the name is 'iso-2022').
They start with 'M' and are followed by an object name in upper case. Words are separated by '_'.
They start with 'M' and are followed by capitalized object names. Words are concatenated directly and no '_' are used. For example, MConverter, MInputDriver.
Initialize the m17n library. The macro M17N_INIT() initializes the m17n library. This macro must be called before any m17n functions are used.
It is safe to call this macro multiple times, but in that case, the macro M17N_FINI() must be called the same times to free the memory.
If the initialization was successful, the external variable merror_code is set to 0. Otherwise it is set to -1.
SEE ALSO
Finalize the m17n library. The macro M17N_FINI() finalizes the m17n library. It frees all the memory area used by the m17n library. Once this macro is called, no m17n functions should be used until the macro M17N_INIT() is called again.
If the macro M17N_INIT() was called N times, the Nth call of this macro actually free the memory.
SEE ALSO
Enumeration for the status of the m17n library. The enum M17NStatus is used as a return value of the function m17n_status().
Enumerator:
Generated automatically by Doxygen for The m17n Library from the source code.
Copyright (C) 2001 Information-technology Promotion Agency (IPA)
Copyright (C) 2001-2011 National Institute of Advanced Industrial Science and
Technology (AIST)
Permission is granted to copy, distribute and/or modify this document under
the terms of the GNU Free Documentation License
<http://www.gnu.org/licenses/fdl.html>.
12 Jan 2011 | Version 1.6.2 |