fontplatformdatawin.cpp
来自「linux下开源浏览器WebKit的源码,市面上的很多商用浏览器都是移植自Web」· C++ 代码 · 共 93 行
CPP
93 行
/* * This file is part of the internal font implementation. It should not be included by anyone other than * FontMac.cpp, FontWin.cpp and Font.cpp. * * Copyright (C) 2006, 2007, 2008 Apple Inc. * Copyright (C) 2008 Brent Fulgham * * 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 "PlatformString.h"#include "StringHash.h"#include <wtf/HashMap.h>#include <wtf/RetainPtr.h>#include <wtf/Vector.h>using std::min;namespace WebCore {FontPlatformData::FontPlatformData(HFONT font, float size, bool bold, bool oblique, bool useGDI) : m_font(RefCountedHFONT::create(font)) , m_size(size)#if PLATFORM(CG) , m_cgFont(0)#elif PLATFORM(CAIRO) , m_fontFace(0) , m_scaledFont(0)#endif , m_syntheticBold(bold) , m_syntheticOblique(oblique) , m_useGDI(useGDI){ HDC hdc = GetDC(0); SaveDC(hdc); SelectObject(hdc, font); UINT bufferSize = GetOutlineTextMetrics(hdc, 0, NULL); ASSERT_WITH_MESSAGE(bufferSize, "Bitmap fonts not supported with CoreGraphics."); if (bufferSize) { OUTLINETEXTMETRICW* metrics = (OUTLINETEXTMETRICW*)malloc(bufferSize); GetOutlineTextMetricsW(hdc, bufferSize, metrics); WCHAR* faceName = (WCHAR*)((uintptr_t)metrics + (uintptr_t)metrics->otmpFaceName); platformDataInit(font, size, hdc, faceName); free(metrics); } RestoreDC(hdc, -1); ReleaseDC(0, hdc);}FontPlatformData::FontPlatformData(float size, bool bold, bool oblique) : m_size(size)#if PLATFORM(CG) , m_cgFont(0)#elif PLATFORM(CAIRO) , m_fontFace(0) , m_scaledFont(0)#endif , m_syntheticBold(bold) , m_syntheticOblique(oblique) , m_useGDI(false){}FontPlatformData::~FontPlatformData(){}}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?