ODFPY  1.2.0
 All Classes Namespaces Files Functions Variables
style.py
Go to the documentation of this file.
1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2006-2013 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 namespaces import STYLENS
22 from element import Element
23 
24 def StyleElement(**args):
25  e = Element(**args)
26  if args.get('check_grammar', True) == True:
27  if 'displayname' not in args:
28  e.setAttrNS(STYLENS,'display-name', args.get('name'))
29  return e
30 
31 # Autogenerated
32 def BackgroundImage(**args):
33  return Element(qname = (STYLENS,'background-image'), **args)
34 
35 def ChartProperties(**args):
36  return Element(qname = (STYLENS,'chart-properties'), **args)
37 
38 def Column(**args):
39  return Element(qname = (STYLENS,'column'), **args)
40 
41 def ColumnSep(**args):
42  return Element(qname = (STYLENS,'column-sep'), **args)
43 
44 def Columns(**args):
45  return Element(qname = (STYLENS,'columns'), **args)
46 
47 def DefaultPageLayout(**args):
48  return Element(qname = (STYLENS,'default-page-layout'), **args)
49 
50 def DefaultStyle(**args):
51  return Element(qname = (STYLENS,'default-style'), **args)
52 
54  return Element(qname = (STYLENS,'drawing-page-properties'), **args)
55 
56 def DropCap(**args):
57  return Element(qname = (STYLENS,'drop-cap'), **args)
58 
59 def FontFace(**args):
60  return Element(qname = (STYLENS,'font-face'), **args)
61 
62 def Footer(**args):
63  return Element(qname = (STYLENS,'footer'), **args)
64 
65 def FooterLeft(**args):
66  return Element(qname = (STYLENS,'footer-left'), **args)
67 
68 def FooterStyle(**args):
69  return Element(qname = (STYLENS,'footer-style'), **args)
70 
71 def FootnoteSep(**args):
72  return Element(qname = (STYLENS,'footnote-sep'), **args)
73 
74 def GraphicProperties(**args):
75  return Element(qname = (STYLENS,'graphic-properties'), **args)
76 
77 def HandoutMaster(**args):
78  return Element(qname = (STYLENS,'handout-master'), **args)
79 
80 def Header(**args):
81  return Element(qname = (STYLENS,'header'), **args)
82 
84  return Element(qname = (STYLENS,'header-footer-properties'), **args)
85 
86 def HeaderLeft(**args):
87  return Element(qname = (STYLENS,'header-left'), **args)
88 
89 def HeaderStyle(**args):
90  return Element(qname = (STYLENS,'header-style'), **args)
91 
93  return Element(qname = (STYLENS,'list-level-label-alignment'), **args)
94 
95 def ListLevelProperties(**args):
96  return Element(qname = (STYLENS,'list-level-properties'), **args)
97 
98 def Map(**args):
99  return Element(qname = (STYLENS,'map'), **args)
100 
101 def MasterPage(**args):
102  return StyleElement(qname = (STYLENS,'master-page'), **args)
103 
104 def PageLayout(**args):
105  return Element(qname = (STYLENS,'page-layout'), **args)
106 
108  return Element(qname = (STYLENS,'page-layout-properties'), **args)
109 
111  return Element(qname = (STYLENS,'paragraph-properties'), **args)
112 
114  return StyleElement(qname = (STYLENS,'presentation-page-layout'), **args)
115 
116 def RegionCenter(**args):
117  return Element(qname = (STYLENS,'region-center'), **args)
118 
119 def RegionLeft(**args):
120  return Element(qname = (STYLENS,'region-left'), **args)
121 
122 def RegionRight(**args):
123  return Element(qname = (STYLENS,'region-right'), **args)
124 
125 def RubyProperties(**args):
126  return Element(qname = (STYLENS,'ruby-properties'), **args)
127 
128 def SectionProperties(**args):
129  return Element(qname = (STYLENS,'section-properties'), **args)
130 
131 def Style(**args):
132  return StyleElement(qname = (STYLENS,'style'), **args)
133 
134 def TabStop(**args):
135  return Element(qname = (STYLENS,'tab-stop'), **args)
136 
137 def TabStops(**args):
138  return Element(qname = (STYLENS,'tab-stops'), **args)
139 
141  return Element(qname = (STYLENS,'table-cell-properties'), **args)
142 
144  return Element(qname = (STYLENS,'table-column-properties'), **args)
145 
146 def TableProperties(**args):
147  return Element(qname = (STYLENS,'table-properties'), **args)
148 
149 def TableRowProperties(**args):
150  return Element(qname = (STYLENS,'table-row-properties'), **args)
151 
152 def TextProperties(**args):
153  return Element(qname = (STYLENS,'text-properties'), **args)
154 
def Column
Definition: style.py:38
def HandoutMaster
Definition: style.py:77
def Style
Definition: style.py:131
def TableRowProperties
Definition: style.py:149
def SectionProperties
Definition: style.py:128
def FooterStyle
Definition: style.py:68
def FooterLeft
Definition: style.py:65
def GraphicProperties
Definition: style.py:74
def DrawingPageProperties
Definition: style.py:53
def MasterPage
Definition: style.py:101
def PresentationPageLayout
Definition: style.py:113
def PageLayoutProperties
Definition: style.py:107
def ListLevelLabelAlignment
Definition: style.py:92
def Map
Definition: style.py:98
def FootnoteSep
Definition: style.py:71
def ListLevelProperties
Definition: style.py:95
def TabStops
Definition: style.py:137
def HeaderStyle
Definition: style.py:89
def RegionCenter
Definition: style.py:116
def TableProperties
Definition: style.py:146
def Columns
Definition: style.py:44
def DefaultStyle
Definition: style.py:50
def RegionRight
Definition: style.py:122
def PageLayout
Definition: style.py:104
def HeaderLeft
Definition: style.py:86
def TextProperties
Definition: style.py:152
def ColumnSep
Definition: style.py:41
def Footer
Definition: style.py:62
def HeaderFooterProperties
Definition: style.py:83
def TableCellProperties
Definition: style.py:140
def ParagraphProperties
Definition: style.py:110
def Header
Definition: style.py:80
def BackgroundImage
Definition: style.py:32
def FontFace
Definition: style.py:59
def DropCap
Definition: style.py:56
def RegionLeft
Definition: style.py:119
def ChartProperties
Definition: style.py:35
def TableColumnProperties
Definition: style.py:143
def DefaultPageLayout
Definition: style.py:47
def TabStop
Definition: style.py:134
def RubyProperties
Definition: style.py:125
def StyleElement
Definition: style.py:24