/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #ifndef __com_sun_star_animations_AnimationFill_idl__ #define __com_sun_star_animations_AnimationFill_idl__ module com { module sun { module star { module animations { /** This constants are used for the members fill() and fillDefault() of the an XTimeContainer. @see XTimeContainer @see http://www.w3.org/TR/smil20/smil-timing.html#adef-fill */ constants AnimationFill { /** The fill behavior for the element is determined by the value of the XTiming::FillDefault attribute. This is the default value for the XTiming::Fill... If the application of fillDefault to an element would result in the element having a value of fill that is not allowed on that element, the element will instead have a fill value of AnimationFill::AUTO. */ const short DEFAULT = 0; /** Specifies that the value of this attribute (and of the fill behavior) are inherited from the XTiming::FillDefault value of the parent element. If there is no parent element, the value is AnimationFill::AUTO. This is the default value for the XTiming::FillDefault. */ const short INHERIT = 0; /** Specifies that the element will not extend past the end of the last instance of the simple duration. */ const short REMOVE = 1; /** Specifies that the element will extend past the end of the last instance of the simple duration by "freezing" the element state at that point. The parent time container of the element determines how long the element is frozen (as described immediately below). */ const short FREEZE = 2; /** Setting this to "hold" has the same effect as setting to "freeze", except that the element is always frozen to extend to the end of the simple duration of the parent time container of the element (independent of the type of time container). For profiles that support a layered layout model (e.g., SMIL 2.0 Language Profile), held elements (elements with fill="hold") will refresh their display area when a layer is added on top then later removed. */ const short HOLD = 3; /** Setting this to "transition" has the same effect as setting to "freeze", except that the element is removed at the end of the transition. This value is only allowed on elements with media directly associated with them. If specified on any other element (e.g. a time container element in the SMIL language profile), the attribute is ignored. See the SMIL Transitions module. */ const short TRANSITION = 4; /** The fill behavior for this element depends on whether the element specifies any of the attributes that define the simple or active duration: */ const short AUTO = 5; }; }; }; }; }; #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */