Update editorconfig
[TortoiseGit.git] / src / Utils / MiscUI / SVG.cpp
blobff0116ef6409d019a37f980d4210cc4f2e1f5af5
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2010-2011, 2014 - TortoiseSVN
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software Foundation,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #include "stdafx.h"
20 #include "SVG.h"
21 #include "SmartHandle.h"
23 SVG::SVG()
24 : viewportWidth(1000)
25 , viewportHeight(1000)
29 SVG::~SVG()
33 bool SVG::Save( const CString& path )
35 DWORD dwWritten = 0;
36 CAutoFile hFile = CreateFile(path, GENERIC_WRITE, FILE_SHARE_DELETE, nullptr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, nullptr);
37 if (!hFile)
38 return false;
40 CStringA header;
41 header.Format("<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"%d\" height=\"%d\" viewBox=\"0 0 %d %d\">\r\n", viewportWidth, viewportHeight, viewportWidth, viewportHeight);
42 CStringA footer = "\r\n</svg>";
44 if (!WriteFile(hFile, header, (DWORD)header.GetLength(), &dwWritten, nullptr))
45 return false;
47 for (const auto& object : objects)
49 if (!WriteFile(hFile, object, (DWORD)object.GetLength(), &dwWritten, nullptr))
50 return false;
51 if (!WriteFile(hFile, "\r\n", (DWORD)2, &dwWritten, nullptr))
52 return false;
54 if (!WriteFile(hFile, footer, (DWORD)footer.GetLength(), &dwWritten, nullptr))
55 return false;
57 return true;
61 void SVG::RoundedRectangle( int x, int y, int width, int height, Gdiplus::Color stroke, int penWidth, Gdiplus::Color fill, int radius /*= 0*/, int mode )
63 CStringA sObj,tmp;
64 if(mode == 3)
66 sObj.Format("<rect x=\"%d\" y=\"%d\" height=\"%d\" width=\"%d\" rx=\"%d\" ry=\"%d\" style=\"stroke:#%06lx; stroke-width:%d; fill: #%06lx\"/>",
67 x, y, height, width, radius, radius, GetColor(stroke), penWidth, GetColor(fill));
68 }else
70 sObj += "<path d=\"";
71 if(mode & 0x1)
73 tmp.Format("M %d %d a %d %d 0 0 1 %d %d ", x, y+radius, radius, radius, radius, -radius);
74 sObj += tmp;
75 tmp.Format("h %d ", width - 2*radius);
76 sObj += tmp;
77 tmp.Format("a %d %d 0 0 1 %d %d ", radius, radius, radius, radius);
78 sObj += tmp;
79 }else
81 tmp.Format("M %d %d h %d ",x, y, width);
82 sObj += tmp;
85 if(mode & 0x2)
87 tmp.Format("V %d a %d %d 0 0 1 %d %d ", y+height-radius, radius,radius, -radius, radius);
88 sObj += tmp;
89 tmp.Format("h %d a %d %d 0 0 1 %d %d z ", - width + 2* radius, radius,radius, -radius, -radius);
90 sObj += tmp;
91 }else
93 tmp.Format("V %d h %d z ", y+height, -width);
94 sObj += tmp;
96 sObj +=_T("\" ");
97 tmp.Format("style=\"stroke:#%06lx; stroke-width:%d; fill: #%06lx\"/>", GetColor(stroke), penWidth, GetColor(fill));
98 sObj += tmp;
100 objects.push_back(sObj);
103 void SVG::Polygon( const Gdiplus::PointF * points, int numPoints, Gdiplus::Color stroke, int penWidth, Gdiplus::Color fill )
105 CStringA pointstring;
106 CStringA sTemp;
107 for (int i = 0; i < numPoints; ++i)
109 sTemp.Format("%d,%d ", (int)points[i].X, (int)points[i].Y);
110 pointstring += sTemp;
112 pointstring.TrimRight();
114 CStringA sObj;
115 sObj.Format("<polygon points=\"%s\" style=\"stroke:#%06lx; stroke-width:%d; fill:#%06lx;\"/>",
116 (LPCSTR)pointstring, GetColor(stroke), penWidth, GetColor(fill));
118 objects.push_back(sObj);
121 void SVG::DrawPath( const Gdiplus::PointF * points, int numPoints, Gdiplus::Color stroke, int penWidth, Gdiplus::Color fill )
123 CStringA pointstring;
124 CStringA sTemp;
125 for (int i = 0; i < numPoints; ++i)
127 sTemp.Format("%c %d %d ", i==0? 'M':'L', (int)points[i].X, (int)points[i].Y);
128 pointstring += sTemp;
130 pointstring.TrimRight();
132 CStringA sObj;
133 sObj.Format("<path d=\"%s\" style=\"stroke:#%06lx; stroke-width:%d; fill:#%06lx;\"/>",
134 (LPCSTR)pointstring, GetColor(stroke), penWidth, GetColor(fill));
136 objects.push_back(sObj);
139 void SVG::Polyline( const Gdiplus::PointF * points, int numPoints, Gdiplus::Color stroke, int penWidth)
141 CStringA pointstring;
142 CStringA sTemp;
143 for (int i = 0; i < numPoints; ++i)
145 sTemp.Format("%d,%d ", (int)points[i].X, (int)points[i].Y);
146 pointstring += sTemp;
148 pointstring.TrimRight();
150 CStringA sObj;
151 sObj.Format("<polyline points=\"%s\" style=\"stroke:#%06lx; stroke-width:%d; fill:none;\"/>",
152 (LPCSTR)pointstring, GetColor(stroke), penWidth);
154 objects.push_back(sObj);
156 void SVG::GradientRectangle( int x, int y, int width, int height, Gdiplus::Color topColor, Gdiplus::Color bottomColor, Gdiplus::Color stroke )
158 CStringA sObj;
159 sObj.Format(
160 "<g>\
161 <defs>\
162 <linearGradient id=\"linearGradient%d\" \
163 x1=\"0%%\" y1=\"0%%\" \
164 x2=\"0%%\" y2=\"100%%\" \
165 spreadMethod=\"pad\">\
166 <stop offset=\"0%%\" stop-color=\"#%06lx\" stop-opacity=\"1\"/>\
167 <stop offset=\"100%%\" stop-color=\"#%06lx\" stop-opacity=\"1\"/>\
168 </linearGradient>\
169 </defs>\
170 <rect x=\"%d\" y=\"%d\" height=\"%d\" width=\"%d\" style=\"stroke:#%06lx; fill::url(#linearGradient%d)\"/>\
171 </g>",
172 (int)objects.size(), GetColor(topColor), GetColor(bottomColor), x, y, height, width, GetColor(stroke), (int)objects.size());
174 objects.push_back(sObj);
177 void SVG::PolyBezier( const POINT * points, int numPoints, Gdiplus::Color stroke )
179 if (numPoints == 0)
180 return;
182 CStringA pointstring;
183 CStringA sTemp;
184 sTemp.Format("M%d,%d ", points[0].x, points[0].y);
185 pointstring += sTemp;
187 for (int i = 1; i < numPoints; i += 3)
189 sTemp.Format("C%d,%d %d,%d %d,%d", points[i].x, points[i].y, points[i+1].x, points[i+1].y, points[i+2].x, points[i+2].y);
190 pointstring += sTemp;
192 pointstring.TrimRight();
194 CStringA sObj;
195 sObj.Format("<path d=\"%s\" style=\"stroke:#%06lx; fill:none;\"/>",
196 (LPCSTR)pointstring, GetColor(stroke));
198 objects.push_back(sObj);
201 void SVG::Ellipse( int x, int y, int width, int height, Gdiplus::Color stroke, int penWidth, Gdiplus::Color fill )
203 int cx = x + width/2;
204 int cy = y + height/2;
205 int rx = width/2;
206 int ry = height/2;
207 CStringA sObj;
208 sObj.Format("<ellipse cx=\"%d\" cy=\"%d\" rx=\"%d\" ry=\"%d\" style=\"stroke:#%06lx; stroke-width:%d; fill: #%06lx\"/>",
209 cx, cy, rx, ry, GetColor(stroke), penWidth, GetColor(fill));
211 objects.push_back(sObj);
214 void SVG::Text( int x, int y, LPCSTR font, int fontsize, bool italic, bool bold, Gdiplus::Color color, LPCSTR text , int al)
216 CStringA sObj;
217 sObj.Format("<text x=\"%d\" y=\"%d\" \
218 style=\"font-family:%s;\
219 font-size:%dpt;\
220 font-style:%s;\
221 font-weight:%s;\
222 stroke:none;\
223 text-anchor: %s;\
224 fill:#%06lx;\">%s</text>",
225 x, y, font, fontsize, italic ? "italic" : "none", bold ? "bold" : "none",
226 al==SVG::left? "left": al==SVG::middle? "middle": "right",
227 GetColor(color),text);
229 objects.push_back(sObj);
232 DWORD SVG::GetColor( Gdiplus::Color c ) const
234 return ((DWORD)c.GetRed() << 16) | ((DWORD)c.GetGreen() << 8) | ((DWORD)c.GetBlue());