Lines Matching refs:nRow
87 inline bool IsValidPos( size_t nCol, size_t nRow ) const in IsValidPos()
88 { return (nCol < mnWidth) && (nRow < mnHeight); } in IsValidPos()
89 inline size_t GetIndex( size_t nCol, size_t nRow ) const in GetIndex()
90 { return nRow * mnWidth + nCol; } in GetIndex()
92 const Cell& GetCell( size_t nCol, size_t nRow ) const;
93 Cell& GetCellAcc( size_t nCol, size_t nRow );
95 size_t GetMergedFirstCol( size_t nCol, size_t nRow ) const;
96 size_t GetMergedFirstRow( size_t nCol, size_t nRow ) const;
97 size_t GetMergedLastCol( size_t nCol, size_t nRow ) const;
98 size_t GetMergedLastRow( size_t nCol, size_t nRow ) const;
100 const Cell& GetMergedOriginCell( size_t nCol, size_t nRow ) const;
101 Cell& GetMergedOriginCellAcc( size_t nCol, size_t nRow );
103 bool IsMergedOverlappedLeft( size_t nCol, size_t nRow ) const;
104 bool IsMergedOverlappedRight( size_t nCol, size_t nRow ) const;
105 bool IsMergedOverlappedTop( size_t nCol, size_t nRow ) const;
106 bool IsMergedOverlappedBottom( size_t nCol, size_t nRow ) const;
108 bool IsInClipRange( size_t nCol, size_t nRow ) const;
110 bool IsRowInClipRange( size_t nRow ) const;
113 inline size_t GetMirrorRow( size_t nRow ) const { return mnHeight - nRow - 1; } in GetMirrorRow()
116 long GetRowPosition( size_t nRow ) const;
121 double GetHorDiagAngle( size_t nCol, size_t nRow, bool bSimple = false ) const;
122 double GetVerDiagAngle( size_t nCol, size_t nRow, bool bSimple = false ) const;
188 size_t GetCellIndex( size_t nCol, size_t nRow, bool bRTL = false) const;
193 void SetCellStyleLeft( size_t nCol, size_t nRow, const Style& rStyle );
196 void SetCellStyleRight( size_t nCol, size_t nRow, const Style& rStyle );
199 void SetCellStyleTop( size_t nCol, size_t nRow, const Style& rStyle );
202 void SetCellStyleBottom( size_t nCol, size_t nRow, const Style& rStyle );
205 void SetCellStyleTLBR( size_t nCol, size_t nRow, const Style& rStyle );
208 void SetCellStyleBLTR( size_t nCol, size_t nRow, const Style& rStyle );
211 …void SetCellStyleDiag( size_t nCol, size_t nRow, const Style& rTLBR, const Style& r…
220 void SetRowStyleTop( size_t nRow, const Style& rStyle );
223 void SetRowStyleBottom( size_t nRow, const Style& rStyle );
232 const Style& GetCellStyleLeft( size_t nCol, size_t nRow, bool bSimple = false ) const;
241 const Style& GetCellStyleRight( size_t nCol, size_t nRow, bool bSimple = false ) const;
250 const Style& GetCellStyleTop( size_t nCol, size_t nRow, bool bSimple = false ) const;
259 const Style& GetCellStyleBottom( size_t nCol, size_t nRow, bool bSimple = false ) const;
267 const Style& GetCellStyleTLBR( size_t nCol, size_t nRow, bool bSimple = false ) const;
275 const Style& GetCellStyleBLTR( size_t nCol, size_t nRow, bool bSimple = false ) const;
283 const Style& GetCellStyleTL( size_t nCol, size_t nRow ) const;
291 const Style& GetCellStyleBR( size_t nCol, size_t nRow ) const;
299 const Style& GetCellStyleBL( size_t nCol, size_t nRow ) const;
307 const Style& GetCellStyleTR( size_t nCol, size_t nRow ) const;
316 void RemoveMergedRange( size_t nCol, size_t nRow );
321 void SetAddMergedLeftSize( size_t nCol, size_t nRow, long nAddSize );
326 void SetAddMergedRightSize( size_t nCol, size_t nRow, long nAddSize );
331 void SetAddMergedTopSize( size_t nCol, size_t nRow, long nAddSize );
336 void SetAddMergedBottomSize( size_t nCol, size_t nRow, long nAddSize );
339 bool IsMerged( size_t nCol, size_t nRow ) const;
342 bool IsMergedOrigin( size_t nCol, size_t nRow ) const;
345 bool IsMergedOverlapped( size_t nCol, size_t nRow ) const;
348 bool IsMergedOverlappedLeft( size_t nCol, size_t nRow ) const;
351 bool IsMergedOverlappedRight( size_t nCol, size_t nRow ) const;
354 bool IsMergedOverlappedTop( size_t nCol, size_t nRow ) const;
357 bool IsMergedOverlappedBottom( size_t nCol, size_t nRow ) const;
360 … GetMergedOrigin( size_t& rnFirstCol, size_t& rnFirstRow, size_t nCol, size_t nRow ) const;
363 …void GetMergedSize( size_t& rnWidth, size_t& rnHeight, size_t nCol, size_t nRow ) c…
367 size_t& rnLastCol, size_t& rnLastRow, size_t nCol, size_t nRow ) const;
386 bool IsInClipRange( size_t nCol, size_t nRow ) const;
403 void SetRowHeight( size_t nRow, long nHeight );
419 long GetRowPosition( size_t nRow ) const;
428 long GetRowHeight( size_t nRow ) const;
443 Point GetCellPosition( size_t nCol, size_t nRow, bool bSimple = false ) const;
449 Size GetCellSize( size_t nCol, size_t nRow, bool bSimple = false ) const;
455 Rectangle GetCellRect( size_t nCol, size_t nRow, bool bSimple = false ) const;
463 double GetHorDiagAngle( size_t nCol, size_t nRow, bool bSimple = false ) const;
469 double GetVerDiagAngle( size_t nCol, size_t nRow, bool bSimple = false ) const;
503 void DrawCell( OutputDevice& rDev, size_t nCol, size_t nRow,