summaryrefslogtreecommitdiffstats
path: root/src/document.cpp
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2015-04-10 22:54:49 +0000
committerJabiertxof <jtx@jtx.marker.es>2015-04-10 22:54:49 +0000
commit1df5d1b28c59070eeabeac749e2fad0ceb6a781d (patch)
tree544be4e0eb7b62bc1fc5f62e2829ad996027acda /src/document.cpp
parentFix coding style issues in transform by two points LPE (diff)
parentadded info about multiple pen feature in gui (diff)
downloadinkscape-1df5d1b28c59070eeabeac749e2fad0ceb6a781d.tar.gz
inkscape-1df5d1b28c59070eeabeac749e2fad0ceb6a781d.zip
update to trunk
(bzr r13879.1.16)
Diffstat (limited to 'src/document.cpp')
-rw-r--r--src/document.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/document.cpp b/src/document.cpp
index 62e2f5b46..1c6bb76de 100644
--- a/src/document.cpp
+++ b/src/document.cpp
@@ -764,6 +764,17 @@ void SPDocument::setHeight(const Inkscape::Util::Quantity &height, bool changeSi
root->updateRepr();
}
+Geom::Rect SPDocument::getViewBox() const
+{
+ Geom::Rect viewBox;
+ if (root->viewBox_set) {
+ viewBox = root->viewBox;
+ } else {
+ viewBox = Geom::Rect::from_xywh( 0, 0, getWidth().value("px"), getHeight().value("px"));
+ }
+ return viewBox;
+}
+
void SPDocument::setViewBox(const Geom::Rect &viewBox)
{
root->viewBox_set = true;