summaryrefslogtreecommitdiff
path: root/gtk/font_pango.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-04-23 23:33:37 +0100
committerVincent Sanders <vince@kyllikki.org>2016-04-23 23:33:37 +0100
commit922faa743b16fcfe661d18be9efcaf329186fbe9 (patch)
treee73535ee28dd9101834f6d3564d027af6ca3cc88 /gtk/font_pango.h
parent974a4a21e16a2da85a66aae9b80eeca15ca26dd6 (diff)
downloadnetsurf-922faa743b16fcfe661d18be9efcaf329186fbe9.tar.gz
netsurf-922faa743b16fcfe661d18be9efcaf329186fbe9.tar.bz2
Update gtk frontend to use layout table
Diffstat (limited to 'gtk/font_pango.h')
-rw-r--r--gtk/font_pango.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/gtk/font_pango.h b/gtk/font_pango.h
deleted file mode 100644
index edcd19b47..000000000
--- a/gtk/font_pango.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Copyright 2005 James Bursa <bursa@users.sourceforge.net>
- *
- * 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/>.
- */
-
-/** \file
- * Font handling (GTK interface).
- */
-
-#ifndef _NETSURF_GTK_FONT_PANGO_H_
-#define _NETSURF_GTK_FONT_PANGO_H_
-
-#include <stdbool.h>
-
-#include "desktop/plot_style.h"
-
-bool nsfont_paint(int x, int y, const char *string, size_t length,
- const plot_font_style_t *fstyle);
-
-PangoFontDescription *nsfont_style_to_description(
- const plot_font_style_t *fstyle);
-
-
-#endif