1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 #ifndef CTRunData_Included
10 #define CTRunData_Included
13 #include <CoreGraphics/CoreGraphics.h>
14 #include <CoreText/CoreText.h>
21 #define CTRUNDATA_F_OWN_ADVANCES (1<<0)
22 #define CTRUNDATA_F_OWN_GLYPHS (1<<1)
23 #define CTRUNDATA_F_OWN_INDICES (1<<2)
24 #define CTRUNDATA_F_OWN_POSITIONS (1<<3)
31 const CGGlyph
* m_pGlyphs
;
32 const CGPoint
* m_pPositions
;
33 const CGSize
* m_pAdvances
;
34 const CFIndex
* m_pStringIndices
;
36 CTRunData(CTRunRef pRun
, int start
);
40 #endif /* NDef CTRunData_Included */
42 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */