Add win32 mouse button events.
This commit is contained in:
parent
2bc53186bc
commit
78a4fa99ff
20 changed files with 141 additions and 53 deletions
|
@ -41,9 +41,14 @@ public:
|
|||
}
|
||||
|
||||
void writeSvg(const Path& path)
|
||||
{
|
||||
writeSvg(path, mSurface->getScene());
|
||||
}
|
||||
|
||||
static void writeSvg(const Path& path, Scene* scene)
|
||||
{
|
||||
SvgConverter converter;
|
||||
auto svg_document = converter.convert(mSurface->getScene());
|
||||
auto svg_document = converter.convert(scene);
|
||||
|
||||
SvgWriter writer;
|
||||
auto svg_content = writer.toString(svg_document.get());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue