2017-10-21 13:50:30 +00:00
|
|
|
/* -*- 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/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
|
|
|
|
2017-10-30 18:45:46 +01:00
|
|
|
#include "Qt5Graphics.hxx"
|
|
|
|
#include "Qt5FontFace.hxx"
|
2017-10-30 19:05:41 +01:00
|
|
|
#include <qt5/Qt5Font.hxx>
|
2017-10-21 13:50:30 +00:00
|
|
|
|
|
|
|
#include <vcl/fontcharmap.hxx>
|
|
|
|
|
2017-10-30 19:05:41 +01:00
|
|
|
#include <CommonSalLayout.hxx>
|
2017-10-31 01:10:36 +01:00
|
|
|
#include <PhysicalFontCollection.hxx>
|
|
|
|
|
|
|
|
#include <QtGui/QFontDatabase>
|
2017-10-30 19:05:41 +01:00
|
|
|
#include <QtGui/QRawFont>
|
2017-10-31 01:10:36 +01:00
|
|
|
#include <QtCore/QStringList>
|
|
|
|
|
2017-10-30 18:45:46 +01:00
|
|
|
void Qt5Graphics::SetTextColor( SalColor nSalColor )
|
2017-10-21 13:50:30 +00:00
|
|
|
{
|
2017-10-30 19:05:41 +01:00
|
|
|
m_aTextColor = nSalColor;
|
2017-10-21 13:50:30 +00:00
|
|
|
}
|
|
|
|
|
2017-10-30 19:05:41 +01:00
|
|
|
void Qt5Graphics::SetFont( const FontSelectPattern* pReqFont, int nFallbackLevel )
|
2017-10-21 13:50:30 +00:00
|
|
|
{
|
2017-10-30 19:05:41 +01:00
|
|
|
// release the text styles
|
|
|
|
for (int i = nFallbackLevel; i < MAX_FALLBACK; ++i)
|
|
|
|
{
|
|
|
|
if ( !m_pTextStyle[ i ] )
|
|
|
|
break;
|
|
|
|
delete m_pTextStyle[ i ];
|
|
|
|
m_pTextStyle[ i ] = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !pReqFont )
|
|
|
|
// handle release-font-resources request
|
|
|
|
m_pFontData[ nFallbackLevel ] = nullptr;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_pFontData[ nFallbackLevel ] = static_cast<const Qt5FontFace*>( pReqFont->mpFontData );
|
|
|
|
m_pTextStyle[ nFallbackLevel ] = new Qt5Font( *pReqFont );
|
|
|
|
}
|
2017-10-21 13:50:30 +00:00
|
|
|
}
|
|
|
|
|
2017-10-30 18:45:46 +01:00
|
|
|
void Qt5Graphics::GetFontMetric( ImplFontMetricDataRef &rFMD, int nFallbackLevel )
|
2017-10-21 13:50:30 +00:00
|
|
|
{
|
2017-10-30 19:05:41 +01:00
|
|
|
QRawFont aRawFont( QRawFont::fromFont( *m_pTextStyle[ nFallbackLevel ] ) );
|
|
|
|
|
|
|
|
QByteArray aHheaTable = aRawFont.fontTable( "hhea" );
|
|
|
|
std::vector<uint8_t> rHhea(aHheaTable.data(), aHheaTable.data() + aHheaTable.size() );
|
|
|
|
|
|
|
|
QByteArray aOs2Table = aRawFont.fontTable( "OS/2" );
|
|
|
|
std::vector<uint8_t> rOS2(aHheaTable.data(), aHheaTable.data() + aHheaTable.size() );
|
|
|
|
|
|
|
|
rFMD->ImplCalcLineSpacing( rHhea, rOS2, aRawFont.unitsPerEm() );
|
|
|
|
|
|
|
|
rFMD->SetWidth( aRawFont.averageCharWidth() );
|
|
|
|
|
|
|
|
const QChar nKashidaCh[ 2 ] = { 0x06, 0x40 };
|
|
|
|
quint32 nKashidaGid = 0;
|
|
|
|
QPointF aPoint;
|
|
|
|
int nNumGlyphs;
|
|
|
|
if( aRawFont.glyphIndexesForChars( nKashidaCh, 1, &nKashidaGid, &nNumGlyphs )
|
|
|
|
&& aRawFont.advancesForGlyphIndexes( &nKashidaGid, &aPoint, 1 ) )
|
|
|
|
rFMD->SetMinKashida( lrint(aPoint.rx()) );
|
2017-10-21 13:50:30 +00:00
|
|
|
}
|
|
|
|
|
2017-10-30 18:45:46 +01:00
|
|
|
const FontCharMapRef Qt5Graphics::GetFontCharMap() const
|
2017-10-21 13:50:30 +00:00
|
|
|
{
|
2017-10-30 19:05:41 +01:00
|
|
|
if( !m_pFontData[ 0 ] )
|
|
|
|
return FontCharMapRef( new FontCharMap() );
|
|
|
|
return m_pFontData[ 0 ]->GetFontCharMap();
|
2017-10-21 13:50:30 +00:00
|
|
|
}
|
|
|
|
|
2017-10-30 18:45:46 +01:00
|
|
|
bool Qt5Graphics::GetFontCapabilities(vcl::FontCapabilities &rFontCapabilities) const
|
2017-10-21 13:50:30 +00:00
|
|
|
{
|
2017-10-30 19:05:41 +01:00
|
|
|
if( !m_pFontData[ 0 ] )
|
|
|
|
return false;
|
|
|
|
return m_pFontData[ 0 ]->GetFontCapabilities( rFontCapabilities );
|
2017-10-21 13:50:30 +00:00
|
|
|
}
|
|
|
|
|
2017-10-30 18:45:46 +01:00
|
|
|
void Qt5Graphics::GetDevFontList( PhysicalFontCollection* pPFC )
|
2017-10-21 13:50:30 +00:00
|
|
|
{
|
2017-10-31 01:10:36 +01:00
|
|
|
m_pFontCollection = pPFC;
|
|
|
|
if ( pPFC->Count() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
QFontDatabase aFDB;
|
|
|
|
for ( auto& family : aFDB.families() )
|
|
|
|
for ( auto& style : aFDB.styles( family ) )
|
|
|
|
{
|
|
|
|
// Just get any size - we don't care
|
|
|
|
QList<int> sizes = aFDB.smoothSizes(family, style);
|
2017-10-30 18:45:46 +01:00
|
|
|
pPFC->Add( Qt5FontFace::fromQFont( aFDB.font( family, style, *sizes.begin() ) ) );
|
2017-10-31 01:10:36 +01:00
|
|
|
}
|
2017-10-21 13:50:30 +00:00
|
|
|
}
|
|
|
|
|
2017-10-30 18:45:46 +01:00
|
|
|
void Qt5Graphics::ClearDevFontCache()
|
2017-10-21 13:50:30 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-10-30 18:45:46 +01:00
|
|
|
bool Qt5Graphics::AddTempDevFont( PhysicalFontCollection*, const OUString& rFileURL, const OUString& rFontName )
|
2017-10-21 13:50:30 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-10-30 18:45:46 +01:00
|
|
|
bool Qt5Graphics::CreateFontSubset( const OUString& rToFile, const PhysicalFontFace* pFont,
|
2017-10-21 13:50:30 +00:00
|
|
|
const sal_GlyphId* pGlyphIds, const sal_uInt8* pEncoding,
|
|
|
|
sal_Int32* pWidths, int nGlyphs, FontSubsetInfo& rInfo )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-10-30 18:45:46 +01:00
|
|
|
const void* Qt5Graphics::GetEmbedFontData( const PhysicalFontFace*, long* pDataLen )
|
2017-10-21 13:50:30 +00:00
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2017-10-30 18:45:46 +01:00
|
|
|
void Qt5Graphics::FreeEmbedFontData( const void* pData, long nDataLen )
|
2017-10-21 13:50:30 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-10-30 19:05:41 +01:00
|
|
|
void Qt5Graphics::GetGlyphWidths( const PhysicalFontFace* pPFF, bool bVertical,
|
2017-10-21 13:50:30 +00:00
|
|
|
std::vector< sal_Int32 >& rWidths,
|
|
|
|
Ucs2UIntMap& rUnicodeEnc )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-10-30 18:45:46 +01:00
|
|
|
bool Qt5Graphics::GetGlyphBoundRect( const GlyphItem&, tools::Rectangle& )
|
2017-10-21 13:50:30 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-10-30 18:45:46 +01:00
|
|
|
bool Qt5Graphics::GetGlyphOutline( const GlyphItem&, basegfx::B2DPolyPolygon& )
|
2017-10-21 13:50:30 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-10-30 18:45:46 +01:00
|
|
|
SalLayout* Qt5Graphics::GetTextLayout( ImplLayoutArgs&, int nFallbackLevel )
|
2017-10-21 13:50:30 +00:00
|
|
|
{
|
2017-10-30 19:05:41 +01:00
|
|
|
if( m_pTextStyle[ nFallbackLevel ] )
|
|
|
|
return new CommonSalLayout( *m_pTextStyle[ nFallbackLevel ] );
|
2017-10-21 13:50:30 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2017-10-30 18:45:46 +01:00
|
|
|
void Qt5Graphics::DrawTextLayout( const CommonSalLayout& )
|
2017-10-21 13:50:30 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|