Searched refs:pCellFrm (Results 1 – 10 of 10) sorted by relevance
| /AOO41X/main/sw/source/core/layout/ |
| H A D | tabfrm.cxx | 866 SwCellFrm* pCellFrm = static_cast<SwCellFrm*>(pRow->GetLower()); in lcl_AdjustRowSpanCells() 867 while ( pCellFrm ) in lcl_AdjustRowSpanCells() 869 const long nLayoutRowSpan = pCellFrm->GetLayoutRowSpan(); in lcl_AdjustRowSpanCells() 874 const long nDiff = nNewCellHeight - (pCellFrm->Frm().*fnRect->fnGetHeight)(); in lcl_AdjustRowSpanCells() 876 (pCellFrm->Frm().*fnRect->fnAddBottom)( nDiff ); in lcl_AdjustRowSpanCells() 879 pCellFrm = static_cast<SwCellFrm*>(pCellFrm->GetNext()); in lcl_AdjustRowSpanCells() 1310 const SwCellFrm* pCellFrm = static_cast<const SwCellFrm*>(pFollowRow->GetLower()); in Split() local 1311 while ( pCellFrm ) in Split() 1313 if ( pCellFrm->GetTabBox()->getRowSpan() < 1 ) in Split() 1319 pCellFrm = static_cast<const SwCellFrm*>(pCellFrm->GetNext()); in Split() [all …]
|
| H A D | flylay.cxx | 1136 const SwFrm* pCellFrm = const_cast<SwFlyFrm*>(pFly) in CalcClipRect() local 1138 while ( pCellFrm && !pCellFrm->IsCellFrm() ) in CalcClipRect() 1140 pCellFrm = pCellFrm->GetUpper(); in CalcClipRect() 1142 if ( pCellFrm ) in CalcClipRect() 1144 aTmp = pCellFrm->Prt(); in CalcClipRect() 1145 aTmp += pCellFrm->Frm().Pos(); in CalcClipRect()
|
| H A D | flycnt.cxx | 560 const SwFrm* pCellFrm = GetAnchorFrm(); in MakeAll() local 561 while ( pCellFrm && !pCellFrm->IsCellFrm() ) in MakeAll() 563 pCellFrm = pCellFrm->GetUpper(); in MakeAll() 565 if ( pCellFrm ) in MakeAll() 567 SWRECTFN( pCellFrm ) in MakeAll() 568 if ( (pCellFrm->Frm().*fnRect->fnGetTop)() == 0 && in MakeAll() 569 (pCellFrm->Frm().*fnRect->fnGetHeight)() == 0 ) in MakeAll()
|
| /AOO41X/main/sw/source/core/access/ |
| H A D | acccell.cxx | 113 const SwCellFrm *pCellFrm ) in SwAccessibleCell() argument 114 : SwAccessibleContext( pInitMap, AccessibleRole::TABLE_CELL, pCellFrm ) in SwAccessibleCell() 121 OUString sBoxName( pCellFrm->GetTabBox()->GetName() ); in SwAccessibleCell() 382 const SwCellFrm* pCellFrm = static_cast<const SwCellFrm*>( GetFrm() ); in GetTblBoxFormat() local 383 return pCellFrm->GetTabBox()->GetFrmFmt(); in GetTblBoxFormat() 395 const SwCellFrm* pCellFrm = static_cast<const SwCellFrm*>( GetFrm() ); in getCurrentValue() local 396 const SwStartNode *pSttNd = pCellFrm->GetTabBox()->GetSttNd(); in getCurrentValue()
|
| H A D | acctable.cxx | 446 const SwFrm *pCellFrm = GetCellAtPos( *aSttCol, *aSttRow, sal_False ); in GetCell() local 448 return pCellFrm; in GetCell() 746 const SwCellFrm* pCellFrm = in GetTableBox() local 748 pBox = pCellFrm->GetTabBox(); in GetTableBox() 1099 const SwFrm *pCellFrm = GetTableData().GetCellAtPos( *aSttCol, *aSttRow, in getAccessibleRowExtentAt() local 1101 if( pCellFrm ) in getAccessibleRowExtentAt() 1103 sal_Int32 nBottom = pCellFrm->Frm().Bottom(); in getAccessibleRowExtentAt() 1131 const SwFrm *pCellFrm = GetTableData().GetCellAtPos( *aSttCol, *aSttRow, in getAccessibleColumnExtentAt() local 1133 if( pCellFrm ) in getAccessibleColumnExtentAt() 1135 sal_Int32 nRight = pCellFrm->Frm().Right(); in getAccessibleColumnExtentAt() [all …]
|
| H A D | acccell.hxx | 70 SwAccessibleCell( SwAccessibleMap* pInitMap, const SwCellFrm *pCellFrm );
|
| /AOO41X/main/sw/source/core/text/ |
| H A D | EnhancedPDFExportHelper.cxx | 1236 const SwFrm* pCellFrm = pRowFrm->GetLower(); in BeginBlockStructureElements() local 1238 const long nLeft = (pCellFrm->Frm().*fnRect->fnGetLeft)(); in BeginBlockStructureElements() 1241 while ( pCellFrm ) in BeginBlockStructureElements() 1243 const long nRight = (pCellFrm->Frm().*fnRect->fnGetRight)(); in BeginBlockStructureElements() 1245 pCellFrm = pCellFrm->GetNext(); in BeginBlockStructureElements()
|
| /AOO41X/main/sw/source/core/docnode/ |
| H A D | ndtbl1.cxx | 549 inline void InsertCell( SvPtrarr& rCellArr, SwCellFrm* pCellFrm ) in InsertCell() argument 551 if( USHRT_MAX == rCellArr.GetPos( pCellFrm ) ) in InsertCell() 552 rCellArr.Insert( pCellFrm, rCellArr.Count() ); in InsertCell()
|
| /AOO41X/main/sw/source/core/table/ |
| H A D | swtable.cxx | 2764 const SwCellFrm * pCellFrm = static_cast<const SwCellFrm *>(pFrm); in getNextTableBoxsCellFrm() local 2765 const SwTableBox * pTabBox = pCellFrm->GetTabBox(); in getNextTableBoxsCellFrm() 2770 pResult = pCellFrm; in getNextTableBoxsCellFrm()
|
| /AOO41X/main/sw/source/core/frmedt/ |
| H A D | tblsel.cxx | 1656 const SwCellFrm* pCellFrm = (SwCellFrm*)aSttArr[ n-1 ]; in lcl_FindStartEndRow() local 1657 const SwTableLines& rLns = pCellFrm-> in lcl_FindStartEndRow() 1663 rpStart = rpEnd = pCellFrm; in lcl_FindStartEndRow()
|