Code

* Lots of documentation for the Inkscape::XML namespace
[inkscape.git] / src / libnrtype / boundary-type.h
1 /** @file
2  * @brief Definition of the BoundaryType enum
3  */
5 #ifndef LIBNRTYPE_BOUNDARY_TYPE_H_INKSCAPE
6 #define LIBNRTYPE_BOUNDARY_TYPE_H_INKSCAPE
8 /**
9  * The different kinds of semantic boundaries in text; or rather,
10  * the different things that may be delimited by a text_boundary.
11  */
12 enum BoundaryType {
13     bnd_none = 0,
14     bnd_char,
15     bnd_word,
16     bnd_sent,  /**< Sentence.  Not currently used, and pango (1.8) does a bad job of determining
17                 * sentence boundaries anyway. */
18     bnd_para
19 };
22 #endif /* !LIBNRTYPE_BOUNDARY_TYPE_H_INKSCAPE */
24 /*
25   Local Variables:
26   mode:c++
27   c-file-style:"stroustrup"
28   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
29   indent-tabs-mode:nil
30   fill-column:99
31   End:
32 */
33 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :