ODFPY 1.2.0
 
Loading...
Searching...
No Matches
anim.py
Go to the documentation of this file.
1# -*- coding: utf-8 -*-
2# Copyright (C) 2006-2007 Søren Roug, European Environment Agency
3#
4# This library is free software; you can redistribute it and/or
5# modify it under the terms of the GNU Lesser General Public
6# License as published by the Free Software Foundation; either
7# version 2.1 of the License, or (at your option) any later version.
8#
9# This library is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12# Lesser General Public License for more details.
13#
14# You should have received a copy of the GNU Lesser General Public
15# License along with this library; if not, write to the Free Software
16# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17#
18# Contributor(s):
19#
20
21from odf.namespaces import ANIMNS
22from odf.element import Element
23
24
25# Autogenerated
26def Animate(**args):
27 return Element(qname = (ANIMNS,'animate'), **args)
28
29def Animatecolor(**args):
30 return Element(qname = (ANIMNS,'animateColor'), **args)
31
32def Animatemotion(**args):
33 return Element(qname = (ANIMNS,'animateMotion'), **args)
34
35def Animatetransform(**args):
36 return Element(qname = (ANIMNS,'animateTransform'), **args)
37
38def Audio(**args):
39 return Element(qname = (ANIMNS,'audio'), **args)
40
41def Command(**args):
42 return Element(qname = (ANIMNS,'command'), **args)
43
44def Iterate(**args):
45 return Element(qname = (ANIMNS,'iterate'), **args)
46
47def Par(**args):
48 return Element(qname = (ANIMNS,'par'), **args)
49
50def Param(**args):
51 return Element(qname = (ANIMNS,'param'), **args)
52
53def Seq(**args):
54 return Element(qname = (ANIMNS,'seq'), **args)
55
56def Set(**args):
57 return Element(qname = (ANIMNS,'set'), **args)
58
59def Transitionfilter(**args):
60 return Element(qname = (ANIMNS,'transitionFilter'), **args)
61
Creates a arbitrary element and is intended to be subclassed not used on its own.
Definition element.py:361
Animate(**args)
Definition anim.py:26
Param(**args)
Definition anim.py:50
Animatetransform(**args)
Definition anim.py:35
Seq(**args)
Definition anim.py:53
Animatemotion(**args)
Definition anim.py:32
Iterate(**args)
Definition anim.py:44
Set(**args)
Definition anim.py:56
Audio(**args)
Definition anim.py:38
Par(**args)
Definition anim.py:47
Transitionfilter(**args)
Definition anim.py:59
Command(**args)
Definition anim.py:41
Animatecolor(**args)
Definition anim.py:29