2004-08-02 21:50:17 +00:00
|
|
|
/*
|
2007-10-29 23:25:10 +00:00
|
|
|
CairoFaceInfo.m
|
|
|
|
|
|
|
|
Copyright (C) 2003 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
August 31, 2003
|
|
|
|
Written by Banlu Kemiyatorn <object at gmail dot com>
|
|
|
|
Base on original code of Alex Malmberg
|
|
|
|
Rewrite: Fred Kiefer <fredkiefer@gmx.de>
|
|
|
|
Date: Jan 2006
|
|
|
|
|
|
|
|
This file is part of GNUstep.
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
2008-06-10 04:12:46 +00:00
|
|
|
version 2 of the License, or (at your option) any later version.
|
2007-10-29 23:25:10 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library; see the file COPYING.LIB.
|
|
|
|
If not, see <http://www.gnu.org/licenses/> or write to the
|
|
|
|
Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
|
|
|
Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
2004-08-02 21:50:17 +00:00
|
|
|
|
|
|
|
#include "cairo/CairoFaceInfo.h"
|
2005-07-27 23:25:32 +00:00
|
|
|
#include <cairo-ft.h>
|
2004-08-02 21:50:17 +00:00
|
|
|
|
2008-03-29 13:16:58 +00:00
|
|
|
@implementation CairoFaceInfo
|
2004-08-02 21:50:17 +00:00
|
|
|
|
2005-07-27 23:25:32 +00:00
|
|
|
- (void) dealloc
|
|
|
|
{
|
2005-07-27 23:29:51 +00:00
|
|
|
if (_fontFace)
|
|
|
|
{
|
|
|
|
cairo_font_face_destroy(_fontFace);
|
|
|
|
}
|
2005-07-27 23:25:32 +00:00
|
|
|
[super dealloc];
|
|
|
|
}
|
|
|
|
|
2015-07-14 22:36:43 +00:00
|
|
|
- (void *)fontFace
|
2007-12-11 00:14:01 +00:00
|
|
|
{
|
|
|
|
if (!_fontFace)
|
|
|
|
{
|
2007-12-11 12:06:42 +00:00
|
|
|
FcPattern *resolved;
|
2015-07-14 22:36:43 +00:00
|
|
|
FcBool scalable;
|
2007-12-11 12:06:42 +00:00
|
|
|
|
2015-07-14 22:36:43 +00:00
|
|
|
resolved = [self matchedPattern];
|
|
|
|
FcPatternGetBool(resolved, FC_SCALABLE, 0, &scalable);
|
|
|
|
if (scalable != FcTrue) {
|
|
|
|
NSLog(@"Selected non-scalable font.");
|
|
|
|
}
|
2007-12-11 12:06:42 +00:00
|
|
|
|
|
|
|
_fontFace = cairo_ft_font_face_create_for_pattern(resolved);
|
|
|
|
FcPatternDestroy(resolved);
|
|
|
|
|
2008-03-29 13:16:58 +00:00
|
|
|
if (cairo_font_face_status(_fontFace) != CAIRO_STATUS_SUCCESS)
|
|
|
|
{
|
|
|
|
NSLog(@"Creating a font face failed %@", _familyName);
|
|
|
|
cairo_font_face_destroy(_fontFace);
|
|
|
|
_fontFace = NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
2005-07-27 23:29:51 +00:00
|
|
|
}
|
2005-07-27 23:25:32 +00:00
|
|
|
|
|
|
|
return _fontFace;
|
|
|
|
}
|
|
|
|
|
2004-08-02 21:50:17 +00:00
|
|
|
@end
|