Lines Matching refs:CellPos

68 struct CellPos  struct
73 CellPos() : mnCol( 0 ), mnRow( 0 ) {} in CellPos() argument
74 CellPos( sal_Int32 nCol, sal_Int32 nRow ) { mnCol = nCol; mnRow = nRow; } in CellPos() function
76 bool operator==( const CellPos& r ) const { return (r.mnCol == mnCol) && (r.mnRow == mnRow); } in operator ==() argument
77 bool operator!=( const CellPos& r ) const { return (r.mnCol != mnCol) || (r.mnRow != mnRow); } in operator !=() argument
121 SdrTableObj* CloneRange( const CellPos& rStartPos, const CellPos& rEndPos );
127 bool isValid( const sdr::table::CellPos& rPos ) const;
128 CellPos getFirstCell() const;
129 CellPos getLastCell() const;
130 CellPos getLeftCell( const CellPos& rPos, bool bEdgeTravel ) const;
131 CellPos getRightCell( const CellPos& rPos, bool bEdgeTravel ) const;
132 CellPos getUpCell( const CellPos& rPos, bool bEdgeTravel ) const;
133 CellPos getDownCell( const CellPos& rPos, bool bEdgeTravel ) const;
134 CellPos getPreviousCell( const CellPos& rPos, bool bEdgeTravel ) const;
135 CellPos getNextCell( const CellPos& rPos, bool bEdgeTravel ) const;
136 CellPos getPreviousRow( const CellPos& rPos, bool bEdgeTravel ) const;
137 CellPos getNextRow( const CellPos& rPos, bool bEdgeTravel ) const;
152 void setActiveCell( const sdr::table::CellPos& rPos );
153 void getActiveCellPos( sdr::table::CellPos& rPos ) const;
158 void getCellBounds( const sdr::table::CellPos& rPos, ::Rectangle& rCellRect );
191 bool IsTextEditActive( const sdr::table::CellPos& rPos );
198 SdrOutliner* GetCellTextEditOutliner( const sdr::table::CellPos& rPos ) const;
202 …virtual void TakeTextRect( const sdr::table::CellPos& rPos, SdrOutliner& rOutliner, ::Rectangle& r…
204 virtual void TakeTextAnchorRect(const sdr::table::CellPos& rPos, ::Rectangle& rAnchorRect ) const;
265 …virtual void TakeTextEditArea(const sdr::table::CellPos& rPos, Size* pPaperMin, Size* pPaperMax, R…