Drawing: Symbol command

A new symbol command and Drawing::FeatureViewSymbol object allow to
load the contents of an external svg file and place it as a symbol
on a Drawing page. This symbol can then be moved and rescaled.
This commit is contained in:
Yorik van Havre
2013-11-01 19:12:09 -02:00
parent df3d7ff364
commit 1f2c5b04bb
9 changed files with 701 additions and 0 deletions

View File

@@ -64,6 +64,7 @@ Gui::MenuItem* Workbench::setupMenuBar() const
*part << "Drawing_OpenBrowserView";
*part << "Drawing_Annotation";
*part << "Drawing_Clip";
*part << "Drawing_Symbol";
*part << "Drawing_ExportPage";
*part << "Separator";
*part << "Drawing_ProjectShape";
@@ -84,6 +85,7 @@ Gui::ToolBarItem* Workbench::setupToolBars() const
*part << "Drawing_OpenBrowserView";
*part << "Drawing_Annotation";
*part << "Drawing_Clip";
*part << "Drawing_Symbol";
*part << "Drawing_ExportPage";
return root;
}