Code

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