diff options
author | Andrzej Hunt <andrzej.hunt@collabora.com> | 2014-07-08 15:23:06 +0200 |
---|---|---|
committer | Andrzej Hunt <andrzej.hunt@collabora.com> | 2014-07-12 05:19:13 +0200 |
commit | 4d15212ef8de89a71387c00bdeb7d9a41409e467 (patch) | |
tree | 8607981865d3044ba662698cb615f8a04217da69 /sc/source | |
parent | 312883ad755e76cee95735f9faca4a8354b068fd (diff) |
Add get/setPart to ITiledRenderable, and implement for sw/sc.
Change-Id: Iec3d6374f029149cadf8fb9c9b16fec90146c31e
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/ui/unoobj/docuno.cxx | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/sc/source/ui/unoobj/docuno.cxx b/sc/source/ui/unoobj/docuno.cxx index 6852d1c1c438..2893974ced06 100644 --- a/sc/source/ui/unoobj/docuno.cxx +++ b/sc/source/ui/unoobj/docuno.cxx @@ -461,6 +461,24 @@ void ScModelObj::paintTile( VirtualDevice& rDevice, nTilePosX, nTilePosY, nTileWidth, nTileHeight ); } +void ScModelObj::setPart( int nPart ) +{ + ScViewData* pViewData = ScDocShell::GetViewData(); + pViewData->SetTabNo( nPart ); +} + +int ScModelObj::getParts() +{ + ScDocument& rDoc = pDocShell->GetDocument(); + return rDoc.GetTableCount(); +} + +int ScModelObj::getPart() +{ + ScViewData* pViewData = ScDocShell::GetViewData(); + return pViewData->GetTabNo(); +} + Size ScModelObj::getDocumentSize() { // TODO: not sure what we want to do here, maybe just return the size for a certain |