summaryrefslogtreecommitdiffstats
path: root/src/utils/svg.h
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-11-03 12:34:42 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-11-03 12:34:42 (EDT)
commite3a5279794fd990b372b03c0e482659f20e2a9f2 (patch)
tree4c010c1a1f104f4bc23c892278ce9c062b845583 /src/utils/svg.h
parent52add8c106954eee744869f9d93419cc26bb389b (diff)
downloadmarquee-e3a5279794fd990b372b03c0e482659f20e2a9f2.zip
marquee-e3a5279794fd990b372b03c0e482659f20e2a9f2.tar.gz
marquee-e3a5279794fd990b372b03c0e482659f20e2a9f2.tar.bz2
src/utils/svg.[ch]: New files
Diffstat (limited to 'src/utils/svg.h')
-rw-r--r--src/utils/svg.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/utils/svg.h b/src/utils/svg.h
new file mode 100644
index 0000000..b0c2c4d
--- /dev/null
+++ b/src/utils/svg.h
@@ -0,0 +1,28 @@
+/*
+ * SVG coloring
+ *
+ * Copyright (C) 2017 Patrick McDermott
+ *
+ * This file is part of Marquee.
+ *
+ * Marquee 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.
+ *
+ * Marquee 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 Marquee. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include <glib.h>
+
+gboolean
+mq_svg_is_color_valid(const gchar *color) G_GNUC_PURE;
+
+gchar *
+mq_svg_set_color(const gchar *svg, const gchar *color);