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-12-26 15:14:31 +00:00
|
|
|
#include "Qt5Font.hxx"
|
2018-02-20 12:29:37 +01:00
|
|
|
#include "Qt5Painter.hxx"
|
2017-10-21 13:50:30 +00:00
|
|
|
|
|
|
|
#include <vcl/fontcharmap.hxx>
|
|
|
|
|
2018-05-10 12:48:13 +02:00
|
|
|
#include <sallayout.hxx>
|
2017-10-31 01:10:36 +01:00
|
|
|
#include <PhysicalFontCollection.hxx>
|
|
|
|
|
2018-02-20 12:29:37 +01:00
|
|
|
#include <QtGui/QGlyphRun>
|
2017-10-31 01:10:36 +01:00
|
|
|
#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>
|
|
|
|
|
2018-03-14 11:11:02 +02:00
|
|
|
void Qt5Graphics::SetTextColor(Color nColor) { m_aTextColor = nColor; }
|
2017-10-21 13:50:30 +00:00
|
|
|
|
2017-11-08 11:28:04 +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)
|
|
|
|
{
|
2017-11-08 11:28:04 +01:00
|
|
|
if (!m_pTextStyle[i])
|
2017-10-30 19:05:41 +01:00
|
|
|
break;
|
2017-12-26 15:58:21 +01:00
|
|
|
m_pTextStyle[i]->Release();
|
|
|
|
m_pTextStyle[i] = nullptr;
|
2017-10-30 19:05:41 +01:00
|
|
|
}
|
|
|
|
|
2017-11-08 11:28:04 +01:00
|
|
|
if (!pReqFont)
|
2017-12-26 15:58:21 +01:00
|
|
|
return;
|
|
|
|
assert(pReqFont->mpFontInstance);
|
|
|
|
if (!pReqFont->mpFontInstance)
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_pTextStyle[nFallbackLevel] = static_cast<Qt5Font*>(pReqFont->mpFontInstance);
|
|
|
|
m_pTextStyle[nFallbackLevel]->Acquire();
|
2017-10-21 13:50:30 +00:00
|
|
|
}
|
|
|
|
|
2017-11-08 11:28:04 +01:00
|
|
|
void Qt5Graphics::GetFontMetric(ImplFontMetricDataRef& rFMD, int nFallbackLevel)
|
2017-10-21 13:50:30 +00:00
|
|
|
{
|
2017-11-08 11:28:04 +01:00
|
|
|
QRawFont aRawFont(QRawFont::fromFont(*m_pTextStyle[nFallbackLevel]));
|
2017-10-30 19:05:41 +01:00
|
|
|
|
2017-11-08 11:28:04 +01:00
|
|
|
QByteArray aHheaTable = aRawFont.fontTable("hhea");
|
|
|
|
std::vector<uint8_t> rHhea(aHheaTable.data(), aHheaTable.data() + aHheaTable.size());
|
2017-10-30 19:05:41 +01:00
|
|
|
|
2017-11-08 11:28:04 +01:00
|
|
|
QByteArray aOs2Table = aRawFont.fontTable("OS/2");
|
2018-02-20 12:29:37 +01:00
|
|
|
std::vector<uint8_t> rOS2(aOs2Table.data(), aOs2Table.data() + aOs2Table.size());
|
2017-10-30 19:05:41 +01:00
|
|
|
|
2017-11-08 11:28:04 +01:00
|
|
|
rFMD->ImplCalcLineSpacing(rHhea, rOS2, aRawFont.unitsPerEm());
|
2017-10-30 19:05:41 +01:00
|
|
|
|
2017-11-08 11:28:04 +01:00
|
|
|
rFMD->SetWidth(aRawFont.averageCharWidth());
|
2017-10-30 19:05:41 +01:00
|
|
|
|
2018-05-10 15:46:06 +02:00
|
|
|
rFMD->SetMinKashida(m_pTextStyle[nFallbackLevel]->GetKashidaWidth());
|
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-12-26 15:14:31 +00:00
|
|
|
if (!m_pTextStyle[0])
|
2017-11-08 11:28:04 +01:00
|
|
|
return FontCharMapRef(new FontCharMap());
|
2017-12-26 15:14:31 +00:00
|
|
|
return static_cast<const Qt5FontFace*>(m_pTextStyle[0]->GetFontFace())->GetFontCharMap();
|
2017-10-21 13:50:30 +00:00
|
|
|
}
|
|
|
|
|
2017-11-08 11:28:04 +01:00
|
|
|
bool Qt5Graphics::GetFontCapabilities(vcl::FontCapabilities& rFontCapabilities) const
|
2017-10-21 13:50:30 +00:00
|
|
|
{
|
2017-12-26 15:14:31 +00:00
|
|
|
if (!m_pTextStyle[0])
|
2017-10-30 19:05:41 +01:00
|
|
|
return false;
|
2017-12-26 15:14:31 +00:00
|
|
|
return static_cast<const Qt5FontFace*>(m_pTextStyle[0]->GetFontFace())
|
|
|
|
->GetFontCapabilities(rFontCapabilities);
|
2017-10-21 13:50:30 +00:00
|
|
|
}
|
|
|
|
|
2017-11-08 11:28:04 +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;
|
2017-11-08 11:28:04 +01:00
|
|
|
if (pPFC->Count())
|
2017-10-31 01:10:36 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
QFontDatabase aFDB;
|
2017-11-08 11:28:04 +01:00
|
|
|
for (auto& family : aFDB.families())
|
|
|
|
for (auto& style : aFDB.styles(family))
|
2017-10-31 01:10:36 +01:00
|
|
|
{
|
|
|
|
// Just get any size - we don't care
|
|
|
|
QList<int> sizes = aFDB.smoothSizes(family, style);
|
2017-11-08 11:28:04 +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-11-08 11:28:04 +01:00
|
|
|
void Qt5Graphics::ClearDevFontCache() {}
|
2017-10-21 13:50:30 +00:00
|
|
|
|
2018-01-08 09:38:24 +02:00
|
|
|
bool Qt5Graphics::AddTempDevFont(PhysicalFontCollection*, const OUString& /*rFileURL*/,
|
|
|
|
const OUString& /*rFontName*/)
|
2017-10-21 13:50:30 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-01-08 09:38:24 +02:00
|
|
|
bool Qt5Graphics::CreateFontSubset(const OUString& /*rToFile*/, const PhysicalFontFace* /*pFont*/,
|
|
|
|
const sal_GlyphId* /*pGlyphIds*/, const sal_uInt8* /*pEncoding*/,
|
|
|
|
sal_Int32* /*pWidths*/, int /*nGlyphs*/,
|
|
|
|
FontSubsetInfo& /*rInfo*/)
|
2017-10-21 13:50:30 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-01-08 09:38:24 +02:00
|
|
|
const void* Qt5Graphics::GetEmbedFontData(const PhysicalFontFace*, long* /*pDataLen*/)
|
2017-10-21 13:50:30 +00:00
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2018-01-08 09:38:24 +02:00
|
|
|
void Qt5Graphics::FreeEmbedFontData(const void* /*pData*/, long /*nDataLen*/) {}
|
2017-10-21 13:50:30 +00:00
|
|
|
|
2018-01-08 09:38:24 +02:00
|
|
|
void Qt5Graphics::GetGlyphWidths(const PhysicalFontFace* /*pPFF*/, bool /*bVertical*/,
|
|
|
|
std::vector<sal_Int32>& /*rWidths*/, Ucs2UIntMap& /*rUnicodeEnc*/)
|
2017-10-21 13:50:30 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-03-12 09:56:18 +01:00
|
|
|
bool Qt5Graphics::GetGlyphBoundRect(const GlyphItem& rGlyph, tools::Rectangle& rRect)
|
|
|
|
{
|
|
|
|
const int nLevel = rGlyph.mnFallbackLevel;
|
|
|
|
if( nLevel >= MAX_FALLBACK )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
Qt5Font* pFont = m_pTextStyle[ nLevel ];
|
|
|
|
if( !pFont )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
QRawFont aRawFont(QRawFont::fromFont( *pFont ));
|
|
|
|
rRect = toRectangle(aRawFont.boundingRect(rGlyph.maGlyphId).toAlignedRect());
|
|
|
|
return true;
|
|
|
|
}
|
2017-10-21 13:50:30 +00:00
|
|
|
|
2017-11-08 11:28:04 +01:00
|
|
|
bool Qt5Graphics::GetGlyphOutline(const GlyphItem&, basegfx::B2DPolyPolygon&) { return false; }
|
2017-10-21 13:50:30 +00:00
|
|
|
|
2017-11-14 11:40:50 +01:00
|
|
|
std::unique_ptr<SalLayout> Qt5Graphics::GetTextLayout(ImplLayoutArgs&, int nFallbackLevel)
|
2017-10-21 13:50:30 +00:00
|
|
|
{
|
2017-11-08 11:28:04 +01:00
|
|
|
if (m_pTextStyle[nFallbackLevel])
|
2018-05-10 12:48:13 +02:00
|
|
|
return std::unique_ptr<SalLayout>(new GenericSalLayout(*m_pTextStyle[nFallbackLevel]));
|
2017-11-14 11:40:50 +01:00
|
|
|
return std::unique_ptr<SalLayout>();
|
2017-10-21 13:50:30 +00:00
|
|
|
}
|
|
|
|
|
2018-02-20 12:29:37 +01:00
|
|
|
void Qt5Graphics::DrawTextLayout(const GenericSalLayout &rLayout )
|
|
|
|
{
|
|
|
|
const Qt5Font* pFont = static_cast<const Qt5Font*>(&rLayout.GetFont());
|
|
|
|
assert( pFont );
|
|
|
|
QRawFont aRawFont(QRawFont::fromFont( *pFont ));
|
|
|
|
|
|
|
|
QVector<quint32> glyphIndexes;
|
|
|
|
QVector<QPointF> positions;
|
|
|
|
|
|
|
|
Point aPos;
|
|
|
|
const GlyphItem* pGlyph;
|
|
|
|
int nStart = 0;
|
|
|
|
while (rLayout.GetNextGlyph(&pGlyph, aPos, nStart))
|
|
|
|
{
|
|
|
|
glyphIndexes.push_back(pGlyph->maGlyphId);
|
|
|
|
positions.push_back(QPointF(aPos.X(), aPos.Y()));
|
|
|
|
}
|
|
|
|
|
|
|
|
QGlyphRun aGlyphRun;
|
|
|
|
aGlyphRun.setPositions( positions );
|
|
|
|
aGlyphRun.setGlyphIndexes( glyphIndexes );
|
|
|
|
aGlyphRun.setRawFont( aRawFont );
|
|
|
|
|
|
|
|
Qt5Painter aPainter(*this);
|
2018-05-17 12:55:55 +02:00
|
|
|
QColor aColor = toQColor(m_aTextColor);
|
2018-02-20 12:29:37 +01:00
|
|
|
aPainter.setPen(aColor);
|
|
|
|
aPainter.drawGlyphRun( QPointF(), aGlyphRun );
|
|
|
|
}
|
2017-10-21 13:50:30 +00:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|