Kage Studio 0.7.240121
A Simple Free and Open Source 2D Animation Software
Loading...
Searching...
No Matches
svg.h
Go to the documentation of this file.
1/*
2 * svg.h
3 *
4 * Copyright 2019-2024 Mj Mendoza IV <mj.mendoza.iv@gmail.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19 * MA 02110-1301, USA.
20 *
21 *
22 */
23
24#ifndef KAGE_UTIL_SVG_H
25 #define KAGE_UTIL_SVG_H
26
27 #include <vector>
28 #include <string>
29 #include <sstream>
30 #include <iostream>
31 #include <string.h>
32 #include <fstream>
33 #include "../xml/xml.h"
34 #include "svgtagproperty.h"
35 #include "svgtoken.h"
36 #include "svgtag.h"
37
38 class BasicSvg : public BasicXml {
39 public:
40 BasicSvg(std::string p_svgContent);
42 virtual ~BasicSvg();
43
44 void setContent(std::string p_svgContent);
45 std::string getContent();
46 bool parse(std::string p_content);
47 bool parse();
48
49 void setProperties(std::vector<SvgTagProperty> p_svgTagProperties);
50 std::string getProperties();
52 std::string toString();
53 void copy(BasicSvg p_svgTag);
54 bool equalTo(BasicSvg p_svgTag);
55
56 std::vector<SvgToken> _tokens;
57 bool tokenize();
59
60 void debugToken(unsigned int p_index);
61 void printSVG();
62 std::string getSVG();
63 bool setSVG(std::string p_svgdata);
64
65 static string openXMLFile(std::string p_path);
66 static bool isNumeric(std::string p_value);
67 protected:
68 unsigned int createTag(unsigned int p_index, SvgTag &p_svgTagParent);
69 void listChildren(std::vector<SvgTag> p_tags, std::string p_tab);
70 std::string getSvgChildren(std::vector<SvgTag> p_children, std::string p_tab);
71
72 std::string _svgContent;
73 std::vector<SvgTagProperty> _svgTagProperties;
75// std::vector<SvgTag> _children;
76 };
77#endif //KAGE_UTIL_SVG_H
virtual ~BasicSvg()
void listChildren(std::vector< SvgTag > p_tags, std::string p_tab)
void debugToken(unsigned int p_index)
std::string getProperties()
bool equalTo(BasicSvg p_svgTag)
SvgTag getRoot()
bool tokenize()
unsigned int createTag(unsigned int p_index, SvgTag &p_svgTagParent)
void copy(BasicSvg p_svgTag)
std::string _svgContent
Definition svg.h:72
std::string getSVG()
std::string getSvgChildren(std::vector< SvgTag > p_children, std::string p_tab)
static string openXMLFile(std::string p_path)
void printSVG()
std::string getContent()
std::vector< SvgToken > _tokens
Definition svg.h:56
bool parse(std::string p_content)
SvgTag _root
Definition svg.h:74
std::string toString()
bool setSVG(std::string p_svgdata)
BasicSvg(std::string p_svgContent)
static bool isNumeric(std::string p_value)
std::vector< SvgTagProperty > _svgTagProperties
Definition svg.h:73
void setProperties(std::vector< SvgTagProperty > p_svgTagProperties)
bool parse()
BasicSvg clone()
void setContent(std::string p_svgContent)
BasicXml(std::string p_xmlContent)
Definition xml.cpp:30
Definition svgtag.h:33