123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- from __future__ import absolute_import
- # Copyright (c) 2010-2019 openpyxl
- from collections import OrderedDict
- from openpyxl.compat import basestring
- from openpyxl.descriptors import (
- Bool,
- String,
- Sequence,
- Alias,
- Convertible,
- )
- from openpyxl.descriptors.excel import ExtensionList
- from openpyxl.descriptors.serialisable import Serialisable
- from .rule import Rule
- from openpyxl.worksheet.cell_range import MultiCellRange
- class ConditionalFormatting(Serialisable):
- tagname = "conditionalFormatting"
- sqref = Convertible(expected_type=MultiCellRange)
- cells = Alias("sqref")
- pivot = Bool(allow_none=True)
- cfRule = Sequence(expected_type=Rule)
- rules = Alias("cfRule")
- def __init__(self, sqref=(), pivot=None, cfRule=(), extLst=None):
- self.sqref = sqref
- self.pivot = pivot
- self.cfRule = cfRule
- def __eq__(self, other):
- if not isinstance(other, self.__class__):
- return False
- return self.sqref == other.sqref
- def __hash__(self):
- return hash(str(self.sqref))
- def __repr__(self):
- return "<{cls} {cells}>".format(cls=self.__class__.__name__, cells=self.sqref)
- def __contains__(self, coord):
- """
- Check whether a certain cell is affected by the formatting
- """
- return coord in self.sqref
- class ConditionalFormattingList(object):
- """Conditional formatting rules."""
- def __init__(self):
- self._cf_rules = OrderedDict()
- self.max_priority = 0
- def add(self, range_string, cfRule):
- """Add a rule such as ColorScaleRule, FormulaRule or CellIsRule
- The priority will be added automatically.
- """
- cf = range_string
- if isinstance(range_string, basestring):
- cf = ConditionalFormatting(range_string)
- if not isinstance(cfRule, Rule):
- raise ValueError("Only instances of openpyxl.formatting.rule.Rule may be added")
- rule = cfRule
- self.max_priority += 1
- if not rule.priority:
- rule.priority = self.max_priority
- self._cf_rules.setdefault(cf, []).append(rule)
- def __bool__(self):
- return bool(self._cf_rules)
- __nonzero = __bool__
- def __len__(self):
- return len(self._cf_rules)
- def __iter__(self):
- for cf, rules in self._cf_rules.items():
- cf.rules = rules
- yield cf
- def __getitem__(self, key):
- """
- Get the rules for a cell range
- """
- if isinstance(key, basestring):
- key = ConditionalFormatting(sqref=key)
- return self._cf_rules[key]
- def __delitem__(self, key):
- key = ConditionalFormatting(sqref=key)
- del self._cf_rules[key]
- def __setitem__(self, key, rule):
- """
- Add a rule for a cell range
- """
- self.add(key, rule)
|