ODFPY
1.2.0
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
21
from
odf.namespaces
import
ANIMNS
22
from
odf.element
import
Element
23
24
25
# Autogenerated
26
def
Animate
(**args):
27
return
Element
(qname = (ANIMNS,
'animate'
), **args)
28
29
def
Animatecolor
(**args):
30
return
Element
(qname = (ANIMNS,
'animateColor'
), **args)
31
32
def
Animatemotion
(**args):
33
return
Element
(qname = (ANIMNS,
'animateMotion'
), **args)
34
35
def
Animatetransform
(**args):
36
return
Element
(qname = (ANIMNS,
'animateTransform'
), **args)
37
38
def
Audio
(**args):
39
return
Element
(qname = (ANIMNS,
'audio'
), **args)
40
41
def
Command
(**args):
42
return
Element
(qname = (ANIMNS,
'command'
), **args)
43
44
def
Iterate
(**args):
45
return
Element
(qname = (ANIMNS,
'iterate'
), **args)
46
47
def
Par
(**args):
48
return
Element
(qname = (ANIMNS,
'par'
), **args)
49
50
def
Param
(**args):
51
return
Element
(qname = (ANIMNS,
'param'
), **args)
52
53
def
Seq
(**args):
54
return
Element
(qname = (ANIMNS,
'seq'
), **args)
55
56
def
Set
(**args):
57
return
Element
(qname = (ANIMNS,
'set'
), **args)
58
59
def
Transitionfilter
(**args):
60
return
Element
(qname = (ANIMNS,
'transitionFilter'
), **args)
61
odf.anim.Param
def Param(**args)
Definition:
anim.py:50
odf.anim.Par
def Par(**args)
Definition:
anim.py:47
odf.anim.Animatemotion
def Animatemotion(**args)
Definition:
anim.py:32
odf.anim.Transitionfilter
def Transitionfilter(**args)
Definition:
anim.py:59
odf.anim.Animatetransform
def Animatetransform(**args)
Definition:
anim.py:35
odf.anim.Animate
def Animate(**args)
Definition:
anim.py:26
odf.element.Element
Creates a arbitrary element and is intended to be subclassed not used on its own.
Definition:
element.py:357
odf.anim.Set
def Set(**args)
Definition:
anim.py:56
odf.anim.Animatecolor
def Animatecolor(**args)
Definition:
anim.py:29
odf.anim.Command
def Command(**args)
Definition:
anim.py:41
odf.element
Definition:
element.py:1
odf.anim.Iterate
def Iterate(**args)
Definition:
anim.py:44
odf.anim.Audio
def Audio(**args)
Definition:
anim.py:38
odf.namespaces
Definition:
namespaces.py:1
odf.anim.Seq
def Seq(**args)
Definition:
anim.py:53
odf
anim.py
Generated by
1.8.20