2008-01-17 07:06:10 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 14:50:15 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2008-01-17 07:06:10 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2008-01-17 07:06:10 +00:00
|
|
|
*
|
2008-04-10 14:50:15 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2008-01-17 07:06:10 +00:00
|
|
|
*
|
2008-04-10 14:50:15 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2008-01-17 07:06:10 +00:00
|
|
|
*
|
2008-04-10 14:50:15 +00: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.
|
2008-01-17 07:06:10 +00:00
|
|
|
*
|
2008-04-10 14:50:15 +00: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).
|
2008-01-17 07:06:10 +00:00
|
|
|
*
|
2008-04-10 14:50:15 +00: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.
|
2008-01-17 07:06:10 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#include "conditioncontext.hxx"
|
|
|
|
|
|
|
|
#include "comphelper/anytostring.hxx"
|
|
|
|
#include "cppuhelper/exc_hlp.hxx"
|
|
|
|
#include <osl/diagnose.h>
|
|
|
|
|
|
|
|
#include <com/sun/star/animations/XTimeContainer.hpp>
|
|
|
|
#include <com/sun/star/animations/XAnimationNode.hpp>
|
|
|
|
#include <com/sun/star/animations/AnimationEndSync.hpp>
|
|
|
|
#include <com/sun/star/animations/EventTrigger.hpp>
|
|
|
|
|
|
|
|
#include "oox/helper/attributelist.hxx"
|
|
|
|
#include "oox/core/namespaces.hxx"
|
2008-03-05 17:51:09 +00:00
|
|
|
#include "oox/core/contexthandler.hxx"
|
2008-01-17 07:06:10 +00:00
|
|
|
#include "oox/ppt/animationspersist.hxx"
|
|
|
|
#include "animationtypes.hxx"
|
|
|
|
|
|
|
|
#include "timetargetelementcontext.hxx"
|
|
|
|
#include "tokens.hxx"
|
|
|
|
|
|
|
|
using namespace ::oox::core;
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using namespace ::com::sun::star::xml::sax;
|
|
|
|
using namespace ::com::sun::star::animations;
|
|
|
|
|
|
|
|
namespace oox { namespace ppt {
|
|
|
|
|
2008-03-05 17:51:09 +00:00
|
|
|
CondContext::CondContext( ContextHandler& rParent, const Reference< XFastAttributeList >& xAttribs,
|
|
|
|
const TimeNodePtr & pNode, AnimationCondition & aValue )
|
|
|
|
: TimeNodeContext( rParent, NMSP_PPT|XML_cond, xAttribs, pNode )
|
2008-01-17 07:06:10 +00:00
|
|
|
, maCond( aValue )
|
|
|
|
{
|
|
|
|
maEvent.Trigger = EventTrigger::NONE;
|
|
|
|
maEvent.Repeat = 0;
|
|
|
|
|
|
|
|
AttributeList attribs( xAttribs );
|
|
|
|
if( attribs.hasAttribute( XML_evt ) )
|
|
|
|
{
|
|
|
|
sal_Int32 nEvent = xAttribs->getOptionalValueToken( XML_evt, 0 );
|
|
|
|
switch( nEvent )
|
|
|
|
{
|
|
|
|
case XML_onBegin:
|
|
|
|
maEvent.Trigger = EventTrigger::ON_BEGIN;
|
|
|
|
break;
|
|
|
|
case XML_onEnd:
|
|
|
|
maEvent.Trigger = EventTrigger::ON_END;
|
|
|
|
break;
|
|
|
|
case XML_begin:
|
|
|
|
maEvent.Trigger = EventTrigger::BEGIN_EVENT;
|
|
|
|
break;
|
|
|
|
case XML_end:
|
|
|
|
maEvent.Trigger = EventTrigger::END_EVENT;
|
|
|
|
break;
|
|
|
|
case XML_onClick:
|
|
|
|
maEvent.Trigger = EventTrigger::ON_CLICK;
|
|
|
|
break;
|
|
|
|
case XML_onDblClick:
|
|
|
|
maEvent.Trigger = EventTrigger::ON_DBL_CLICK;
|
|
|
|
break;
|
|
|
|
case XML_onMouseOver:
|
|
|
|
maEvent.Trigger = EventTrigger::ON_MOUSE_ENTER;
|
|
|
|
break;
|
|
|
|
case XML_onMouseOut:
|
|
|
|
maEvent.Trigger = EventTrigger::ON_MOUSE_LEAVE;
|
|
|
|
break;
|
|
|
|
case XML_onNext:
|
|
|
|
maEvent.Trigger = EventTrigger::ON_NEXT;
|
|
|
|
break;
|
|
|
|
case XML_onPrev:
|
|
|
|
maEvent.Trigger = EventTrigger::ON_PREV;
|
|
|
|
break;
|
|
|
|
case XML_onStopAudio:
|
|
|
|
maEvent.Trigger = EventTrigger::ON_STOP_AUDIO;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( attribs.hasAttribute( XML_delay ) || ( maEvent.Trigger == EventTrigger::NONE ) )
|
|
|
|
{
|
|
|
|
maEvent.Offset = GetTime( xAttribs->getOptionalValue( XML_delay ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CondContext::~CondContext( ) throw( )
|
|
|
|
{
|
|
|
|
if( maCond.mnType == 0 )
|
|
|
|
{
|
|
|
|
maCond.maValue = (maEvent.Trigger == EventTrigger::NONE) ? maEvent.Offset : makeAny( maEvent );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Reference< XFastContextHandler > SAL_CALL CondContext::createFastChildContext( ::sal_Int32 aElementToken, const Reference< XFastAttributeList >& xAttribs ) throw ( SAXException, RuntimeException )
|
|
|
|
{
|
|
|
|
Reference< XFastContextHandler > xRet;
|
|
|
|
|
|
|
|
switch( aElementToken )
|
|
|
|
{
|
|
|
|
case NMSP_PPT|XML_rtn:
|
|
|
|
{
|
|
|
|
// ST_TLTriggerRuntimeNode { first, last, all }
|
|
|
|
sal_Int32 aTok;
|
|
|
|
sal_Int16 nEnum;
|
|
|
|
aTok = xAttribs->getOptionalValueToken( XML_val, XML_first );
|
|
|
|
switch( aTok )
|
|
|
|
{
|
|
|
|
case XML_first:
|
|
|
|
nEnum = AnimationEndSync::FIRST;
|
|
|
|
break;
|
|
|
|
case XML_last:
|
|
|
|
nEnum = AnimationEndSync::LAST;
|
|
|
|
break;
|
|
|
|
case XML_all:
|
|
|
|
nEnum = AnimationEndSync::ALL;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
maCond.mnType = aElementToken;
|
|
|
|
maCond.maValue = makeAny( nEnum );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case NMSP_PPT|XML_tn:
|
|
|
|
{
|
|
|
|
maCond.mnType = aElementToken;
|
|
|
|
AttributeList attribs( xAttribs );
|
CWS-TOOLING: integrate CWS dr68
2009-06-19 17:43:48 +0200 oc r273175 : #i102946# some lines for new dialog added
2009-06-19 14:17:45 +0200 oc r273158 : #i102946# three lines added
2009-05-19 11:56:14 +0200 dr r272065 : #i99677# wrong attribute name
2009-05-18 18:37:05 +0200 dr r272045 : #i10000# suncc warning
2009-05-05 16:46:13 +0200 dr r271536 : #i10000# adoptions after rebase to master containing dr67
2009-05-05 16:01:19 +0200 dr r271530 : #i10000# adoptions after rebase to master containing dr67
2009-05-04 14:20:39 +0200 dr r271453 : CWS-TOOLING: rebase CWS dr68 to trunk@271427 (milestone: DEV300:m47)
2009-04-28 17:01:14 +0200 dr r271332 : CWS-TOOLING: rebase CWS dr68 to trunk@270723 (milestone: DEV300:m46)
2009-04-23 12:21:40 +0200 dr r271149 : #i100688# missing checkins
2009-04-23 12:18:16 +0200 dr r271147 : #i100978# relations path handling
2009-04-22 19:25:45 +0200 nn r271136 : #i49491# show navigator for double click on document position status bar control
2009-04-22 11:28:36 +0200 nn r271085 : #i60401# small text change
2009-04-21 16:53:23 +0200 dr r271044 : #i10000# missing dtor
2009-04-20 13:39:25 +0200 nn r270977 : #i60401# add dialog to extend sort range (patch from maoyg)
2009-04-08 12:11:08 +0200 dr r270630 : #i100943# prevent assertion when loading chart with empty category ranges
2009-04-07 19:03:00 +0200 dr r270609 : #i100688# missing bits for OLE
2009-04-07 17:14:06 +0200 dr r270605 : ported fix for #i100710#
2009-04-07 17:12:50 +0200 dr r270604 : #i10000# wae
2009-04-07 15:31:55 +0200 dr r270598 : import system colors moved to FilterBase class, more rework on fill and color contexts
2009-04-06 15:00:03 +0200 dr r270552 : #i99677# prevent recursive loading of the current document
2009-04-03 18:28:42 +0200 dr r270515 : added import of brightness/contrast and mono/grayscale color effects for image shapes
2009-04-03 17:36:03 +0200 dr r270509 : cache already imported embedded graphics
2009-04-03 16:46:34 +0200 dr r270500 : more rework on bitmap fill and graphic object handling
2009-03-31 12:28:10 +0200 dr r270271 : #i10000# unxlngi6 wae
2009-03-31 09:04:10 +0200 dr r270261 : CWS-TOOLING: rebase CWS dr68 to trunk@270033 (milestone: DEV300:m45)
2009-03-30 17:42:05 +0200 dr r270249 : #i91122# add missing doc
2009-03-30 17:37:08 +0200 dr r270248 : #i91122# add missing doc
2009-03-30 16:59:15 +0200 dr r270241 : #i99677# add import of ActiveX scrollbar controls
2009-03-30 14:30:36 +0200 dr r270230 : #i91122# missing/wrong documentation
2009-03-30 13:03:38 +0200 dr r270220 : #i99677# add import of ActiveX combobox and spinbutton controls
2009-03-27 11:46:59 +0100 dr r270144 : #i99677# import ActiveX listbox controls (Forms.ListBox.1)
2009-03-26 19:58:00 +0100 dr r270104 : #i99677# move more OLE import code into ole submodule
2009-03-26 15:15:02 +0100 dr r270082 : #i100546# add import of chart bitmap fills, add import of X/Y offset in tiled bitmap fills of all shapes
2009-03-25 12:54:59 +0100 dr r270018 : #i99677# import ActiveX edit text control (Forms.TextBox.1)
2009-03-24 10:59:29 +0100 dr r269921 : #i99677# moved import of OLE StdHlink to 'ole' submodule, added string import helpers to BinaryStreamBase class, removed implementation of ST_XString import from docprop in favour of the implementation in class AttributeList
2009-03-24 10:40:18 +0100 dr r269919 : #i100502# implicit precedence of '&&' was intended
2009-03-24 10:18:29 +0100 dr r269917 : #i100502# missing parentheses
2009-03-23 15:17:48 +0100 dr r269876 : #i99677# more code reorg, added graphic helper and OLE helper object per filter, added OLE/control import to PPTX/XLSX filter, moved helpers from XmlFilterBase to FilterBase
2009-03-19 12:45:20 +0100 dr r269740 : #i99677# interface changes in oox
2009-03-18 15:51:50 +0100 dr r269683 : #i99677# improved relation handling (internal/external), added preprocessor for VML streams to eat MS specific instructions, added OCX ToggleButton/OptionButton import, added DIB import for BIFF (page background picture, lots of other minor improvements
2009-03-16 15:25:30 +0100 dr r269551 : #i99677# import excel form control client data (printable, cell link)
2009-03-13 18:37:17 +0100 dr r269494 : #i99677# import image controls and check boxes
2009-03-12 15:08:18 +0100 dr r269420 : #i10000# rebase problems
2009-03-12 14:43:09 +0100 dr r269418 : #i10000# rebase problems
2009-03-12 14:42:41 +0100 dr r269417 : #i10000# missing delivered header
2009-03-12 13:57:06 +0100 dr r269405 : #i10000# typos
2009-03-12 12:58:52 +0100 dr r269391 : CWS-TOOLING: rebase CWS dr68 to trunk@269297 (milestone: DEV300:m43)
2009-03-12 11:11:46 +0100 dr r269374 : #i99677# first step to import BIFF8 page background
2009-03-12 10:21:53 +0100 dr r269364 : #i99677# rework of graphic import in entire filter, added import of AX Label controls
2009-03-09 16:44:50 +0100 dr r269202 : #i99677# import some formatting attributes of command buttons
2009-03-05 15:31:46 +0100 dr r268911 : #i99677# use VML shape client data to import excel VML shape positions
2009-03-05 11:39:48 +0100 dr r268888 : #i99677# create UNO control shapes from VML control shapes
2009-03-05 11:38:59 +0100 dr r268886 : #i99677# change attribute Shapes to DrawPage for import of embedded form controls
2009-03-05 11:30:40 +0100 dr r268885 : #i99677# change attribute Shapes to DrawPage for import of embedded form controls
2009-03-04 18:46:05 +0100 dr r268860 : adapt namespace ids according to oox
2009-03-04 18:43:49 +0100 dr r268859 : #i99677# more VML import rework
2009-03-03 13:38:36 +0100 dr r268721 : #i99677# more cleanup for VML filter
2009-03-03 13:13:15 +0100 dr r268719 : #i99807# do not iterate beyond end of std::list
2009-03-02 11:55:49 +0100 dr r268644 : add ST_XString support (encoded characters in attribute values)
2009-02-26 17:07:18 +0100 dr r268542 : #i99677# first steps of ax control import: dummy AX base classes, reimplement VML import (hopefully without breaking anything), register embedded AX controls at VML drawing
2009-02-23 17:43:50 +0100 dr r268365 : #i99426# remaining work on scenario import
2009-02-19 16:56:25 +0100 dr r268295 : #i99426# base implementations for scenarios import
2009-07-15 14:57:49 +00:00
|
|
|
sal_uInt32 nId = attribs.getUnsigned( XML_val, 0 );
|
2008-01-17 07:06:10 +00:00
|
|
|
maCond.maValue = makeAny( nId );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case NMSP_PPT|XML_tgtEl:
|
|
|
|
// CT_TLTimeTargetElement
|
2008-03-05 17:51:09 +00:00
|
|
|
xRet.set( new TimeTargetElementContext( *this, maCond.getTarget() ) );
|
2008-01-17 07:06:10 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !xRet.is() )
|
|
|
|
xRet.set( this );
|
|
|
|
|
|
|
|
return xRet;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** CT_TLTimeConditionList */
|
2008-03-05 17:51:09 +00:00
|
|
|
CondListContext::CondListContext(
|
|
|
|
ContextHandler& rParent, sal_Int32 aElement,
|
|
|
|
const Reference< XFastAttributeList >& xAttribs,
|
|
|
|
const TimeNodePtr & pNode,
|
|
|
|
AnimationConditionList & aCond )
|
|
|
|
: TimeNodeContext( rParent, aElement, xAttribs, pNode )
|
2008-01-17 07:06:10 +00:00
|
|
|
, maConditions( aCond )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CondListContext::~CondListContext( )
|
|
|
|
throw( )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Reference< XFastContextHandler > CondListContext::createFastChildContext( ::sal_Int32 aElement, const Reference< XFastAttributeList >& xAttribs ) throw ( SAXException, RuntimeException )
|
|
|
|
{
|
|
|
|
Reference< XFastContextHandler > xRet;
|
|
|
|
|
|
|
|
switch( aElement )
|
|
|
|
{
|
|
|
|
case NMSP_PPT|XML_cond:
|
|
|
|
// add a condition to the list
|
|
|
|
maConditions.push_back( AnimationCondition() );
|
2008-03-05 17:51:09 +00:00
|
|
|
xRet.set( new CondContext( *this, xAttribs, mpNode, maConditions.back() ) );
|
2008-01-17 07:06:10 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !xRet.is() )
|
|
|
|
xRet.set( this );
|
|
|
|
|
|
|
|
return xRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} }
|
|
|
|
|