summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/xetable.hxx
diff options
context:
space:
mode:
authorAlexander Wilms <f.alexander.wilms@gmail.com>2014-02-25 19:58:48 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-03-03 11:04:44 -0600
commit84862db95a5e22b9ef89baa2a8a5deeffefbdef6 (patch)
tree2682cf093a4a5d513bdedaee8298525c9b57ef6f /sc/source/filter/inc/xetable.hxx
parent7801c94bffdabe669601d23e86f2f2a41447902d (diff)
Remove visual noise from sc
Conflicts: sc/source/ui/inc/docfunc.hxx Change-Id: I9314437ed3dd60e84d28c08ac0a2d1ed7bd1daf8 Reviewed-on: https://gerrit.libreoffice.org/8301 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc/source/filter/inc/xetable.hxx')
-rw-r--r--sc/source/filter/inc/xetable.hxx56
1 files changed, 28 insertions, 28 deletions
diff --git a/sc/source/filter/inc/xetable.hxx b/sc/source/filter/inc/xetable.hxx
index 3299e60d99bc..5dd87e43b996 100644
--- a/sc/source/filter/inc/xetable.hxx
+++ b/sc/source/filter/inc/xetable.hxx
@@ -44,9 +44,9 @@ Export of cell tables including row and column description.
- Merged cell ranges.
============================================================================ */
-// ============================================================================
+
// Helper records for cell records
-// ============================================================================
+
/** Represents a STRING record that contains the result of a string formula. */
class XclExpStringRec : public XclExpRecord
@@ -126,7 +126,7 @@ private:
typedef boost::shared_ptr< XclExpArray > XclExpArrayRef;
-// ----------------------------------------------------------------------------
+
/** Caches all ARRAY records. */
class XclExpArrayBuffer : protected XclExpRoot
@@ -177,7 +177,7 @@ private:
typedef boost::shared_ptr< XclExpShrfmla > XclExpShrfmlaRef;
-// ----------------------------------------------------------------------------
+
/** Caches all SHRFMLA records and provides functions to update their ranges. */
class XclExpShrfmlaBuffer : protected XclExpRoot
@@ -252,7 +252,7 @@ private:
typedef boost::shared_ptr< XclExpTableop > XclExpTableopRef;
-// ----------------------------------------------------------------------------
+
/** Contains all created TABLEOP records and supports creating or updating them. */
class XclExpTableopBuffer : protected XclExpRoot
@@ -279,9 +279,9 @@ private:
XclExpTableopList maTableopList; /// List of all TABLEOP records.
};
-// ============================================================================
+
// Cell records
-// ============================================================================
+
/** The base class of all cell records. */
class XclExpCellBase : public XclExpRecord
@@ -370,7 +370,7 @@ private:
sal_Size mnContSize; /// The size of the cell contents.
};
-// ----------------------------------------------------------------------------
+
/** Represents a NUMBER record that describes a cell with a double value. */
class XclExpNumberCell : public XclExpSingleCellBase
@@ -390,7 +390,7 @@ private:
double mfValue; /// The cell value.
};
-// ----------------------------------------------------------------------------
+
/** Represents a BOOLERR record that describes a cell with a Boolean value. */
class XclExpBooleanCell : public XclExpSingleCellBase
@@ -451,7 +451,7 @@ private:
bool mbLineBreak; /// True = cell has automatic linebreaks enabled.
};
-// ----------------------------------------------------------------------------
+
class ScFormulaCell;
@@ -492,7 +492,7 @@ struct XclExpMultiXFId : public XclExpXFId
XclExpXFId( nXFId ), mnCount( nCount ) {}
};
-// ----------------------------------------------------------------------------
+
/** Base class for all cell records supporting multiple contents. */
class XclExpMultiCellBase : public XclExpCellBase
@@ -554,7 +554,7 @@ private:
XclExpMultiXFIdDeq maXFIds; /// The XF identifiers of the cell formatting.
};
-// ----------------------------------------------------------------------------
+
/** Represents a BLANK or MULBLANK record that describes empty but formatted cells. */
class XclExpBlankCell : public XclExpMultiCellBase
@@ -581,7 +581,7 @@ private:
virtual void WriteXmlContents( XclExpXmlStream& rStrm, const XclAddress& rAddress, sal_uInt32 nXFId, sal_uInt16 nRelCol );
};
-// ----------------------------------------------------------------------------
+
/** Represents an RK or MULRK record that describes cells with a compressed double values. */
class XclExpRkCell : public XclExpMultiCellBase
@@ -605,9 +605,9 @@ private:
ScfInt32Vec maRkValues; /// The cell values.
};
-// ============================================================================
+
// Rows and Columns
-// ============================================================================
+
class ScOutlineArray;
@@ -644,7 +644,7 @@ private:
bool mbCurrCollapse; /// true = Collapsed group ends at current position.
};
-// ----------------------------------------------------------------------------
+
/** The outline buffer for column outlines. */
class XclExpColOutlineBuffer : public XclExpOutlineBuffer
@@ -658,7 +658,7 @@ public:
{ UpdateColRow( static_cast< SCCOLROW >( nScCol ) ); }
};
-// ----------------------------------------------------------------------------
+
/** The outline buffer for row outlines. */
class XclExpRowOutlineBuffer : public XclExpOutlineBuffer
@@ -672,7 +672,7 @@ public:
{ UpdateColRow( static_cast< SCCOLROW >( nScRow ) ); }
};
-// ----------------------------------------------------------------------------
+
/** Represents a GUTS record containing the level count of row and column outlines. */
class XclExpGuts : public XclExpRecord
@@ -690,7 +690,7 @@ private:
sal_uInt16 mnRowWidth; /// Width of row outline area (pixels).
};
-// ----------------------------------------------------------------------------
+
/** Represents a DIMENSIONS record containing the used area of a sheet. */
class XclExpDimensions : public XclExpRecord
@@ -715,7 +715,7 @@ private:
sal_uInt16 mnFirstFreeXclCol; /// First free column after used area.
};
-// ============================================================================
+
/** Represents the DEFCOLWIDTH record containing the default column width of a sheet.
@@ -741,7 +741,7 @@ public:
void SetDefWidth( sal_uInt16 nXclColWidth );
};
-// ----------------------------------------------------------------------------
+
/** Contains the column settings for a range of columns.
@@ -790,7 +790,7 @@ private:
sal_uInt16 mnLastXclCol; /// Index to last column.
};
-// ----------------------------------------------------------------------------
+
/** Contains COLINFO records for all columns of a Calc sheet.
@@ -824,7 +824,7 @@ private:
XclExpColOutlineBuffer maOutlineBfr; /// Buffer for column outline groups.
};
-// ============================================================================
+
class XclExpRow;
@@ -843,7 +843,7 @@ struct XclExpDefaultRowData
inline bool IsUnsynced() const { return ::get_flag( mnFlags, EXC_DEFROW_UNSYNCED ); }
};
-// ----------------------------------------------------------------------------
+
/** Represents a DEFROWHEIGHT record containing default format for unused rows. */
class XclExpDefrowheight : public XclExpRecord
@@ -862,7 +862,7 @@ private:
XclExpDefaultRowData maDefData; /// Record data.
};
-// ----------------------------------------------------------------------------
+
/** Represents a ROW record and additionally contains all cells records of a row.
@@ -953,7 +953,7 @@ private:
bool mbEnabled; /// true = Write this ROW record.
};
-// ----------------------------------------------------------------------------
+
/** Collects all rows which contain all cells of a sheet.
@@ -998,9 +998,9 @@ private:
XclExpDimensions maDimensions; /// DIMENSIONS record for used area.
};
-// ============================================================================
+
// Cell Table
-// ============================================================================
+
class XclExpNote;
class XclExpMergedcells;