From cca66b9ec4e494c1d919bff0f71a820d8afab1fa Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 20:24:48 +0200 Subject: Adding upstream version 1.2.2. Signed-off-by: Daniel Baumann --- src/3rdparty/adaptagrams/libcola/output_svg.h | 80 +++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 src/3rdparty/adaptagrams/libcola/output_svg.h (limited to 'src/3rdparty/adaptagrams/libcola/output_svg.h') diff --git a/src/3rdparty/adaptagrams/libcola/output_svg.h b/src/3rdparty/adaptagrams/libcola/output_svg.h new file mode 100644 index 0000000..d68f161 --- /dev/null +++ b/src/3rdparty/adaptagrams/libcola/output_svg.h @@ -0,0 +1,80 @@ +/* + * vim: ts=4 sw=4 et tw=0 wm=0 + * + * libcola - A library providing force-directed network layout using the + * stress-majorization method subject to separation constraints. + * + * Copyright (C) 2006-2008 Monash University + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * See the file LICENSE.LGPL distributed with the library. + * + * This library 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. + * +*/ + +#ifndef _OUTPUT_SVG_H +#define _OUTPUT_SVG_H + +#include "libcola/config.h" +#include "libcola/cola.h" + +#ifdef HAVE_CAIROMM +#include +#include +#endif + +class OutputFile { +public: + std::vector const &rs; + std::vector const &es; + std::vector *routes; + cola::RootCluster const * rc; + std::string const fname; + bool rects; + bool curvedEdges; + OutputFile(std::vector const &rs, + std::vector const &es, + cola::RootCluster const * rc, + std::string const fname, + const bool rects=false, + const bool curvedEdges=false) + : rs(rs), + es(es), + routes(nullptr), + rc(rc), + fname(fname), + rects(rects), + curvedEdges(curvedEdges) {} + void generate(); + void setLabels(std::vector ls) { + labels.resize(ls.size()); + std::copy(ls.begin(),ls.end(),labels.begin()); + } + void setLabels(const unsigned n, const char **ls) { + labels.resize(n); + for(unsigned i=0;i const &cr, + cola::Cluster &c, const double xmin, const double ymin); + void draw_edges(Cairo::RefPtr &cr, + std::vector const & es, + double const xmin, double const ymin); + void draw_curved_edges(Cairo::RefPtr &cr, + std::vector const & es, + const double xmin, + const double ymin); + void openCairo(Cairo::RefPtr &cr, double width, double height); +#endif // HAVE_CAIROMM + std::vector labels; +}; +#endif // _OUTPUT_SVG_H -- cgit v1.2.3