1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2010-2011 - 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.
21 #include "SmartHandle.h"
25 , viewportHeight(1000)
33 bool SVG::Save( const CString
& path
)
36 CAutoFile hFile
= CreateFile(path
, GENERIC_WRITE
, FILE_SHARE_DELETE
, NULL
, CREATE_ALWAYS
, FILE_ATTRIBUTE_NORMAL
, NULL
);
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
, NULL
))
47 for (std::vector
<CStringA
>::const_iterator it
= objects
.begin(); it
!= objects
.end(); ++it
)
49 if (!WriteFile(hFile
, *it
, (DWORD
)it
->GetLength(), &dwWritten
, NULL
))
51 if (!WriteFile(hFile
, "\r\n", (DWORD
)2, &dwWritten
, NULL
))
54 if (!WriteFile(hFile
, footer
, (DWORD
)footer
.GetLength(), &dwWritten
, NULL
))
61 void SVG::RoundedRectangle( int x
, int y
, int width
, int height
, Gdiplus::Color stroke
, int penWidth
, Gdiplus::Color fill
, int radius
/*= 0*/ )
64 sObj
.Format("<rect x=\"%d\" y=\"%d\" height=\"%d\" width=\"%d\" rx=\"%d\" ry=\"%d\" style=\"stroke:#%06lx; stroke-width:%d; fill: #%06lx\"/>",
65 x
, y
, height
, width
, radius
, radius
, GetColor(stroke
), penWidth
, GetColor(fill
));
67 objects
.push_back(sObj
);
70 void SVG::Polygon( const Gdiplus::PointF
* points
, int numPoints
, Gdiplus::Color stroke
, int penWidth
, Gdiplus::Color fill
)
74 for (int i
= 0; i
< numPoints
; ++i
)
76 sTemp
.Format("%d,%d ", (int)points
[i
].X
, (int)points
[i
].Y
);
79 pointstring
.TrimRight();
82 sObj
.Format("<polygon points=\"%s\" style=\"stroke:#%06lx; stroke-width:%d; fill:#%06lx;\"/>",
83 (LPCSTR
)pointstring
, GetColor(stroke
), penWidth
, GetColor(fill
));
85 objects
.push_back(sObj
);
88 void SVG::GradientRectangle( int x
, int y
, int width
, int height
, Gdiplus::Color topColor
, Gdiplus::Color bottomColor
, Gdiplus::Color stroke
)
94 <linearGradient id=\"linearGradient%d\" \
95 x1=\"0%%\" y1=\"0%%\" \
96 x2=\"0%%\" y2=\"100%%\" \
97 spreadMethod=\"pad\">\
98 <stop offset=\"0%%\" stop-color=\"#%06lx\" stop-opacity=\"1\"/>\
99 <stop offset=\"100%%\" stop-color=\"#%06lx\" stop-opacity=\"1\"/>\
102 <rect x=\"%d\" y=\"%d\" height=\"%d\" width=\"%d\" style=\"stroke:#%06lx; fill::url(#linearGradient%d)\"/>\
104 (int)objects
.size(), GetColor(topColor
), GetColor(bottomColor
), x
, y
, height
, width
, GetColor(stroke
), (int)objects
.size());
106 objects
.push_back(sObj
);
109 void SVG::PolyBezier( const POINT
* points
, int numPoints
, Gdiplus::Color stroke
)
114 CStringA pointstring
;
116 sTemp
.Format("M%d,%d ", points
[0].x
, points
[0].y
);
117 pointstring
+= sTemp
;
119 for (int i
= 1; i
< numPoints
; i
+= 3)
121 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
);
122 pointstring
+= sTemp
;
124 pointstring
.TrimRight();
127 sObj
.Format("<path d=\"%s\" style=\"stroke:#%06lx; fill:none;\"/>",
128 (LPCSTR
)pointstring
, GetColor(stroke
));
130 objects
.push_back(sObj
);
133 void SVG::Ellipse( int x
, int y
, int width
, int height
, Gdiplus::Color stroke
, int penWidth
, Gdiplus::Color fill
)
135 int cx
= x
+ width
/2;
136 int cy
= y
+ height
/2;
140 sObj
.Format("<ellipse cx=\"%d\" cy=\"%d\" rx=\"%d\" ry=\"%d\" style=\"stroke:#%06lx; stroke-width:%d; fill: #%06lx\"/>",
141 cx
, cy
, rx
, ry
, GetColor(stroke
), penWidth
, GetColor(fill
));
143 objects
.push_back(sObj
);
146 void SVG::CenteredText( int x
, int y
, LPCSTR font
, int fontsize
, bool italic
, bool bold
, Gdiplus::Color color
, LPCSTR text
)
149 sObj
.Format("<text x=\"%d\" y=\"%d\" \
150 style=\"font-family:%s;\
155 text-anchor: middle;\
156 fill:#%06lx;\">%s</text>",
157 x
, y
, font
, fontsize
, italic
? "italic" : "none", bold
? "bold" : "none", GetColor(color
), text
);
159 objects
.push_back(sObj
);
162 DWORD
SVG::GetColor( Gdiplus::Color c
)
164 return ((DWORD
)c
.GetRed() << 16) | ((DWORD
)c
.GetGreen() << 8) | ((DWORD
)c
.GetBlue());