2008-08-02 18:31:32 +04:00
|
|
|
/*
|
2009-01-16 23:05:21 +03:00
|
|
|
* Copyright 2008,2009 Chris Young <chris@unsatisfactorysoftware.co.uk>
|
2008-08-02 18:31:32 +04:00
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include "css/css.h"
|
|
|
|
#include "render/font.h"
|
2008-08-07 22:44:28 +04:00
|
|
|
#include "amiga/gui.h"
|
|
|
|
#include <proto/graphics.h>
|
2008-08-10 13:57:41 +04:00
|
|
|
#include <proto/diskfont.h>
|
|
|
|
#include <graphics/rpattr.h>
|
|
|
|
#include "amiga/font.h"
|
|
|
|
#include "desktop/options.h"
|
2008-08-26 05:21:22 +04:00
|
|
|
#include "amiga/utf8.h"
|
2008-08-30 20:55:25 +04:00
|
|
|
#include "utils/utf8.h"
|
|
|
|
#include <diskfont/diskfonttag.h>
|
|
|
|
#include <diskfont/oterrors.h>
|
|
|
|
#include <proto/Picasso96API.h>
|
2008-09-15 22:56:11 +04:00
|
|
|
#include <proto/exec.h>
|
2008-12-28 02:25:42 +03:00
|
|
|
#include <graphics/blitattr.h>
|
2009-01-16 23:05:21 +03:00
|
|
|
#include "amiga/options.h"
|
2009-01-20 19:53:06 +03:00
|
|
|
#include <proto/utility.h>
|
2009-04-18 20:55:59 +04:00
|
|
|
#include "utils/utils.h"
|
2009-01-16 23:05:21 +03:00
|
|
|
|
2009-01-18 15:15:48 +03:00
|
|
|
static struct OutlineFont *of[CSS_FONT_FAMILY_NOT_SET];
|
2009-01-20 19:53:06 +03:00
|
|
|
static struct OutlineFont *ofb[CSS_FONT_FAMILY_NOT_SET];
|
|
|
|
static struct OutlineFont *ofi[CSS_FONT_FAMILY_NOT_SET];
|
|
|
|
static struct OutlineFont *ofbi[CSS_FONT_FAMILY_NOT_SET];
|
2008-09-15 22:56:11 +04:00
|
|
|
|
2009-04-18 20:55:59 +04:00
|
|
|
struct OutlineFont *ami_open_outline_font(const struct css_style *style);
|
2009-01-17 03:43:51 +03:00
|
|
|
|
2008-08-02 18:31:32 +04:00
|
|
|
static bool nsfont_width(const struct css_style *style,
|
|
|
|
const char *string, size_t length,
|
|
|
|
int *width);
|
|
|
|
|
|
|
|
static bool nsfont_position_in_string(const struct css_style *style,
|
|
|
|
const char *string, size_t length,
|
|
|
|
int x, size_t *char_offset, int *actual_x);
|
|
|
|
|
|
|
|
static bool nsfont_split(const struct css_style *style,
|
|
|
|
const char *string, size_t length,
|
|
|
|
int x, size_t *char_offset, int *actual_x);
|
|
|
|
|
|
|
|
const struct font_functions nsfont = {
|
|
|
|
nsfont_width,
|
|
|
|
nsfont_position_in_string,
|
|
|
|
nsfont_split
|
|
|
|
};
|
|
|
|
|
|
|
|
bool nsfont_width(const struct css_style *style,
|
|
|
|
const char *string, size_t length,
|
|
|
|
int *width)
|
|
|
|
{
|
2009-01-16 23:05:21 +03:00
|
|
|
struct TextFont *tfont;
|
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
*width = ami_unicode_text(NULL,string,length,style,0,0,0);
|
2009-01-16 23:05:21 +03:00
|
|
|
|
2008-08-02 18:31:32 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-08-07 22:44:28 +04:00
|
|
|
/**
|
|
|
|
* Find the position in a string where an x coordinate falls.
|
|
|
|
*
|
|
|
|
* \param style css_style for this text, with style->font_size.size ==
|
|
|
|
* CSS_FONT_SIZE_LENGTH
|
|
|
|
* \param string UTF-8 string to measure
|
|
|
|
* \param length length of string
|
|
|
|
* \param x x coordinate to search for
|
|
|
|
* \param char_offset updated to offset in string of actual_x, [0..length]
|
|
|
|
* \param actual_x updated to x coordinate of character closest to x
|
|
|
|
* \return true on success, false on error and error reported
|
|
|
|
*/
|
2008-08-02 18:31:32 +04:00
|
|
|
|
|
|
|
bool nsfont_position_in_string(const struct css_style *style,
|
|
|
|
const char *string, size_t length,
|
|
|
|
int x, size_t *char_offset, int *actual_x)
|
|
|
|
{
|
2008-08-10 00:28:35 +04:00
|
|
|
struct TextExtent extent;
|
2009-01-17 03:43:51 +03:00
|
|
|
struct TextFont *tfont;
|
2009-04-01 21:36:18 +04:00
|
|
|
uint16 *utf16 = NULL, *outf16 = NULL;
|
|
|
|
struct OutlineFont *ofont;
|
|
|
|
struct GlyphMap *glyph;
|
|
|
|
uint32 tx=0,i=0;
|
|
|
|
size_t len,utf8len;
|
|
|
|
uint8 *utf8;
|
|
|
|
uint32 co = 0;
|
2009-01-17 03:43:51 +03:00
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
len = utf8_bounded_length(string, length);
|
2009-04-18 20:55:59 +04:00
|
|
|
if(utf8_to_enc(string,"UTF-16",length,(char **)&utf16) != UTF8_CONVERT_OK) return false;
|
2009-04-01 21:36:18 +04:00
|
|
|
outf16 = utf16;
|
2008-08-22 01:42:48 +04:00
|
|
|
|
2009-04-18 20:55:59 +04:00
|
|
|
if(!(ofont = ami_open_outline_font(style))) return false;
|
2008-09-16 02:18:33 +04:00
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
*char_offset = length;
|
2009-01-17 03:43:51 +03:00
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
for(i=0;i<len;i++)
|
2009-01-17 03:43:51 +03:00
|
|
|
{
|
2009-04-01 21:36:18 +04:00
|
|
|
if(ESetInfo(&ofont->olf_EEngine,
|
|
|
|
OT_GlyphCode,*utf16,
|
|
|
|
TAG_END) == OTERR_Success)
|
2009-01-17 03:43:51 +03:00
|
|
|
{
|
2009-04-01 21:36:18 +04:00
|
|
|
if(EObtainInfo(&ofont->olf_EEngine,
|
|
|
|
OT_GlyphMap8Bit,&glyph,
|
|
|
|
TAG_END) == 0)
|
2009-01-17 03:43:51 +03:00
|
|
|
{
|
2009-04-18 20:55:59 +04:00
|
|
|
if(utf8_from_enc((char *)utf16,"UTF-16",4,(char **)&utf8) != UTF8_CONVERT_OK) return false;
|
2009-04-01 21:36:18 +04:00
|
|
|
utf8len = utf8_char_byte_length(utf8);
|
|
|
|
free(utf8);
|
|
|
|
|
|
|
|
if(x<tx+glyph->glm_X1)
|
2009-01-17 03:43:51 +03:00
|
|
|
{
|
2009-04-01 21:36:18 +04:00
|
|
|
i = len+1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
co += utf8len;
|
|
|
|
}
|
2009-01-17 03:43:51 +03:00
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
*actual_x = tx;
|
|
|
|
tx+= glyph->glm_X1;
|
2009-01-17 03:43:51 +03:00
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
EReleaseInfo(&ofont->olf_EEngine,
|
|
|
|
OT_GlyphMap8Bit,glyph,
|
|
|
|
TAG_END);
|
2009-01-17 03:43:51 +03:00
|
|
|
}
|
|
|
|
}
|
2009-04-01 21:36:18 +04:00
|
|
|
if (*utf16 < 0xD800 || 0xDFFF < *utf16)
|
|
|
|
utf16++;
|
|
|
|
else
|
|
|
|
utf16 += 2;
|
2009-01-17 03:43:51 +03:00
|
|
|
}
|
2009-04-01 21:36:18 +04:00
|
|
|
*char_offset = co;
|
|
|
|
if(co>=length) *actual_x = tx;
|
|
|
|
free(outf16);
|
2008-08-02 18:31:32 +04:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-08-07 22:44:28 +04:00
|
|
|
/**
|
|
|
|
* Find where to split a string to make it fit a width.
|
|
|
|
*
|
|
|
|
* \param style css_style for this text, with style->font_size.size ==
|
|
|
|
* CSS_FONT_SIZE_LENGTH
|
|
|
|
* \param string UTF-8 string to measure
|
|
|
|
* \param length length of string
|
|
|
|
* \param x width available
|
|
|
|
* \param char_offset updated to offset in string of actual_x, [0..length]
|
|
|
|
* \param actual_x updated to x coordinate of character closest to x
|
|
|
|
* \return true on success, false on error and error reported
|
|
|
|
*
|
|
|
|
* On exit, [char_offset == 0 ||
|
|
|
|
* string[char_offset] == ' ' ||
|
|
|
|
* char_offset == length]
|
|
|
|
*/
|
|
|
|
|
2008-08-02 18:31:32 +04:00
|
|
|
bool nsfont_split(const struct css_style *style,
|
|
|
|
const char *string, size_t length,
|
|
|
|
int x, size_t *char_offset, int *actual_x)
|
|
|
|
{
|
2008-08-10 00:28:35 +04:00
|
|
|
struct TextExtent extent;
|
|
|
|
ULONG co;
|
|
|
|
char *charp;
|
2009-01-17 03:43:51 +03:00
|
|
|
struct TextFont *tfont;
|
2009-04-01 21:36:18 +04:00
|
|
|
uint16 *utf16 = NULL,*outf16 = NULL;
|
|
|
|
struct OutlineFont *ofont;
|
|
|
|
struct GlyphMap *glyph;
|
|
|
|
uint32 tx=0,i=0;
|
|
|
|
size_t len;
|
2008-08-10 00:28:35 +04:00
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
len = utf8_bounded_length(string, length);
|
2009-04-18 20:55:59 +04:00
|
|
|
if(utf8_to_enc((char *)string,"UTF-16",length,(char **)&utf16) != UTF8_CONVERT_OK) return false;
|
2009-04-01 21:36:18 +04:00
|
|
|
outf16 = utf16;
|
2009-04-18 20:55:59 +04:00
|
|
|
if(!(ofont = ami_open_outline_font(style))) return false;
|
2009-01-17 03:43:51 +03:00
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
*char_offset = 0;
|
2009-01-17 03:43:51 +03:00
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
for(i=0;i<len;i++)
|
2008-08-26 22:03:07 +04:00
|
|
|
{
|
2009-04-01 21:36:18 +04:00
|
|
|
if(ESetInfo(&ofont->olf_EEngine,
|
|
|
|
OT_GlyphCode,*utf16,
|
|
|
|
TAG_END) == OTERR_Success)
|
2009-01-17 03:43:51 +03:00
|
|
|
{
|
2009-04-01 21:36:18 +04:00
|
|
|
if(EObtainInfo(&ofont->olf_EEngine,
|
|
|
|
OT_GlyphMap8Bit,&glyph,
|
|
|
|
TAG_END) == 0)
|
2009-01-17 03:43:51 +03:00
|
|
|
{
|
2009-04-01 21:36:18 +04:00
|
|
|
if(*utf16 == 0x0020)
|
2009-01-17 03:43:51 +03:00
|
|
|
{
|
2009-04-01 21:36:18 +04:00
|
|
|
*actual_x = tx;
|
|
|
|
co = i;
|
2009-01-17 03:43:51 +03:00
|
|
|
}
|
2008-08-10 13:57:41 +04:00
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
if(x<tx+glyph->glm_X1)
|
|
|
|
{
|
|
|
|
i = length+1;
|
|
|
|
}
|
2008-08-10 13:57:41 +04:00
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
tx+= glyph->glm_X1;
|
2008-08-10 13:57:41 +04:00
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
EReleaseInfo(&ofont->olf_EEngine,
|
|
|
|
OT_GlyphMap8Bit,glyph,
|
|
|
|
TAG_END);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (*utf16 < 0xD800 || 0xDFFF < *utf16)
|
|
|
|
utf16++;
|
|
|
|
else
|
|
|
|
utf16 += 2;
|
2008-09-15 22:56:11 +04:00
|
|
|
}
|
|
|
|
|
2009-04-18 20:55:59 +04:00
|
|
|
charp = (char *)(string+co);
|
2009-04-01 21:36:18 +04:00
|
|
|
while(((*charp != ' ')) && (charp > string))
|
2008-08-10 13:57:41 +04:00
|
|
|
{
|
2009-04-01 21:36:18 +04:00
|
|
|
charp--;
|
|
|
|
co--;
|
2008-08-10 13:57:41 +04:00
|
|
|
}
|
2009-04-01 21:36:18 +04:00
|
|
|
*char_offset = co;
|
|
|
|
free(outf16);
|
2008-08-10 13:57:41 +04:00
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
return true;
|
2008-08-17 20:22:40 +04:00
|
|
|
}
|
|
|
|
|
2009-04-18 20:55:59 +04:00
|
|
|
struct OutlineFont *ami_open_outline_font(const struct css_style *style)
|
2008-08-30 20:55:25 +04:00
|
|
|
{
|
|
|
|
struct OutlineFont *ofont;
|
|
|
|
char *fontname;
|
|
|
|
WORD ysize;
|
2009-01-20 19:53:06 +03:00
|
|
|
int tstyle = 0;
|
2008-08-30 20:55:25 +04:00
|
|
|
|
2009-01-20 19:53:06 +03:00
|
|
|
switch(style->font_style)
|
|
|
|
{
|
|
|
|
case CSS_FONT_STYLE_ITALIC:
|
|
|
|
case CSS_FONT_STYLE_OBLIQUE:
|
|
|
|
tstyle += NSA_ITALIC;
|
|
|
|
break;
|
|
|
|
}
|
2008-08-30 20:55:25 +04:00
|
|
|
|
2009-01-20 19:53:06 +03:00
|
|
|
switch(style->font_weight)
|
|
|
|
{
|
|
|
|
case CSS_FONT_WEIGHT_BOLD:
|
|
|
|
case CSS_FONT_WEIGHT_BOLDER:
|
|
|
|
tstyle += NSA_BOLD;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(tstyle)
|
|
|
|
{
|
|
|
|
case NSA_ITALIC:
|
|
|
|
if(ofi[style->font_family]) ofont = ofi[style->font_family];
|
|
|
|
else ofont = of[style->font_family];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NSA_BOLD:
|
|
|
|
if(ofb[style->font_family]) ofont = ofb[style->font_family];
|
|
|
|
else ofont = of[style->font_family];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NSA_BOLDITALIC:
|
|
|
|
if(ofbi[style->font_family]) ofont = ofbi[style->font_family];
|
|
|
|
else ofont = of[style->font_family];
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
ofont = of[style->font_family];
|
|
|
|
break;
|
|
|
|
}
|
2008-08-30 20:55:25 +04:00
|
|
|
|
2009-01-18 15:15:48 +03:00
|
|
|
ysize = css_len2pt(&style->font_size.value.length, style);
|
2008-08-30 20:55:25 +04:00
|
|
|
|
2009-05-09 18:30:17 +04:00
|
|
|
if(ysize < (option_font_min_size / 10))
|
|
|
|
ysize = option_font_min_size / 10;
|
2008-08-30 20:55:25 +04:00
|
|
|
|
|
|
|
if(ESetInfo(&ofont->olf_EEngine,
|
2009-01-16 23:05:21 +03:00
|
|
|
OT_DeviceDPI,(72<<16) | 72,
|
|
|
|
OT_PointHeight,(ysize<<16),
|
|
|
|
TAG_END) == OTERR_Success)
|
2008-08-30 20:55:25 +04:00
|
|
|
{
|
2009-01-16 23:05:21 +03:00
|
|
|
return ofont;
|
2008-08-30 20:55:25 +04:00
|
|
|
}
|
|
|
|
|
2009-01-16 23:05:21 +03:00
|
|
|
return NULL;
|
2008-08-30 20:55:25 +04:00
|
|
|
}
|
|
|
|
|
2009-04-18 20:55:59 +04:00
|
|
|
ULONG ami_unicode_text(struct RastPort *rp,const char *string,ULONG length,const struct css_style *style,ULONG dx, ULONG dy, ULONG c)
|
2008-08-30 20:55:25 +04:00
|
|
|
{
|
2009-01-24 15:24:15 +03:00
|
|
|
uint16 *utf16 = NULL, *outf16 = NULL;
|
2008-08-30 20:55:25 +04:00
|
|
|
struct OutlineFont *ofont;
|
|
|
|
struct GlyphMap *glyph;
|
|
|
|
ULONG i,gx,gy;
|
|
|
|
UBYTE *glyphbm;
|
|
|
|
UWORD posn;
|
2008-12-28 02:25:42 +03:00
|
|
|
struct BitMap *tbm;
|
|
|
|
struct RastPort trp;
|
|
|
|
uint32 width,height;
|
|
|
|
uint32 x=0,y=0;
|
2009-01-17 18:29:41 +03:00
|
|
|
size_t len;
|
2008-08-30 20:55:25 +04:00
|
|
|
|
2009-01-17 03:43:51 +03:00
|
|
|
if(!string || string[0]=='\0') return 0;
|
|
|
|
if(!length) return 0;
|
2008-08-30 20:55:25 +04:00
|
|
|
|
2009-02-18 02:44:17 +03:00
|
|
|
len = utf8_bounded_length(string, length);
|
2009-04-18 20:55:59 +04:00
|
|
|
if(utf8_to_enc(string,"UTF-16",length,(char **)&utf16) != UTF8_CONVERT_OK) return 0;
|
2009-01-24 15:24:15 +03:00
|
|
|
outf16 = utf16;
|
2009-01-16 23:05:21 +03:00
|
|
|
if(!(ofont = ami_open_outline_font(style))) return 0;
|
2008-08-30 20:55:25 +04:00
|
|
|
|
2009-01-17 03:43:51 +03:00
|
|
|
if(rp) SetRPAttrs(currp,RPTAG_APenColor,p96EncodeColor(RGBFB_A8B8G8R8,c),TAG_DONE);
|
|
|
|
|
|
|
|
dy++;
|
2008-12-28 02:25:42 +03:00
|
|
|
|
2009-01-17 18:29:41 +03:00
|
|
|
for(i=0;i<=len;i++)
|
2008-08-30 20:55:25 +04:00
|
|
|
{
|
|
|
|
if(ESetInfo(&ofont->olf_EEngine,
|
2009-01-17 18:29:41 +03:00
|
|
|
OT_GlyphCode,*utf16,
|
2008-08-30 20:55:25 +04:00
|
|
|
TAG_END) == OTERR_Success)
|
|
|
|
{
|
|
|
|
if(EObtainInfo(&ofont->olf_EEngine,
|
|
|
|
OT_GlyphMap8Bit,&glyph,
|
|
|
|
TAG_END) == 0)
|
|
|
|
{
|
|
|
|
glyphbm = glyph->glm_BitMap;
|
|
|
|
if(!glyphbm) continue;
|
|
|
|
|
2009-01-16 23:05:21 +03:00
|
|
|
if(rp)
|
|
|
|
{
|
|
|
|
BltBitMapTags(BLITA_SrcX,glyph->glm_BlackLeft,
|
2009-01-16 02:15:17 +03:00
|
|
|
BLITA_SrcY,glyph->glm_BlackTop,
|
|
|
|
BLITA_DestX,dx+x,
|
|
|
|
BLITA_DestY,dy-glyph->glm_Y1,
|
|
|
|
BLITA_Width,glyph->glm_X1,
|
2009-01-16 01:46:28 +03:00
|
|
|
BLITA_Height,glyph->glm_BlackHeight,
|
|
|
|
BLITA_Source,glyphbm,
|
|
|
|
BLITA_SrcType,BLITT_ALPHATEMPLATE,
|
2009-01-16 23:05:21 +03:00
|
|
|
BLITA_Dest,rp,
|
2009-01-16 01:46:28 +03:00
|
|
|
BLITA_DestType,BLITT_RASTPORT,
|
|
|
|
BLITA_SrcBytesPerRow,glyph->glm_BMModulo,
|
|
|
|
TAG_DONE);
|
2009-01-16 23:05:21 +03:00
|
|
|
}
|
2009-01-16 01:46:28 +03:00
|
|
|
|
2009-01-16 02:15:17 +03:00
|
|
|
x+= glyph->glm_X1;
|
2008-08-30 20:55:25 +04:00
|
|
|
|
|
|
|
EReleaseInfo(&ofont->olf_EEngine,
|
|
|
|
OT_GlyphMap8Bit,glyph,
|
|
|
|
TAG_END);
|
|
|
|
}
|
|
|
|
}
|
2009-01-17 18:29:41 +03:00
|
|
|
if (*utf16 < 0xD800 || 0xDFFF < *utf16)
|
|
|
|
utf16++;
|
|
|
|
else
|
|
|
|
utf16 += 2;
|
2008-08-30 20:55:25 +04:00
|
|
|
}
|
|
|
|
|
2009-01-24 15:24:15 +03:00
|
|
|
free(outf16);
|
2009-01-16 23:05:21 +03:00
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ami_init_fonts(void)
|
|
|
|
{
|
2009-01-18 15:15:48 +03:00
|
|
|
int i;
|
|
|
|
char *bname,*iname,*biname;
|
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
of[CSS_FONT_FAMILY_SANS_SERIF] = OpenOutlineFont(option_font_sans,NULL,OFF_OPEN);
|
|
|
|
of[CSS_FONT_FAMILY_SERIF] = OpenOutlineFont(option_font_serif,NULL,OFF_OPEN);
|
|
|
|
of[CSS_FONT_FAMILY_MONOSPACE] = OpenOutlineFont(option_font_mono,NULL,OFF_OPEN);
|
|
|
|
of[CSS_FONT_FAMILY_CURSIVE] = OpenOutlineFont(option_font_cursive,NULL,OFF_OPEN);
|
|
|
|
of[CSS_FONT_FAMILY_FANTASY] = OpenOutlineFont(option_font_fantasy,NULL,OFF_OPEN);
|
|
|
|
of[CSS_FONT_FAMILY_UNKNOWN] = OpenOutlineFont(option_font_sans,NULL,OFF_OPEN);
|
|
|
|
of[CSS_FONT_FAMILY_NOT_SET] = OpenOutlineFont(option_font_sans,NULL,OFF_OPEN);
|
|
|
|
|
|
|
|
for(i=CSS_FONT_FAMILY_SANS_SERIF;i<=CSS_FONT_FAMILY_NOT_SET;i++)
|
2009-01-16 23:05:21 +03:00
|
|
|
{
|
2009-04-01 21:36:18 +04:00
|
|
|
if(!of[i]) warn_user("FontError",""); // temporary error message
|
2009-01-20 19:53:06 +03:00
|
|
|
|
2009-04-18 20:55:59 +04:00
|
|
|
if(bname = (char *)GetTagData(OT_BName,0,of[i]->olf_OTagList))
|
2009-04-01 21:36:18 +04:00
|
|
|
{
|
|
|
|
ofb[i] = OpenOutlineFont(bname,NULL,OFF_OPEN);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ofb[i] = NULL;
|
|
|
|
}
|
2009-01-18 15:15:48 +03:00
|
|
|
|
2009-04-18 20:55:59 +04:00
|
|
|
if(iname = (char *)GetTagData(OT_IName,0,of[i]->olf_OTagList))
|
2009-04-01 21:36:18 +04:00
|
|
|
{
|
|
|
|
ofi[i] = OpenOutlineFont(iname,NULL,OFF_OPEN);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ofi[i] = NULL;
|
|
|
|
}
|
2009-01-20 19:53:06 +03:00
|
|
|
|
2009-04-18 20:55:59 +04:00
|
|
|
if(biname = (char *)GetTagData(OT_BIName,0,of[i]->olf_OTagList))
|
2009-04-01 21:36:18 +04:00
|
|
|
{
|
|
|
|
ofbi[i] = OpenOutlineFont(biname,NULL,OFF_OPEN);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ofbi[i] = NULL;
|
2009-01-18 15:15:48 +03:00
|
|
|
}
|
2009-01-16 23:05:21 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ami_close_fonts(void)
|
|
|
|
{
|
|
|
|
int i=0;
|
|
|
|
|
2009-04-01 21:36:18 +04:00
|
|
|
for(i=CSS_FONT_FAMILY_SANS_SERIF;i<=CSS_FONT_FAMILY_NOT_SET;i++)
|
2009-01-16 23:05:21 +03:00
|
|
|
{
|
2009-04-01 21:36:18 +04:00
|
|
|
if(of[i]) CloseOutlineFont(of[i],NULL);
|
|
|
|
if(ofb[i]) CloseOutlineFont(ofb[i],NULL);
|
|
|
|
if(ofi[i]) CloseOutlineFont(ofi[i],NULL);
|
|
|
|
if(ofbi[i]) CloseOutlineFont(ofbi[i],NULL);
|
2009-01-16 23:05:21 +03:00
|
|
|
}
|
2008-08-30 20:55:25 +04:00
|
|
|
}
|