Render slides by default.

We should probably introduce an API to allow selecting notes instead, however
the default mode is to open whichever view we had open last for a given
document -- whereas for nowwe probably always want to render the slides.

Change-Id: I26540613d1a510f23e5abfc8fee2ad743c180f34
This commit is contained in:
Andrzej Hunt
2014-07-15 09:50:47 +02:00
parent 0618c5b854
commit a39f690a2a

View File

@@ -2225,8 +2225,6 @@ void SdXImpressDocument::paintTile( VirtualDevice& rDevice,
Region(
Rectangle( Point( nTilePosX, nTilePosY ),
Size( nTileWidth, nTileHeight ) ) ) );
// TODO: Set page kind in frameview?
}
void SdXImpressDocument::setPart( int nPart )
@@ -2234,6 +2232,13 @@ void SdXImpressDocument::setPart( int nPart )
DrawViewShell* pViewSh = dynamic_cast< DrawViewShell* >( mpDoc->GetDocSh()->GetViewShell() );
if (pViewSh)
{
// TODO: have an API to allow selecting between PK_STANDARD (just slide)
// and PK_NOTES (which shows the combined slide above notes). There is alo
// a PK_HANDOUT -- that however just shows multiple empty pages (it's also
// only possible to select page 0 in this mode, I have no idea how you
// then actually select what is on the handout page, which defaults to
// a 4x4 grid of empty pages).
pViewSh->SetPageKind( PK_STANDARD );
pViewSh->SwitchPage( nPart );
}
}