Code

* Lots of documentation for the Inkscape::XML namespace
[inkscape.git] / src / libnrtype / one-box.h
1 /** @file
2  * @brief Definition of struct one_box
3  */
5 #ifndef LIBNRTYPE_ONE_BOX_H_INKSCAPE
6 #define LIBNRTYPE_ONE_BOX_H_INKSCAPE
8 // text chunking 2, the comeback
9 // this time for sp-typeset
10 struct one_box {
11     int g_st, g_en; ///< First and last glyph of this word.
12     double ascent, descent, leading;
13     double width;
14     bool word_start, word_end;
15 };
18 #endif /* !LIBNRTYPE_ONE_BOX_H_INKSCAPE */
20 /*
21   Local Variables:
22   mode:c++
23   c-file-style:"stroustrup"
24   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
25   indent-tabs-mode:nil
26   fill-column:99
27   End:
28 */
29 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :