Lines Matching refs:pFrm

130 const SwFrm* lcl_FindMostUpperCellFrm( const SwFrm* pFrm )  in lcl_FindMostUpperCellFrm()  argument
132 while ( pFrm && in lcl_FindMostUpperCellFrm()
133 ( !pFrm->IsCellFrm() || in lcl_FindMostUpperCellFrm()
134 !pFrm->GetUpper()->GetUpper()->IsTabFrm() || in lcl_FindMostUpperCellFrm()
135 pFrm->GetUpper()->GetUpper()->GetUpper()->IsInTab() ) ) in lcl_FindMostUpperCellFrm()
137 pFrm = pFrm->GetUpper(); in lcl_FindMostUpperCellFrm()
139 return pFrm; in lcl_FindMostUpperCellFrm()
145 SwFrm *pFrm = GetCurrFrm(); in _SelTblRowOrCol() local
146 if( !pFrm->IsInTab() ) in _SelTblRowOrCol()
149 const SwTabFrm* pTabFrm = pFrm->FindTabFrm(); in _SelTblRowOrCol()
191 const SwFrm* pStartFrm = pFrm; in _SelTblRowOrCol()
204 const bool bVert = pFrm->ImplFindTabFrm()->IsVertical(); in _SelTblRowOrCol()
263 SwFrm *pFrm = GetCurrFrm(); in SelTbl() local
264 if( !pFrm->IsInTab() ) in SelTbl()
267 const SwTabFrm *pTblFrm = pFrm->ImplFindTabFrm(); in SelTbl()
307 SwFrm *pFrm = GetCurrFrm(); in SelTblBox() local
308 DBG_ASSERT( !pFrm->IsInTab() == !(pStartNode != NULL), in SelTblBox()
380 SwCntntFrm* pFrm = pCNd->getLayoutFrm( pCNd->GetDoc()->GetCurrentLayout() ); in lcl_FindNextCell() local
382 if ( 0 == pFrm || pCNd->FindTableNode() != pTblNd || in lcl_FindNextCell()
383 (!bInReadOnly && pFrm->IsProtected() ) ) in lcl_FindNextCell()
412 pFrm = pCNd->getLayoutFrm( pCNd->GetDoc()->GetCurrentLayout() ); in lcl_FindNextCell()
414 if ( 0 != pFrm && pCNd->FindTableNode() == pTblNd && in lcl_FindNextCell()
415 (bInReadOnly || !pFrm->IsProtected() ) ) in lcl_FindNextCell()
454 SwCntntFrm* pFrm = pCNd->getLayoutFrm( pCNd->GetDoc()->GetCurrentLayout() ); in lcl_FindPrevCell() local
456 if( 0 == pFrm || pCNd->FindTableNode() != pTblNd || in lcl_FindPrevCell()
457 (!bInReadOnly && pFrm->IsProtected() )) in lcl_FindPrevCell()
475 pFrm = pCNd->getLayoutFrm( pCNd->GetDoc()->GetCurrentLayout() ); in lcl_FindPrevCell()
477 if( 0 != pFrm && pCNd->FindTableNode() == pTblNd && in lcl_FindPrevCell()
478 (bInReadOnly || !pFrm->IsProtected() ) ) in lcl_FindPrevCell()
707 SwFrm *pFrm = GetCurrFrm( sal_False ); in IsTblComplex() local
708 if ( pFrm && pFrm->IsInTab() ) in IsTblComplex()
709 return pFrm->FindTabFrm()->GetTable()->IsTblComplex(); in IsTblComplex()
741 SwFrm* pFrm; in GetBoxNms() local
746 pFrm = pCNd ? pCNd->getLayoutFrm( GetLayout() ) : 0; in GetBoxNms()
747 if( !pFrm ) in GetBoxNms()
751 pFrm = pFrm->GetUpper(); in GetBoxNms()
752 } while ( pFrm && !pFrm->IsCellFrm() ); in GetBoxNms()
754 ASSERT( pFrm, "kein Frame zur Box" ); in GetBoxNms()
755 sNm = ((SwCellFrm*)pFrm)->GetTabBox()->GetName(); in GetBoxNms()
768 pFrm = pCNd ? pCNd->getLayoutFrm( GetLayout() ) : 0; in GetBoxNms()
770 if( pFrm ) in GetBoxNms()
773 pFrm = pFrm->GetUpper(); in GetBoxNms()
774 } while ( pFrm && !pFrm->IsCellFrm() ); in GetBoxNms()
776 if( pFrm ) in GetBoxNms()
777 sNm += ((SwCellFrm*)pFrm)->GetTabBox()->GetName(); in GetBoxNms()