1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
|
/*
Copyright (C) 2008 Holger Hans Peter Freyther
Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/
Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies)
Copyright (C) 2015 The Qt Company Ltd
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include "FontPlatformData.h"
#include "Font.h"
#include <wtf/text/WTFString.h>
namespace WebCore {
// See http://www.w3.org/TR/css3-fonts/#font-weight-prop
#if QT_VERSION >= QT_VERSION_CHECK(5, 5, 0)
static inline QFont::Weight toQFontWeight(FontWeight fontWeight)
{
switch (fontWeight) {
case FontWeight100:
return QFont::Thin;
case FontWeight200:
return QFont::ExtraLight;
case FontWeight300:
return QFont::Light;
case FontWeight400:
return QFont::Normal;
case FontWeight500:
return QFont::Medium;
case FontWeight600:
return QFont::DemiBold;
case FontWeight700:
return QFont::Bold;
case FontWeight800:
return QFont::ExtraBold;
case FontWeight900:
return QFont::Black;
}
Q_UNREACHABLE();
}
#else
static inline QFont::Weight toQFontWeight(FontWeight fontWeight)
{
switch (fontWeight) {
case FontWeight100:
case FontWeight200:
case FontWeight300:
return QFont::Light; // QFont::Light == Weight of 25
case FontWeight400:
case FontWeight500:
return QFont::Normal; // QFont::Normal == Weight of 50
case FontWeight600:
return QFont::DemiBold; // QFont::DemiBold == Weight of 63
case FontWeight700:
return QFont::Bold; // QFont::Bold == Weight of 75
case FontWeight800:
case FontWeight900:
return QFont::Black; // QFont::Black == Weight of 87
}
Q_UNREACHABLE();
}
#endif
static inline bool isEmptyValue(const float size, const bool bold, const bool oblique)
{
// this is the empty value by definition of the trait FontDataCacheKeyTraits
return !bold && !oblique && size == 0.f;
}
FontPlatformData::FontPlatformData(float size, bool bold, bool oblique)
{
if (!isEmptyValue(size, bold, oblique))
m_data = adoptRef(new FontPlatformDataPrivate(size, bold, oblique));
}
FontPlatformData::FontPlatformData(const FontDescription& description, const AtomicString& familyName, int wordSpacing, int letterSpacing)
: m_data(adoptRef(new FontPlatformDataPrivate()))
{
QFont font;
int requestedSize = description.computedPixelSize();
font.setFamily(familyName);
if (requestedSize)
font.setPixelSize(requestedSize);
font.setItalic(description.italic());
font.setWeight(toQFontWeight(description.weight()));
font.setWordSpacing(wordSpacing);
font.setLetterSpacing(QFont::AbsoluteSpacing, letterSpacing);
switch (description.fontSmoothing()) {
case AutoSmoothing:
if (Font::shouldUseSmoothing())
break;
// no break
case NoSmoothing:
font.setStyleStrategy(QFont::NoAntialias);
break;
case Antialiased:
#if QT_VERSION >= QT_VERSION_CHECK(5, 4, 0)
font.setStyleStrategy(QFont::NoSubpixelAntialias);
break;
#endif
case SubpixelAntialiased:
break;
}
m_data->bold = font.bold();
// WebKit allows font size zero but QFont does not. We will return
// m_data->size if a font size of zero is requested and pixelSize()
// otherwise.
m_data->size = (!requestedSize) ? requestedSize : font.pixelSize();
m_data->rawFont = QRawFont::fromFont(font, QFontDatabase::Any);
}
FontPlatformData::FontPlatformData(const FontPlatformData& other, float size)
: m_data(adoptRef(new FontPlatformDataPrivate()))
{
m_data->rawFont = other.m_data->rawFont;
m_data->bold = other.m_data->bold;
m_data->oblique = other.m_data->oblique;
m_data->rawFont.setPixelSize(size);
m_data->size = m_data->rawFont.pixelSize();
}
bool FontPlatformData::operator==(const FontPlatformData& other) const
{
if (m_data == other.m_data)
return true;
if (!m_data || !other.m_data || m_data->isDeletedValue || other.m_data->isDeletedValue)
return false;
const bool equals = (m_data->size == other.m_data->size
&& m_data->bold == other.m_data->bold
&& m_data->oblique == other.m_data->oblique
&& m_data->rawFont == other.m_data->rawFont);
return equals;
}
unsigned FontPlatformData::hash() const
{
if (!m_data)
return 0;
if (m_data->isDeletedValue)
return 1;
return qHash(m_data->rawFont.familyName()) ^ qHash(m_data->rawFont.style())
^ qHash(m_data->rawFont.weight())
^ qHash(*reinterpret_cast<quint32*>(&m_data->size));
}
#ifndef NDEBUG
String FontPlatformData::description() const
{
return String();
}
#endif
}
|