5687eba49f
...which were used by ildc, which is gone since
a8485d558f
"[API CHANGE] Remove deprecated idlc
and regmerge from the SDK", and have always been ignored as legacy by its
unoidl-write replacement.
This change has been carried out (making use of GNU sed extensions) with
> for i in $(git ls-files \*.idl); do sed -i -z -E -e 's/\n\n((#[^\n]*\n)+\n)*(#[^\n]*\n)+\n?/\n\n/g' -e 's/\n(#[^\n]*\n)+/\n/g' "$i"; done && git checkout extensions/source/activex/so_activex.idl odk/examples/OLE/activex/so_activex.idl
which apparently happened to do the work. (The final two files are not UNOIDL
source files.)
Change-Id: Ic9369e05d46e8f7e8a304ab01740b171b92335cd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135683
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
87 lines
4 KiB
Text
87 lines
4 KiB
Text
/* -*- 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 .
|
|
*/
|
|
|
|
|
|
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:
|
|
<ul>
|
|
<li>If none of the attributes duration, end, repeatCount or repeatDuration are specified on
|
|
the element, then the element will have a fill behavior identical to that if it were specified
|
|
as AnimationFill::FREEZE.</li>
|
|
<li>Otherwise, the element will have a fill behavior identical to that if it were specified as
|
|
AnimationFill::REMOVE.</li>
|
|
</ul>
|
|
*/
|
|
const short AUTO = 5;
|
|
};
|
|
|
|
|
|
}; }; }; };
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|