summaryrefslogtreecommitdiffstats
path: root/slideshow/source/engine/shapes/externalshapebase.cxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2009-01-06 08:40:41 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2009-01-06 08:40:41 +0000
commit5d06990ec5f71b3c6c462ca55f46ec0a4d2ccd96 (patch)
treeff4ef820dd70bca6de20f2dc2e6b28538a0136f1 /slideshow/source/engine/shapes/externalshapebase.cxx
parentCWS-TOOLING: integrate CWS overline3 (diff)
downloadcore-5d06990ec5f71b3c6c462ca55f46ec0a4d2ccd96.tar.gz
core-5d06990ec5f71b3c6c462ca55f46ec0a4d2ccd96.zip
CWS-TOOLING: integrate CWS impress147
2008-12-16 15:51:15 +0100 wg r265553 : i96805 2008-12-03 12:32:33 +0100 wg r264766 : 96805 2008-12-03 11:40:11 +0100 wg r264761 : 96805 2008-11-20 15:39:56 +0100 cl r264062 : migrated cws from cvs to svn 2008-11-19 14:16:40 +0100 cl r263992 : CWS-TOOLING: rebase CWS impress147 to trunk@263288 (milestone: DEV300:m35)
Diffstat (limited to 'slideshow/source/engine/shapes/externalshapebase.cxx')
-rw-r--r--slideshow/source/engine/shapes/externalshapebase.cxx27
1 files changed, 24 insertions, 3 deletions
diff --git a/slideshow/source/engine/shapes/externalshapebase.cxx b/slideshow/source/engine/shapes/externalshapebase.cxx
index 7c7925d3396e..a2f4e1d96b1a 100644
--- a/slideshow/source/engine/shapes/externalshapebase.cxx
+++ b/slideshow/source/engine/shapes/externalshapebase.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: externalshapebase.cxx,v $
- * $Revision: 1.4 $
+ * $Revision: 1.4.2.1 $
*
* This file is part of OpenOffice.org.
*
@@ -141,20 +141,41 @@ namespace slideshow
// ---------------------------------------------------------------------
- void ExternalShapeBase::enterAnimationMode()
+ void ExternalShapeBase::play()
{
implStartIntrinsicAnimation();
}
// ---------------------------------------------------------------------
- void ExternalShapeBase::leaveAnimationMode()
+ void ExternalShapeBase::stop()
{
implEndIntrinsicAnimation();
}
// ---------------------------------------------------------------------
+ void ExternalShapeBase::pause()
+ {
+ implPauseIntrinsicAnimation();
+ }
+
+ // ---------------------------------------------------------------------
+
+ bool ExternalShapeBase::isPlaying() const
+ {
+ return implIsIntrinsicAnimationPlaying();
+ }
+
+ // ---------------------------------------------------------------------
+
+ void ExternalShapeBase::setMediaTime(double fTime)
+ {
+ implSetIntrinsicAnimationTime(fTime);
+ }
+
+ // ---------------------------------------------------------------------
+
bool ExternalShapeBase::update() const
{
return render();