FontPlatformDataMac.mm   [plain text]


/*
 * This file is part of the internal font implementation.
 *
 * Copyright (C) 2006, 2007 Apple Computer, Inc.
 *
 * 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.
 *
 */

#import "config.h"
#import "FontPlatformData.h"

#import "WebCoreSystemInterface.h"

namespace WebCore {

FontPlatformData::FontPlatformData(GSFontRef f, bool b, bool o)
    : m_syntheticBold(b)
    , m_syntheticOblique(o)
    , m_font(f)
{
    if (f)
        CFRetain(f);
    m_size = f ? GSFontGetSize(f) : 0.0f;
    m_gsFont = 0; // fixme <rdar://problem/5607116>
}

FontPlatformData::FontPlatformData(const FontPlatformData& f)
{
    m_font = (f.m_font && f.m_font != (GSFontRef)-1) ? (GSFontRef)CFRetain(f.m_font) : f.m_font;
    m_syntheticBold = f.m_syntheticBold;
    m_syntheticOblique = f.m_syntheticOblique;
    m_size = f.m_size;
    m_gsFont = f.m_gsFont; //Does this need a retain/release? For now m_gsFont should always be nil, until we do: fixme <rdar://problem/5607116> Web fonts (CSS @font-face) broken in WebKit
}

FontPlatformData:: ~FontPlatformData()
{
    if (m_font && m_font != (GSFontRef)-1)
        CFRelease(m_font);
}

void FontPlatformData::setFont(GSFontRef font) {
    if (m_font == font)
        return;
    if (font)
        CFRetain(font);
    if (m_font)
        CFRelease(m_font);
    m_font = font;
    m_size = font ? GSFontGetSize(font) : 0.0f;
    m_gsFont = 0; // fixme <rdar://problem/5607116>
}

}