aboutsummaryrefslogtreecommitdiff
path: root/src/shape.h
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2014-01-12 22:20:07 +0100
committerThomas White <taw@bitwiz.org.uk>2014-01-12 22:20:07 +0100
commite0cfd1748e891548cadab2500447e2e944d08600 (patch)
tree1d1b1babf4fb5e91dfbf66fc3559b2aefb3ea1cb /src/shape.h
parentd66704db5091ec97d57a6939ecef8f33fb1aac76 (diff)
Most of the new interpreter structure
Diffstat (limited to 'src/shape.h')
-rw-r--r--src/shape.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/shape.h b/src/shape.h
new file mode 100644
index 0000000..3e218f4
--- /dev/null
+++ b/src/shape.h
@@ -0,0 +1,38 @@
+/*
+ * shape.h
+ *
+ * Copyright © 2014 Thomas White <taw@bitwiz.org.uk>
+ *
+ * This file is part of Colloquium.
+ *
+ * Colloquium 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, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 SHAPE_H
+#define SHAPE_H
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <pango/pangocairo.h>
+
+#include "wrap.h"
+
+extern int split_words(struct wrap_line *boxes, PangoContext *pc,
+ const char *text, PangoLanguage *lang, int editable,
+ struct sc_font *font);
+
+#endif /* SHAPE_H */