/* * shape.h * * Copyright © 2014-2015 Thomas White * * 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 . * */ #ifndef SHAPE_H #define SHAPE_H #ifdef HAVE_CONFIG_H #include #endif #include #include "wrap.h" extern void shape_box(struct wrap_box *box); extern int split_words(struct wrap_line *boxes, PangoContext *pc, SCBlock *bl, PangoLanguage *lang, int editable, SCInterpreter *scin); extern void add_image_box(struct wrap_line *line, const char *filename, int w, int h, int editable); extern void add_callback_box(struct wrap_line *line, double w, double h, SCCallbackDrawFunc func, void *bvp, void *vp); #endif /* SHAPE_H */