Safe Haskell | None |
---|---|
Language | Haskell2010 |
Higher level interface for creating styled worksheets
- data FormattedCell = FormattedCell {
- _formattedCell :: Cell
- _formattedFormat :: Format
- _formattedColSpan :: Int
- _formattedRowSpan :: Int
- data Formatted = Formatted {}
- formatted :: Map (Int, Int) FormattedCell -> StyleSheet -> Formatted
- toFormattedCells :: CellMap -> [Range] -> StyleSheet -> Map (Int, Int) FormattedCell
- data CondFormatted = CondFormatted {}
- conditionallyFormatted :: Map CellRef [FormattedCondFmt] -> StyleSheet -> CondFormatted
- formatAlignment :: Lens' Format (Maybe Alignment)
- formatBorder :: Lens' Format (Maybe Border)
- formatFill :: Lens' Format (Maybe Fill)
- formatFont :: Lens' Format (Maybe Font)
- formatNumberFormat :: Lens' Format (Maybe NumberFormat)
- formatProtection :: Lens' Format (Maybe Protection)
- formatPivotButton :: Lens' Format (Maybe Bool)
- formatQuotePrefix :: Lens' Format (Maybe Bool)
- formattedCell :: Lens' FormattedCell Cell
- formattedFormat :: Lens' FormattedCell Format
- formattedColSpan :: Lens' FormattedCell Int
- formattedRowSpan :: Lens' FormattedCell Int
- condfmtCondition :: Lens' FormattedCondFmt Condition
- condfmtDxf :: Lens' FormattedCondFmt Dxf
- condfmtPriority :: Lens' FormattedCondFmt Int
- condfmtStopIfTrue :: Lens' FormattedCondFmt (Maybe Bool)
Documentation
data FormattedCell Source #
Cell with formatting. _cellStyle
property of _formattedCell
is ignored
See formatted
for more details.
FormattedCell | |
|
Result of formatting
See formatted
Formatted | |
|
formatted :: Map (Int, Int) FormattedCell -> StyleSheet -> Formatted Source #
Higher level API for creating formatted documents
Creating formatted Excel spreadsheets using the Cell
datatype directly,
even with the support for the StyleSheet
datatype, is fairly painful.
This has a number of causes:
- The
Cell
datatype wants anInt
for the style, which is supposed to point into the_styleSheetCellXfs
part of a stylesheet. However, this can be difficult to work with, as it requires manual tracking of cell style IDs, which in turns requires manual tracking of font IDs, border IDs, etc. - Row-span and column-span properties are set on the worksheet as a whole
(
wsMerges
) rather than on individual cells. - Excel does not correctly deal with borders on cells that span multiple columns or rows. Instead, these rows must be set on all the edge cells in the block. Again, this means that this becomes a global property of the spreadsheet rather than properties of individual cells.
This function deals with all these problems. Given a map of FormattedCell
s,
which refer directly to Font
s, Border
s, etc. (rather than font IDs,
border IDs, etc.), and an initial stylesheet, it recovers all possible
sharing, constructs IDs, and then constructs the final CellMap
, as well as
the final stylesheet and list of merges.
If you don't already have a StyleSheet
you want to use as starting point
then minimalStyleSheet
is a good choice.
toFormattedCells :: CellMap -> [Range] -> StyleSheet -> Map (Int, Int) FormattedCell Source #
reverse to formatted
which allows to get a map of formatted cells
from an existing worksheet and its workbook's style sheet
data CondFormatted Source #
CondFormatted | |
|
conditionallyFormatted :: Map CellRef [FormattedCondFmt] -> StyleSheet -> CondFormatted Source #
Lenses
Format
formatNumberFormat :: Lens' Format (Maybe NumberFormat) Source #
formatProtection :: Lens' Format (Maybe Protection) Source #
FormattedCell
formattedFormat :: Lens' FormattedCell Format Source #
FormattedCondFmt
condfmtCondition :: Lens' FormattedCondFmt Condition Source #
condfmtDxf :: Lens' FormattedCondFmt Dxf Source #
condfmtPriority :: Lens' FormattedCondFmt Int Source #