tdf#130857 qt weld: Implement QtInstanceWidget::get_text_height
[LibreOffice.git] / offapi / com / sun / star / animations / AnimationEndSync.idl
blob33e847c793004a7b41967f9702b141d2dcaebfe5
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
21 module com { module sun { module star { module animations {
24 /** @see http://www.w3.org/TR/smil20/smil-timing.html#adef-endsync
26 constants AnimationEndSync
28 /** The par, excl, or media element's implicit duration ends with the earliest
29 active end of all the child elements. This does not refer to the lexical
30 first child, or to the first child to start, but rather refers to the first
31 child to end its (first) active duration.
33 const short FIRST = 0;
35 /** The par, excl, or media element's implicit duration ends with the last active
36 end of the child elements. This does not refer to the lexical last child, or
37 to the last child to start, but rather refers to the last active end of all
38 children that have a resolved, definite begin time. If the time container
39 has no children with a resolved begin time, the time container ends
40 immediately. If child elements have multiple begin times, or otherwise
41 restart, the child elements must complete all instances of active durations
42 for resolved begin times.
43 This is the default value for par and excl elements.
45 const short LAST = 1;
47 /** The par, excl, or media element's implicit duration ends when all of the
48 child elements have ended their respective active durations. Elements with
49 indefinite or unresolved begin times will keep the simple duration of the
50 time container from ending.
51 When all elements have completed the active duration one or more times,
52 the parent time container can end.
54 const short ALL = 2;
56 /** The time container element's implicit duration ends when the intrinsic
57 media duration of the element ends. This must be defined by a host language.
58 If the time container element does not define an intrinsic media duration,
59 the host language must define the simple duration for the element.
60 This is the default value for media time container elements.
62 const short MEDIA = 3;
66 }; }; }; };
68 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */