2000-09-18 18:16:46 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 12:35:24 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 18:16:46 -05:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 18:16:46 -05:00
|
|
|
*
|
2008-04-10 12:35:24 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 18:16:46 -05:00
|
|
|
*
|
2008-04-10 12:35:24 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 18:16:46 -05:00
|
|
|
*
|
2008-04-10 12:35:24 -05:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2000-09-18 18:16:46 -05:00
|
|
|
*
|
2008-04-10 12:35:24 -05:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2000-09-18 18:16:46 -05:00
|
|
|
*
|
2008-04-10 12:35:24 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2000-09-18 18:16:46 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-16 12:13:40 -05:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_sd.hxx"
|
2000-09-18 18:16:46 -05:00
|
|
|
#include <tools/urlobj.hxx>
|
2009-10-15 17:05:16 -05:00
|
|
|
#include <svl/smplhint.hxx>
|
2000-09-18 18:16:46 -05:00
|
|
|
#include "svx/xtable.hxx"
|
|
|
|
#include <svx/svdopath.hxx>
|
2009-10-15 17:05:16 -05:00
|
|
|
#include <svl/urihelper.hxx>
|
2010-01-08 11:32:51 -06:00
|
|
|
#include <editeng/flditem.hxx>
|
|
|
|
#include <editeng/eeitem.hxx>
|
2000-09-18 18:16:46 -05:00
|
|
|
|
|
|
|
#include "anminfo.hxx"
|
|
|
|
#include "glob.hxx"
|
|
|
|
#include "sdiocmpt.hxx"
|
|
|
|
#include "drawdoc.hxx"
|
|
|
|
|
2001-08-06 02:34:08 -05:00
|
|
|
// #90477#
|
|
|
|
#include <tools/tenccvt.hxx>
|
|
|
|
|
2000-09-18 18:16:46 -05:00
|
|
|
using namespace ::com::sun::star;
|
|
|
|
|
2009-05-19 04:32:45 -05:00
|
|
|
SdAnimationInfo::SdAnimationInfo(SdrObject& rObject)
|
2000-09-18 18:16:46 -05:00
|
|
|
: SdrObjUserData(SdUDInventor, SD_ANIMATIONINFO_ID, 0),
|
2006-01-10 07:25:05 -06:00
|
|
|
mePresObjKind (PRESOBJ_NONE),
|
2006-12-12 09:30:40 -06:00
|
|
|
meEffect (presentation::AnimationEffect_NONE),
|
|
|
|
meTextEffect (presentation::AnimationEffect_NONE),
|
|
|
|
meSpeed (presentation::AnimationSpeed_SLOW),
|
|
|
|
mbActive (TRUE),
|
|
|
|
mbDimPrevious (FALSE),
|
|
|
|
mbIsMovie (FALSE),
|
|
|
|
mbDimHide (FALSE),
|
|
|
|
mbSoundOn (FALSE),
|
|
|
|
mbPlayFull (FALSE),
|
|
|
|
mpPathObj (NULL),
|
|
|
|
meClickAction (presentation::ClickAction_NONE),
|
|
|
|
meSecondEffect (presentation::AnimationEffect_NONE),
|
|
|
|
meSecondSpeed (presentation::AnimationSpeed_SLOW),
|
|
|
|
mbSecondSoundOn (FALSE),
|
|
|
|
mbSecondPlayFull (FALSE),
|
|
|
|
mnVerb (0),
|
2009-05-19 04:32:45 -05:00
|
|
|
mnPresOrder (LIST_APPEND),
|
|
|
|
mrObject (rObject)
|
2000-09-18 18:16:46 -05:00
|
|
|
{
|
2006-12-12 09:30:40 -06:00
|
|
|
maBlueScreen = RGB_Color(COL_LIGHTMAGENTA);
|
|
|
|
maDimColor = RGB_Color(COL_LIGHTGRAY);
|
2000-09-18 18:16:46 -05:00
|
|
|
}
|
|
|
|
|
2009-05-19 04:32:45 -05:00
|
|
|
SdAnimationInfo::SdAnimationInfo(const SdAnimationInfo& rAnmInfo, SdrObject& rObject)
|
2000-09-18 18:16:46 -05:00
|
|
|
: SdrObjUserData (rAnmInfo),
|
2006-01-10 07:25:05 -06:00
|
|
|
mePresObjKind (PRESOBJ_NONE),
|
2006-12-12 09:30:40 -06:00
|
|
|
meEffect (rAnmInfo.meEffect),
|
|
|
|
meTextEffect (rAnmInfo.meTextEffect),
|
|
|
|
meSpeed (rAnmInfo.meSpeed),
|
|
|
|
mbActive (rAnmInfo.mbActive),
|
|
|
|
mbDimPrevious (rAnmInfo.mbDimPrevious),
|
|
|
|
mbIsMovie (rAnmInfo.mbIsMovie),
|
|
|
|
mbDimHide (rAnmInfo.mbDimHide),
|
|
|
|
maBlueScreen (rAnmInfo.maBlueScreen),
|
|
|
|
maDimColor (rAnmInfo.maDimColor),
|
|
|
|
maSoundFile (rAnmInfo.maSoundFile),
|
|
|
|
mbSoundOn (rAnmInfo.mbSoundOn),
|
|
|
|
mbPlayFull (rAnmInfo.mbPlayFull),
|
|
|
|
mpPathObj (NULL),
|
|
|
|
meClickAction (rAnmInfo.meClickAction),
|
|
|
|
meSecondEffect (rAnmInfo.meSecondEffect),
|
|
|
|
meSecondSpeed (rAnmInfo.meSecondSpeed),
|
|
|
|
maSecondSoundFile (rAnmInfo.maSecondSoundFile),
|
|
|
|
mbSecondSoundOn (rAnmInfo.mbSecondSoundOn),
|
|
|
|
mbSecondPlayFull (rAnmInfo.mbSecondPlayFull),
|
2009-05-19 04:32:45 -05:00
|
|
|
// maBookmark (rAnmInfo.maBookmark),
|
2006-12-12 09:30:40 -06:00
|
|
|
mnVerb (rAnmInfo.mnVerb),
|
2009-05-19 04:32:45 -05:00
|
|
|
mnPresOrder (LIST_APPEND),
|
|
|
|
mrObject (rObject)
|
2000-09-18 18:16:46 -05:00
|
|
|
{
|
2006-01-10 07:25:05 -06:00
|
|
|
// can not be copied
|
2006-12-12 09:30:40 -06:00
|
|
|
if(meEffect == presentation::AnimationEffect_PATH)
|
|
|
|
meEffect = presentation::AnimationEffect_NONE;
|
2000-09-18 18:16:46 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SdAnimationInfo::~SdAnimationInfo()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-05-19 04:32:45 -05:00
|
|
|
SdrObjUserData* SdAnimationInfo::Clone(SdrObject* pObject) const
|
|
|
|
{
|
|
|
|
DBG_ASSERT( pObject, "SdAnimationInfo::Clone(), pObject must not be null!" );
|
|
|
|
if( pObject == 0 )
|
|
|
|
pObject = &mrObject;
|
|
|
|
|
|
|
|
return new SdAnimationInfo(*this, *pObject );
|
|
|
|
}
|
|
|
|
|
|
|
|
void SdAnimationInfo::SetBookmark( const String& rBookmark )
|
2000-09-18 18:16:46 -05:00
|
|
|
{
|
2009-05-19 11:03:18 -05:00
|
|
|
if( meClickAction == ::com::sun::star::presentation::ClickAction_BOOKMARK )
|
|
|
|
{
|
|
|
|
String sURL( '#' );
|
|
|
|
sURL += rBookmark;
|
2009-05-19 04:32:45 -05:00
|
|
|
SvxFieldItem aURLItem( SvxURLField( sURL, sURL ), EE_FEATURE_FIELD );
|
|
|
|
mrObject.SetMergedItem( aURLItem );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SvxFieldItem aURLItem( SvxURLField( rBookmark, rBookmark ), EE_FEATURE_FIELD );
|
|
|
|
mrObject.SetMergedItem( aURLItem );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
String SdAnimationInfo::GetBookmark()
|
|
|
|
{
|
|
|
|
String sBookmark;
|
|
|
|
|
|
|
|
const SvxFieldItem* pFldItem = dynamic_cast< const SvxFieldItem* >( &mrObject.GetMergedItem( EE_FEATURE_FIELD ) );
|
|
|
|
if( pFldItem )
|
|
|
|
{
|
|
|
|
SvxURLField* pURLField = const_cast< SvxURLField* >( dynamic_cast<const SvxURLField*>( pFldItem->GetField() ) );
|
|
|
|
if( pURLField )
|
|
|
|
sBookmark = pURLField->GetURL();
|
|
|
|
}
|
|
|
|
|
|
|
|
if( (meClickAction == ::com::sun::star::presentation::ClickAction_BOOKMARK) && sBookmark.Len() && (sBookmark.GetChar(0) == '#') )
|
|
|
|
sBookmark = sBookmark.Copy( 1 );
|
|
|
|
|
|
|
|
return sBookmark;
|
2000-09-18 18:16:46 -05:00
|
|
|
}
|