Home
last modified time | relevance | path

Searched refs:nRowSpan (Results 1 – 25 of 44) sorted by last modified time

12

/trunk/main/sw/source/core/undo/
H A Duntbl.cxx175 long nRowSpan; member in _SaveBox
1258 : pNext( 0 ), nSttNode( ULONG_MAX ), nRowSpan(0) in _SaveBox()
1270 nRowSpan = rBox.getRowSpan(); in _SaveBox()
1416 pBox->setRowSpan( nRowSpan ); in CreateNew()
/trunk/main/sw/source/core/layout/
H A Dpaintfrm.cxx2291 const long nRowSpan = pThisCell->GetTabBox()->getRowSpan(); in HandleFrame() local
2292 if ( !pRowFrm->IsRowSpanLine() || nRowSpan > 1 || nRowSpan < -1 ) in HandleFrame()
H A Dtabfrm.cxx4194 const long nRowSpan = pLow->GetLayoutRowSpan(); in lcl_CalcMinRowHeight() local
4200 if ( 1 == nRowSpan ) in lcl_CalcMinRowHeight()
4204 else if ( -1 == nRowSpan ) in lcl_CalcMinRowHeight()
4553 long nRowSpan = pToAdjust->GetLayoutRowSpan(); in AdjustCells() local
4562 if ( nRowSpan-- == 1 ) in AdjustCells()
/trunk/main/svx/source/table/
H A Dtablemodel.cxx660 sal_Int32 nRowSpan = xCell->getRowSpan(); in notifyModification() local
666 if( nRowSpan != 1 ) in notifyModification()
667 fprintf( file, " row-span=\"%ld\"", nRowSpan ); in notifyModification()
785 const sal_Int32 nRowSpan = xCell->getRowSpan(); in insertColumns() local
956 if( (nRowSpan > 1) && ((nRowSpan + nRow) > nIndex) ) in insertRows()
960 nRowSpan += nCount; in insertRows()
1026 if( nRowSpan <= 1 ) in removeRows()
1032 if( (nRow + nRowSpan) > (nIndex + nCount) ) in removeRows()
1047 else if( nRowSpan > (nIndex - nRow) ) in removeRows()
1194 const sal_Int32 nLastRow = nRow + nRowSpan; in merge()
[all …]
H A Dcell.cxx388 void Cell::merge( sal_Int32 nColumnSpan, sal_Int32 nRowSpan ) in merge() argument
390 if( (mnColSpan != nColumnSpan) || (mnRowSpan != nRowSpan) || (mbMerged != sal_False) ) in merge()
393 mnRowSpan = nRowSpan; in merge()
H A Dcell.hxx104 SVX_DLLPRIVATE void merge( sal_Int32 nColumnSpan, sal_Int32 nRowSpan );
/trunk/main/filter/source/msfilter/
H A Dsvdfppt.cxx7624 …ference< XTable >& xTable, sal_Int32 nCol, sal_Int32 nRow, sal_Int32 nColSpan, sal_Int32 nRowSpan ) in MergeCells() argument
7626 DBG_ASSERT( (nColSpan > 1) || (nRowSpan > 1), "nonsense parameter!!" ); in MergeCells()
7629 …DBG_ASSERT( (nRowSpan >= 1) && ((nRow + nRowSpan - 1) < xTable->getRowCount()), "nRowSpan murks!… in MergeCells()
7633 … xTable->getCellRangeByPosition( nCol, nRow,nCol + nColSpan - 1, nRow + nRowSpan - 1 ) ), UNO_QUER… in MergeCells()
/trunk/main/sw/source/filter/html/
H A Dhtmltab.cxx746 nRowSpan(1), in HTMLTableCell()
775 nRowSpan = nRSpan; in Set()
808 nRowSpan = 1; in SetProtected()
1222 sal_uInt16 nRowSpan=1; in FixRowSpan() local
1231 nRowSpan++; nRow--; in FixRowSpan()
1356 if( nRow+nRowSpan == nRows ) in GetBottomCellSpace()
1425 if( nRowSpan > 1 || (this != pTopTable && nRowSpan==nRows) ) in FixFrameFmt()
1427 if( nRowSpan > 1 ) in FixFrameFmt()
2146 if( !nRowSpan || (sal_uInt32)nCurRow + nRowSpan > USHRT_MAX ) in InsertCell()
2147 nRowSpan = 1; in InsertCell()
[all …]
H A Dhtmltabw.cxx277 sal_uInt16 nRowSpan = pCell->GetRowSpan(); in OutTableCell() local
280 if ( !nRowSpan ) in OutTableCell()
328 if( nRowSpan>1 ) in OutTableCell()
330 += ByteString::CreateFromInt32( nRowSpan ); in OutTableCell()
363 ? GetAbsHeight( pCell->GetHeight(), nRow, nRowSpan ) in OutTableCell()
/trunk/main/sw/source/filter/ww8/
H A Dww8par2.cxx2857 const sal_uInt16 nRowSpan = pActMGroup->Count(); in FinishSwTable() local
2858 for (sal_uInt16 n = 0; n < nRowSpan; ++n) in FinishSwTable()
2862 nRowSpan : in FinishSwTable()
2863 ((-1) * (nRowSpan - n)); in FinishSwTable()
H A Dwrtww8.cxx2029 static sal_uInt16 lcl_TCFlags(SwDoc &rDoc, const SwTableBox * pBox, const sal_Int32 nRowSpan) in lcl_TCFlags() argument
2033 if (nRowSpan > 1) in lcl_TCFlags()
2035 else if (nRowSpan < 0) in lcl_TCFlags()
H A DWW8TableInfo.cxx1145 long nRowSpan = 1; in addShadowCells() local
1167 nRowSpan = 1; in addShadowCells()
1172 nRowSpan++; in addShadowCells()
1176 pRowSpans->push_back(nRowSpan); in addShadowCells()
1178 pRowSpans->push_back(-nRowSpan); in addShadowCells()
/trunk/main/sw/source/core/unocore/
H A Dunochart.cxx2229 sal_Int32 nRowSpan = aDesc.nBottom - aDesc.nTop + 1; in generateLabel() local
2230 DBG_ASSERT( nColSpan == 1 || nRowSpan == 1, in generateLabel()
2242 bUseCol = nColSpan < nRowSpan; in generateLabel()
2243 bReturnEmptyTxt = nColSpan == nRowSpan; in generateLabel()
2247 bUseCol = nColSpan > nRowSpan; in generateLabel()
2248 bReturnEmptyTxt = nColSpan == nRowSpan; in generateLabel()
2256 sal_Int32 nSeqLen = bUseCol ? nColSpan : nRowSpan; in generateLabel()
H A Dunotbl.cxx1053 sal_Int32 nRowSpan = 0; in setPropertyValue() local
1054 if( aValue >>= nRowSpan ) in setPropertyValue()
1055 pBox->setRowSpan( nRowSpan ); in setPropertyValue()
/trunk/main/sw/source/core/doc/
H A Dhtmltbl.cxx119 nRowSpan( nRSpan ), nColSpan( nCSpan ), in SwHTMLTableLayoutCell()
126 if( nRowSpan==1 && nColSpan==1 ) in ~SwHTMLTableLayoutCell()
/trunk/main/sw/source/core/table/
H A Dswnewtable.cxx275 long nAbsSpan = nRowSpan > 0 ? nRowSpan : -nRowSpan; in lcl_ChangeRowSpan()
385 long nRowSpan = 1; in CollectBoxSelection() local
448 if( nRowSpan > 1 && nRow + nRowSpan - 1 > nBottom ) in CollectBoxSelection()
450 if( nRowSpan < -1 && nRow - nRowSpan - 1 > nBottom ) in CollectBoxSelection()
731 if( nRowSpan > 0 ) in NewInsertCol()
922 nRowSpan = -nRowSpan; // negative row spans in PrepareMerge()
1184 nRowSpan = - nRowSpan; in InsertSpannedRow()
1518 if( nRowSpan == 1 || nRowSpan == -1 ) in InsertRow()
1521 nRowSpan = - nRowSpan; in InsertRow()
1956 if( nRowSpan != 1 ) in ExpandSelection()
[all …]
H A Dswtable.cxx311 long nRowSpan = pBox->getRowSpan(); in _InsTblBox() local
312 if( nRowSpan != 1 ) in _InsTblBox()
318 pBox->setRowSpan( nRowSpan ); in _InsTblBox()
1230 const long nRowSpan = pBox->getRowSpan(); in lcl_CalcNewWidths() local
1231 const bool bCurrRowSpan = bTop ? nRowSpan < 0 : in lcl_CalcNewWidths()
1232 ( nRowSpan > 1 || nRowSpan < -1 ); in lcl_CalcNewWidths()
/trunk/main/xmloff/source/table/
H A DXMLTableExport.cxx425 sal_Int32 nRowSpan = 0; in ExportCell() local
443 nRowSpan = xMerge->getRowSpan(); in ExportCell()
446 …DBG_ASSERT( (nRowSpan >= 1) && (nColSpan >= 1), "xmloff::XMLTableExport::ExportCell(), illegal row… in ExportCell()
461 if( nRowSpan > 1 ) in ExportCell()
462 …mrExport.AddAttribute(XML_NAMESPACE_TABLE, XML_NUMBER_ROWS_SPANNED, OUString::valueOf( nRowSpan ) … in ExportCell()
H A DXMLTableImport.cxx96 MergeInfo( sal_Int32 nStartColumn, sal_Int32 nStartRow, sal_Int32 nColumnSpan, sal_Int32 nRowSpan ) in MergeInfo()
97 …StartRow ), mnEndColumn( nStartColumn + nColumnSpan - 1 ), mnEndRow( nStartRow + nRowSpan - 1 ) {}; in MergeInfo()
527 const sal_Int32 nRowSpan = pCellContext->getRowSpan(); in ImportCell() local
528 if( (nColumnSpan > 1) || (nRowSpan > 1) ) in ImportCell()
529 …shared_ptr< MergeInfo >( new MergeInfo( mnCurrentColumn, mnCurrentRow, nColumnSpan, nRowSpan ) ) ); in ImportCell()
/trunk/main/sw/source/filter/xml/
H A Dxmltble.cxx795 sal_uInt16 nRowSpan, in ExportTableBox() argument
812 if( nRowSpan != 1 ) in ExportTableBox()
815 sTmp.append( (sal_Int32)nRowSpan ); in ExportTableBox()
965 const long nRowSpan = pBox->getRowSpan(); in ExportTableLine() local
966 if( nRowSpan < 1 ) in ExportTableLine()
1007 if ( nRowSpan >= 1 ) in ExportTableLine()
1008 ExportTableBox( *pBox, nColSpan, static_cast< sal_uInt16 >(nRowSpan), rTblInfo ); in ExportTableLine()
H A Dxmltbli.cxx178 sal_uInt32 nRowSpan; member in SwXMLTableCell_Impl
190 nRowSpan( nRSpan ), in SwXMLTableCell_Impl()
243 nRowSpan = nRSpan; in Set()
407 sal_uInt32 nRowSpan; member in SwXMLTableCellContext_Impl
450 nRowSpan( 1UL ), in SwXMLTableCellContext_Impl()
485 if( nRowSpan < 1UL ) in SwXMLTableCellContext_Impl()
486 nRowSpan = 1UL; in SwXMLTableCellContext_Impl()
1599 if( 0UL == nRowSpan ) in InsertCell()
1600 nRowSpan = 1UL; in InsertCell()
1679 for( j=nRowSpan; j>0UL; j-- ) in InsertCell()
[all …]
H A Dxmltbli.hxx175 sal_uInt32 nRowSpan=1U, sal_uInt32 nColSpan=1U,
H A Dxmlexp.hxx92 void ExportTableBox( const SwTableBox& rBox, sal_uInt16 nColSpan, sal_uInt16 nRowSpan,
/trunk/main/sw/source/filter/writer/
H A Dwrtswtbl.cxx77 sal_uInt16 nRowSpan, sal_uInt16 nColSpan, in AddCell() argument
247 sal_uInt16 nRowSpan, sal_uInt16 nColSpan, in MergeBoxBorders() argument
383 sal_uInt16 nRowSpan ) const in GetAbsHeight()
399 if( nRow+nRowSpan==aRows.Count() ) in GetAbsHeight()
401 if( !pRow || nRowSpan > 1 ) in GetAbsHeight()
402 pRow = aRows[nRow+nRowSpan-1]; in GetAbsHeight()
683 sal_uInt16 nRowSpan = nRow - nOldRow + 1; in FillTableRowsCols() local
690 nRowSpan = 0; in FillTableRowsCols()
694 nRowSpan, nColSpan, nHeight, in FillTableRowsCols()
702 nRowSpan, nColSpan, nTopBorder, nBottomBorder); in FillTableRowsCols()
[all …]
/trunk/main/sw/source/filter/inc/
H A Dwrtswtbl.hxx65 sal_uInt16 nRowSpan; // ueberspannte Zeilen member in SwWriteTableCell
76 nRow( nR ), nCol( nC ), nRowSpan( nRSpan ), nColSpan( nCSpan ), in SwWriteTableCell()
85 sal_uInt16 GetRowSpan() const { return nRowSpan; } in GetRowSpan()
137 sal_uInt16 nRowSpan, sal_uInt16 nColSpan,
288 sal_uInt16 nRowSpan, sal_uInt16 nColSpan,
303 long GetAbsHeight( long nRawWidth, sal_uInt16 nRow, sal_uInt16 nRowSpan ) const;

Completed in 340 milliseconds

12