1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
|
# encoding: utf-8
"""
Custom element classes related to the styles part
"""
from ..enum.style import WD_STYLE_TYPE
from .simpletypes import ST_DecimalNumber, ST_OnOff, ST_String
from .xmlchemy import (
BaseOxmlElement, OptionalAttribute, RequiredAttribute, ZeroOrMore,
ZeroOrOne
)
def styleId_from_name(name):
"""
Return the style id corresponding to *name*, taking into account
special-case names such as 'Heading 1'.
"""
return {
'caption': 'Caption',
'heading 1': 'Heading1',
'heading 2': 'Heading2',
'heading 3': 'Heading3',
'heading 4': 'Heading4',
'heading 5': 'Heading5',
'heading 6': 'Heading6',
'heading 7': 'Heading7',
'heading 8': 'Heading8',
'heading 9': 'Heading9',
}.get(name, name.replace(' ', ''))
class CT_LatentStyles(BaseOxmlElement):
"""
`w:latentStyles` element, defining behavior defaults for latent styles
and containing `w:lsdException` child elements that each override those
defaults for a named latent style.
"""
lsdException = ZeroOrMore('w:lsdException', successors=())
count = OptionalAttribute('w:count', ST_DecimalNumber)
defLockedState = OptionalAttribute('w:defLockedState', ST_OnOff)
defQFormat = OptionalAttribute('w:defQFormat', ST_OnOff)
defSemiHidden = OptionalAttribute('w:defSemiHidden', ST_OnOff)
defUIPriority = OptionalAttribute('w:defUIPriority', ST_DecimalNumber)
defUnhideWhenUsed = OptionalAttribute('w:defUnhideWhenUsed', ST_OnOff)
def bool_prop(self, attr_name):
"""
Return the boolean value of the attribute having *attr_name*, or
|False| if not present.
"""
value = getattr(self, attr_name)
if value is None:
return False
return value
def get_by_name(self, name):
"""
Return the `w:lsdException` child having *name*, or |None| if not
found.
"""
found = self.xpath('w:lsdException[@w:name="%s"]' % name)
if not found:
return None
return found[0]
def set_bool_prop(self, attr_name, value):
"""
Set the on/off attribute having *attr_name* to *value*.
"""
setattr(self, attr_name, bool(value))
class CT_LsdException(BaseOxmlElement):
"""
``<w:lsdException>`` element, defining override visibility behaviors for
a named latent style.
"""
locked = OptionalAttribute('w:locked', ST_OnOff)
name = RequiredAttribute('w:name', ST_String)
qFormat = OptionalAttribute('w:qFormat', ST_OnOff)
semiHidden = OptionalAttribute('w:semiHidden', ST_OnOff)
uiPriority = OptionalAttribute('w:uiPriority', ST_DecimalNumber)
unhideWhenUsed = OptionalAttribute('w:unhideWhenUsed', ST_OnOff)
def delete(self):
"""
Remove this `w:lsdException` element from the XML document.
"""
self.getparent().remove(self)
def on_off_prop(self, attr_name):
"""
Return the boolean value of the attribute having *attr_name*, or
|None| if not present.
"""
return getattr(self, attr_name)
def set_on_off_prop(self, attr_name, value):
"""
Set the on/off attribute having *attr_name* to *value*.
"""
setattr(self, attr_name, value)
class CT_Style(BaseOxmlElement):
"""
A ``<w:style>`` element, representing a style definition
"""
_tag_seq = (
'w:name', 'w:aliases', 'w:basedOn', 'w:next', 'w:link',
'w:autoRedefine', 'w:hidden', 'w:uiPriority', 'w:semiHidden',
'w:unhideWhenUsed', 'w:qFormat', 'w:locked', 'w:personal',
'w:personalCompose', 'w:personalReply', 'w:rsid', 'w:pPr', 'w:rPr',
'w:tblPr', 'w:trPr', 'w:tcPr', 'w:tblStylePr'
)
name = ZeroOrOne('w:name', successors=_tag_seq[1:])
basedOn = ZeroOrOne('w:basedOn', successors=_tag_seq[3:])
next = ZeroOrOne('w:next', successors=_tag_seq[4:])
uiPriority = ZeroOrOne('w:uiPriority', successors=_tag_seq[8:])
semiHidden = ZeroOrOne('w:semiHidden', successors=_tag_seq[9:])
unhideWhenUsed = ZeroOrOne('w:unhideWhenUsed', successors=_tag_seq[10:])
qFormat = ZeroOrOne('w:qFormat', successors=_tag_seq[11:])
locked = ZeroOrOne('w:locked', successors=_tag_seq[12:])
pPr = ZeroOrOne('w:pPr', successors=_tag_seq[17:])
rPr = ZeroOrOne('w:rPr', successors=_tag_seq[18:])
del _tag_seq
type = OptionalAttribute('w:type', WD_STYLE_TYPE)
styleId = OptionalAttribute('w:styleId', ST_String)
default = OptionalAttribute('w:default', ST_OnOff)
customStyle = OptionalAttribute('w:customStyle', ST_OnOff)
@property
def basedOn_val(self):
"""
Value of `w:basedOn/@w:val` or |None| if not present.
"""
basedOn = self.basedOn
if basedOn is None:
return None
return basedOn.val
@basedOn_val.setter
def basedOn_val(self, value):
if value is None:
self._remove_basedOn()
else:
self.get_or_add_basedOn().val = value
@property
def base_style(self):
"""
Sibling CT_Style element this style is based on or |None| if no base
style or base style not found.
"""
basedOn = self.basedOn
if basedOn is None:
return None
styles = self.getparent()
base_style = styles.get_by_id(basedOn.val)
if base_style is None:
return None
return base_style
def delete(self):
"""
Remove this `w:style` element from its parent `w:styles` element.
"""
self.getparent().remove(self)
@property
def locked_val(self):
"""
Value of `w:locked/@w:val` or |False| if not present.
"""
locked = self.locked
if locked is None:
return False
return locked.val
@locked_val.setter
def locked_val(self, value):
self._remove_locked()
if bool(value) is True:
locked = self._add_locked()
locked.val = value
@property
def name_val(self):
"""
Value of ``<w:name>`` child or |None| if not present.
"""
name = self.name
if name is None:
return None
return name.val
@name_val.setter
def name_val(self, value):
self._remove_name()
if value is not None:
name = self._add_name()
name.val = value
@property
def next_style(self):
"""
Sibling CT_Style element identified by the value of `w:name/@w:val`
or |None| if no value is present or no style with that style id
is found.
"""
next = self.next
if next is None:
return None
styles = self.getparent()
return styles.get_by_id(next.val) # None if not found
@property
def qFormat_val(self):
"""
Value of `w:qFormat/@w:val` or |False| if not present.
"""
qFormat = self.qFormat
if qFormat is None:
return False
return qFormat.val
@qFormat_val.setter
def qFormat_val(self, value):
self._remove_qFormat()
if bool(value):
self._add_qFormat()
@property
def semiHidden_val(self):
"""
Value of ``<w:semiHidden>`` child or |False| if not present.
"""
semiHidden = self.semiHidden
if semiHidden is None:
return False
return semiHidden.val
@semiHidden_val.setter
def semiHidden_val(self, value):
self._remove_semiHidden()
if bool(value) is True:
semiHidden = self._add_semiHidden()
semiHidden.val = value
@property
def uiPriority_val(self):
"""
Value of ``<w:uiPriority>`` child or |None| if not present.
"""
uiPriority = self.uiPriority
if uiPriority is None:
return None
return uiPriority.val
@uiPriority_val.setter
def uiPriority_val(self, value):
self._remove_uiPriority()
if value is not None:
uiPriority = self._add_uiPriority()
uiPriority.val = value
@property
def unhideWhenUsed_val(self):
"""
Value of `w:unhideWhenUsed/@w:val` or |False| if not present.
"""
unhideWhenUsed = self.unhideWhenUsed
if unhideWhenUsed is None:
return False
return unhideWhenUsed.val
@unhideWhenUsed_val.setter
def unhideWhenUsed_val(self, value):
self._remove_unhideWhenUsed()
if bool(value) is True:
unhideWhenUsed = self._add_unhideWhenUsed()
unhideWhenUsed.val = value
class CT_Styles(BaseOxmlElement):
"""
``<w:styles>`` element, the root element of a styles part, i.e.
styles.xml
"""
_tag_seq = ('w:docDefaults', 'w:latentStyles', 'w:style')
latentStyles = ZeroOrOne('w:latentStyles', successors=_tag_seq[2:])
style = ZeroOrMore('w:style', successors=())
del _tag_seq
def add_style_of_type(self, name, style_type, builtin):
"""
Return a newly added `w:style` element having *name* and
*style_type*. `w:style/@customStyle` is set based on the value of
*builtin*.
"""
style = self.add_style()
style.type = style_type
style.customStyle = None if builtin else True
style.styleId = styleId_from_name(name)
style.name_val = name
return style
def default_for(self, style_type):
"""
Return `w:style[@w:type="*{style_type}*][-1]` or |None| if not found.
"""
default_styles_for_type = [
s for s in self._iter_styles()
if s.type == style_type and s.default
]
if not default_styles_for_type:
return None
# spec calls for last default in document order
return default_styles_for_type[-1]
def get_by_id(self, styleId):
"""
Return the ``<w:style>`` child element having ``styleId`` attribute
matching *styleId*, or |None| if not found.
"""
xpath = 'w:style[@w:styleId="%s"]' % styleId
try:
return self.xpath(xpath)[0]
except IndexError:
return None
def get_by_name(self, name):
"""
Return the ``<w:style>`` child element having ``<w:name>`` child
element with value *name*, or |None| if not found.
"""
xpath = 'w:style[w:name/@w:val="%s"]' % name
try:
return self.xpath(xpath)[0]
except IndexError:
return None
def _iter_styles(self):
"""
Generate each of the `w:style` child elements in document order.
"""
return (style for style in self.xpath('w:style'))
|