summaryrefslogtreecommitdiff
path: root/cocoa/font.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2011-01-12 20:21:17 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2011-01-12 20:21:17 +0000
commitb58dcc351f3f7ec32ecb0553436ff9ee76e52551 (patch)
treefed57c711a544fb8272423e2645c5bbf2def25d7 /cocoa/font.h
parent8c09af55681ff4d4e40eba62fca0c219443a2fc7 (diff)
downloadnetsurf-b58dcc351f3f7ec32ecb0553436ff9ee76e52551.tar.gz
netsurf-b58dcc351f3f7ec32ecb0553436ff9ee76e52551.tar.bz2
Cocoa front end (credit: Sven Weidauer)
svn path=/trunk/netsurf/; revision=11292
Diffstat (limited to 'cocoa/font.h')
-rw-r--r--cocoa/font.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/cocoa/font.h b/cocoa/font.h
new file mode 100644
index 000000000..b65d62844
--- /dev/null
+++ b/cocoa/font.h
@@ -0,0 +1,24 @@
+/*
+ * Copyright 2011 Sven Weidauer <sven.weidauer@gmail.com>
+ *
+ * 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 COCOA_FONT_H
+#define COCOA_FONT_H
+
+void cocoa_draw_string( int x, int y, const char *bytes, size_t length, const plot_font_style_t *style );
+
+#endif