123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- from __future__ import absolute_import
- # Copyright (c) 2010-2019 openpyxl
- from openpyxl.descriptors.serialisable import Serialisable
- from openpyxl.descriptors import (
- Typed,
- Bool,
- Integer,
- String,
- Sequence,
- )
- from openpyxl.descriptors.excel import Relation
- from .ole import ObjectAnchor
- class ControlProperty(Serialisable):
- tagname = "controlPr"
- anchor = Typed(expected_type=ObjectAnchor, )
- locked = Bool(allow_none=True)
- defaultSize = Bool(allow_none=True)
- _print = Bool(allow_none=True)
- disabled = Bool(allow_none=True)
- recalcAlways = Bool(allow_none=True)
- uiObject = Bool(allow_none=True)
- autoFill = Bool(allow_none=True)
- autoLine = Bool(allow_none=True)
- autoPict = Bool(allow_none=True)
- macro = String(allow_none=True)
- altText = String(allow_none=True)
- linkedCell = String(allow_none=True)
- listFillRange = String(allow_none=True)
- cf = String(allow_none=True)
- id = Relation(allow_none=True)
- __elements__ = ('anchor',)
- def __init__(self,
- anchor=None,
- locked=True,
- defaultSize=True,
- _print=True,
- disabled=False,
- recalcAlways=False,
- uiObject=False,
- autoFill=True,
- autoLine=True,
- autoPict=True,
- macro=None,
- altText=None,
- linkedCell=None,
- listFillRange=None,
- cf='pict',
- id=None,
- ):
- self.anchor = anchor
- self.locked = locked
- self.defaultSize = defaultSize
- self._print = _print
- self.disabled = disabled
- self.recalcAlways = recalcAlways
- self.uiObject = uiObject
- self.autoFill = autoFill
- self.autoLine = autoLine
- self.autoPict = autoPict
- self.macro = macro
- self.altText = altText
- self.linkedCell = linkedCell
- self.listFillRange = listFillRange
- self.cf = cf
- self.id = id
- class Control(Serialisable):
- tagname = "control"
- controlPr = Typed(expected_type=ControlProperty, allow_none=True)
- shapeId = Integer()
- name = String(allow_none=True)
- __elements__ = ('controlPr',)
- def __init__(self,
- controlPr=None,
- shapeId=None,
- name=None,
- ):
- self.controlPr = controlPr
- self.shapeId = shapeId
- self.name = name
- class Controls(Serialisable):
- tagname = "controls"
- control = Sequence(expected_type=Control)
- __elements__ = ('control',)
- def __init__(self,
- control=(),
- ):
- self.control = control
|