ODFPY
1.2.0
Loading...
Searching...
No Matches
presentation.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
PRESENTATIONNS
22
from
odf.element
import
Element
23
24
# ODF 1.0 section 9.6 and 9.7
25
# Autogenerated
26
def
AnimationGroup
(**args):
27
return
Element
(qname = (PRESENTATIONNS,
'animation-group'
), **args)
28
29
def
Animations
(**args):
30
return
Element
(qname = (PRESENTATIONNS,
'animations'
), **args)
31
32
def
DateTime
(**args):
33
return
Element
(qname = (PRESENTATIONNS,
'date-time'
), **args)
34
35
def
DateTimeDecl
(**args):
36
return
Element
(qname = (PRESENTATIONNS,
'date-time-decl'
), **args)
37
38
def
Dim
(**args):
39
return
Element
(qname = (PRESENTATIONNS,
'dim'
), **args)
40
41
def
EventListener
(**args):
42
return
Element
(qname = (PRESENTATIONNS,
'event-listener'
), **args)
43
44
def
Footer
(**args):
45
return
Element
(qname = (PRESENTATIONNS,
'footer'
), **args)
46
47
def
FooterDecl
(**args):
48
return
Element
(qname = (PRESENTATIONNS,
'footer-decl'
), **args)
49
50
def
Header
(**args):
51
return
Element
(qname = (PRESENTATIONNS,
'header'
), **args)
52
53
def
HeaderDecl
(**args):
54
return
Element
(qname = (PRESENTATIONNS,
'header-decl'
), **args)
55
56
def
HideShape
(**args):
57
return
Element
(qname = (PRESENTATIONNS,
'hide-shape'
), **args)
58
59
def
HideText
(**args):
60
return
Element
(qname = (PRESENTATIONNS,
'hide-text'
), **args)
61
62
def
Notes
(**args):
63
return
Element
(qname = (PRESENTATIONNS,
'notes'
), **args)
64
65
def
Placeholder
(**args):
66
return
Element
(qname = (PRESENTATIONNS,
'placeholder'
), **args)
67
68
def
Play
(**args):
69
return
Element
(qname = (PRESENTATIONNS,
'play'
), **args)
70
71
def
Settings
(**args):
72
return
Element
(qname = (PRESENTATIONNS,
'settings'
), **args)
73
74
def
Show
(**args):
75
return
Element
(qname = (PRESENTATIONNS,
'show'
), **args)
76
77
def
ShowShape
(**args):
78
return
Element
(qname = (PRESENTATIONNS,
'show-shape'
), **args)
79
80
def
ShowText
(**args):
81
return
Element
(qname = (PRESENTATIONNS,
'show-text'
), **args)
82
83
def
Sound
(**args):
84
args.setdefault(
'type'
,
'simple'
)
85
return
Element
(qname = (PRESENTATIONNS,
'sound'
), **args)
86
odf.element.Element
Creates a arbitrary element and is intended to be subclassed not used on its own.
Definition
element.py:361
odf.element
Definition
element.py:1
odf.namespaces
Definition
namespaces.py:1
odf.presentation.ShowText
ShowText(**args)
Definition
presentation.py:80
odf.presentation.ShowShape
ShowShape(**args)
Definition
presentation.py:77
odf.presentation.DateTimeDecl
DateTimeDecl(**args)
Definition
presentation.py:35
odf.presentation.EventListener
EventListener(**args)
Definition
presentation.py:41
odf.presentation.Animations
Animations(**args)
Definition
presentation.py:29
odf.presentation.HeaderDecl
HeaderDecl(**args)
Definition
presentation.py:53
odf.presentation.HideShape
HideShape(**args)
Definition
presentation.py:56
odf.presentation.Sound
Sound(**args)
Definition
presentation.py:83
odf.presentation.DateTime
DateTime(**args)
Definition
presentation.py:32
odf.presentation.Show
Show(**args)
Definition
presentation.py:74
odf.presentation.Notes
Notes(**args)
Definition
presentation.py:62
odf.presentation.Header
Header(**args)
Definition
presentation.py:50
odf.presentation.Play
Play(**args)
Definition
presentation.py:68
odf.presentation.Dim
Dim(**args)
Definition
presentation.py:38
odf.presentation.HideText
HideText(**args)
Definition
presentation.py:59
odf.presentation.Footer
Footer(**args)
Definition
presentation.py:44
odf.presentation.Settings
Settings(**args)
Definition
presentation.py:71
odf.presentation.AnimationGroup
AnimationGroup(**args)
Definition
presentation.py:26
odf.presentation.FooterDecl
FooterDecl(**args)
Definition
presentation.py:47
odf.presentation.Placeholder
Placeholder(**args)
Definition
presentation.py:65
odf
presentation.py
Generated by
1.12.0