summaryrefslogtreecommitdiff
path: root/render/table.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2005-07-02 18:06:10 +0000
committerJames Bursa <james@netsurf-browser.org>2005-07-02 18:06:10 +0000
commit894ba8b6230ffa57e1a5037adbd1b246a9a877da (patch)
tree00b8b0ec998184d225b64e10cd42c748f64ca61e /render/table.h
parent39c981a4d802546c67592c3f7b5fb5e0fb4fe467 (diff)
downloadnetsurf-894ba8b6230ffa57e1a5037adbd1b246a9a877da.tar.gz
netsurf-894ba8b6230ffa57e1a5037adbd1b246a9a877da.tar.bz2
[project @ 2005-07-02 18:06:10 by bursa]
New files for some table layout functions. svn path=/import/netsurf/; revision=1776
Diffstat (limited to 'render/table.h')
-rw-r--r--render/table.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/render/table.h b/render/table.h
new file mode 100644
index 000000000..123ddfa84
--- /dev/null
+++ b/render/table.h
@@ -0,0 +1,22 @@
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2005 James Bursa <bursa@users.sourceforge.net>
+ */
+
+/** \file
+ * Table processing and layout (interface).
+ */
+
+#ifndef _NETSURF_RENDER_TABLE_H_
+#define _NETSURF_RENDER_TABLE_H_
+
+#include <stdbool.h>
+
+struct box;
+
+bool table_calculate_column_types(struct box *table);
+void table_collapse_borders(struct box *table);
+
+#endif