2008-08-10 13:57:41 +04:00
|
|
|
/*
|
2012-05-06 21:55:35 +04:00
|
|
|
* Copyright 2008, 2009, 2012 Chris Young <chris@unsatisfactorysoftware.co.uk>
|
2008-08-10 13:57:41 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AMIGA_FONT_H
|
|
|
|
#define AMIGA_FONT_H
|
|
|
|
|
2009-07-21 14:59:53 +04:00
|
|
|
#include "desktop/plotters.h"
|
2011-04-22 20:54:11 +04:00
|
|
|
#include <graphics/rastport.h>
|
2011-09-08 03:01:53 +04:00
|
|
|
#include <graphics/text.h>
|
2008-08-10 13:57:41 +04:00
|
|
|
|
2011-04-30 23:05:11 +04:00
|
|
|
struct ami_font_node;
|
|
|
|
|
|
|
|
ULONG ami_unicode_text(struct RastPort *rp, const char *string,
|
|
|
|
ULONG length, const plot_font_style_t *fstyle, ULONG x, ULONG y);
|
2011-04-22 20:54:11 +04:00
|
|
|
void ami_font_setdevicedpi(int id);
|
2009-01-16 23:05:21 +03:00
|
|
|
void ami_init_fonts(void);
|
|
|
|
void ami_close_fonts(void);
|
2011-04-30 23:05:11 +04:00
|
|
|
void ami_font_close(struct ami_font_node *node);
|
2011-09-08 03:01:53 +04:00
|
|
|
|
2012-05-06 21:55:35 +04:00
|
|
|
/* Alternate entry points into font_scan */
|
|
|
|
void ami_font_initscanner(bool force, bool save);
|
|
|
|
void ami_font_finiscanner(void);
|
|
|
|
void ami_font_savescanner(void);
|
|
|
|
|
2011-09-08 03:01:53 +04:00
|
|
|
/* Simple diskfont functions for graphics.library use (not page rendering) */
|
|
|
|
struct TextFont *ami_font_open_disk_font(struct TextAttr *tattr);
|
|
|
|
void ami_font_close_disk_font(struct TextFont *tfont);
|
2008-08-10 13:57:41 +04:00
|
|
|
#endif
|