office-gobmx/vcl/quartz/CTRunData.cxx
Norbert Thiebaud b20becf9e3 cosmetic: clean-up vcl/quartz
Change-Id: I6f15e7ce90598eb4f8e7bb59c7c65d1aa333b972
Reviewed-on: https://gerrit.libreoffice.org/17661
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
2015-08-12 09:54:56 +00:00

94 lines
2.6 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include <sal/config.h>
#include <sal/types.h>
#include <cassert>
#include "CTRunData.hxx"
#include "quartz/utils.h"
CTRunData::CTRunData( CTRunRef pRun, int start)
: ownership_flags(0)
, m_StartPos(start)
, m_pRun(pRun)
{
assert(pRun);
CFDictionaryRef pRunAttributes = CTRunGetAttributes( m_pRun );
m_pFont = static_cast<CTFontRef>(CFDictionaryGetValue( pRunAttributes, kCTFontAttributeName ));
m_nGlyphs = CTRunGetGlyphCount(m_pRun);
m_EndPos = m_StartPos + m_nGlyphs;
const CFRange aAll = CFRangeMake( 0, m_nGlyphs );
m_pAdvances = CTRunGetAdvancesPtr( pRun );
if( !m_pAdvances )
{
m_pAdvances = new CGSize[m_nGlyphs];
ownership_flags |= CTRUNDATA_F_OWN_ADVANCES;
CTRunGetAdvances( pRun, aAll, const_cast<CGSize*>(m_pAdvances) );
}
m_pGlyphs = CTRunGetGlyphsPtr( m_pRun );
if( !m_pGlyphs )
{
m_pGlyphs = new CGGlyph[m_nGlyphs];
ownership_flags |= CTRUNDATA_F_OWN_GLYPHS;
CTRunGetGlyphs( pRun, aAll, const_cast<CGGlyph*>(m_pGlyphs));
}
m_pStringIndices = CTRunGetStringIndicesPtr( pRun );
if( !m_pStringIndices )
{
m_pStringIndices = new CFIndex[m_nGlyphs];
ownership_flags |= CTRUNDATA_F_OWN_INDICES;
CTRunGetStringIndices( pRun, aAll, const_cast<CFIndex*>(m_pStringIndices) );
}
m_pPositions = CTRunGetPositionsPtr( pRun );
if( !m_pPositions )
{
m_pPositions = new CGPoint[m_nGlyphs];
ownership_flags |= CTRUNDATA_F_OWN_POSITIONS;
CTRunGetPositions( pRun, aAll, const_cast<CGPoint*>(m_pPositions) );
}
for(int i = 0; i < m_nGlyphs; i++)
{
SAL_INFO( "vcl.ct", "CTRunData Adv:" << (double)m_pAdvances[i].width << " s-idx:" << m_pStringIndices[i] << " pos:(" <<
m_pPositions[i].x << ":" << m_pPositions[i].y << ")");
}
}
CTRunData::~CTRunData()
{
if(ownership_flags & CTRUNDATA_F_OWN_ADVANCES)
{
delete [] m_pAdvances;
}
if(ownership_flags & CTRUNDATA_F_OWN_GLYPHS)
{
delete [] m_pGlyphs;
}
if(ownership_flags & CTRUNDATA_F_OWN_INDICES)
{
delete [] m_pStringIndices;
}
if(ownership_flags & CTRUNDATA_F_OWN_POSITIONS)
{
delete [] m_pPositions;
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */