Home
last modified time | relevance | path

Searched refs:SCCOL (Results 1 – 25 of 333) sorted by relevance

12345678910>>...14

/trunk/main/sc/inc/
H A Dtable.hxx151 SCCOL nTableAreaX;
295 sal_Bool IsBlockEditable( SCCOL nCol1, SCROW nRow1, SCCOL nCol2,
397 void MixData( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
421 sal_Bool GetPrintAreaVer( SCCOL nStartCol, SCCOL nEndCol,
501 void Fill( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
740 bool ColHidden(SCCOL nCol, SCCOL& rLastCol) const;
741 bool ColHidden(SCCOL nCol, SCCOL* pFirstCol = NULL, SCCOL* pLastCol = NULL) const;
755 bool ColFiltered(SCCOL nCol, SCCOL* pFirstCol = NULL, SCCOL* pLastCol = NULL) const;
785 void DoColResize( SCCOL nCol1, SCCOL nCol2, SCSIZE nAdd );
845 void SwapCol(SCCOL nCol1, SCCOL nCol2);
[all …]
H A Ddocument.hxx1065 void DeleteObjectsInArea( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
1069 void DeleteArea(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
1071 void DeleteAreaTab(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
1079 void CopyTabToClip(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
1081 void CopyBlockFromClip( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
1181 void Fill( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
1395 …SC_DLLPUBLIC bool ColHidden(SCCOL nCol, SCTAB nTab, SCCOL* pFirstCol = NULL, SCCOL* pLas…
1404 …bool ColFiltered(SCCOL nCol, SCTAB nTab, SCCOL* pFirstCol = NULL, SCCOL* pL…
1426 SCCOL GetNextDifferentChangedCol( SCTAB nTab, SCCOL nStart) const;
1553 void DoColResize( SCTAB nTab, SCCOL nCol1, SCCOL nCol2, SCSIZE nAdd );
[all …]
H A Ddociter.hxx53 SCCOL nCol;
86 SCCOL nStartCol;
89 SCCOL nEndCol;
92 SCCOL nCol;
227 SCCOL nCol;
273 SCCOL nCol;
383 SCCOL nCol;
388 SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2);
408 SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2);
426 SCCOL nCol;
[all …]
H A Ddetfunc.hxx79 Rectangle GetDrawRect( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2 ) const;
88 void DeleteBox( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2 );
95 sal_Bool InsertArrow( SCCOL nCol, SCROW nRow,
96 SCCOL nRefStartCol, SCROW nRefStartRow,
97 SCCOL nRefEndCol, SCROW nRefEndRow,
121 sal_uInt16 InsertSuccLevel( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
123 sal_uInt16 FindSuccLevel( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
133 sal_Bool ShowSucc( SCCOL nCol, SCROW nRow );
134 sal_Bool ShowPred( SCCOL nCol, SCROW nRow );
135 sal_Bool ShowError( SCCOL nCol, SCROW nRow );
[all …]
H A Daddress.hxx53 typedef sal_Int16 SCCOL; typedef
73 const SCCOL SCCOL_MAX = ::std::numeric_limits<SCCOL>::max();
103 const SCCOL SCCOL_REPEAT_NONE = SCCOL_MAX;
152 inline bool ValidCol( SCCOL nCol ) in ValidCol()
172 inline bool ValidColRow( SCCOL nCol, SCROW nRow ) in ValidColRow()
182 inline SCCOL SanitizeCol( SCCOL nCol ) in SanitizeCol()
248 SCCOL nCol;
259 SCCOL nCol;
300 inline SCCOL Col() const { return nCol; } in Col()
343 SCCOL nTmp = r.Col(); in PutInOrder()
[all …]
H A Ddbcolect.hxx48 SCCOL nStartCol;
50 SCCOL nEndCol;
64 SCCOL nSortDestCol;
77 SCCOL nQueryDestCol;
100 SCCOL nSubField[MAXSUBTOTAL];
101 SCCOL nSubTotals[MAXSUBTOTAL];
122 SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
136 void GetArea(SCTAB& rTab, SCCOL& rCol1, SCROW& rRow1, SCCOL& rCol2, SCROW& rRow2) const;
138 void SetArea(SCTAB nTab, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2);
143 void MoveTo(SCTAB nTab, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2);
[all …]
/trunk/main/sc/source/core/data/
H A Dtable2.cxx120 sal_Bool ScTable::TestInsertRow( SCCOL nStartCol, SCCOL nEndCol, SCSIZE nSize ) in TestInsertRow()
242 for (SCCOL i=MAXCOL; (i+static_cast<SCCOL>(nSize)>MAXCOL) && bTest; i--) in TestInsertCol()
344 SCCOL nRmSize = nStartCol + static_cast<SCCOL>(nSize); in DeleteCol()
439 void ScTable::CopyToClip(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, in CopyToClip()
445 SCCOL i; in CopyToClip()
492 SCCOL i; in CopyFromClip()
538 void ScTable::MixData( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, in MixData()
1545 SCCOL nAttrCol; in FindMaxRotCol()
1889 SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow ) in ApplyBlockFrame()
3060 SCCOL nCol; in DoAutoOutline()
[all …]
H A Dtable1.cxx439 SCCOL i; in GetLastAttrCell()
480 SCCOL i; in GetPrintArea()
551 SCCOL i; in GetPrintAreaHor()
588 SCCOL i; in GetPrintAreaVer()
619 SCCOL i; in GetDataStart()
670 SCCOL i; in GetDataArea()
849 SCCOL nCol; in GetEmptyLinesInBlock()
1056 SCCOL i; in GetNextPos()
1208 SCCOL i; in UpdateReference()
1209 SCCOL iMax; in UpdateReference()
[all …]
H A Ddocument.cxx679 SCCOL nCol1, nCol2; in ShrinkToDataArea()
3634 bool ScDocument::ColHidden(SCCOL nCol, SCTAB nTab, SCCOL& rLastCol) in ColHidden()
3645 bool ScDocument::ColHidden(SCCOL nCol, SCTAB nTab, SCCOL* pFirstCol, SCCOL* pLastCol) in ColHidden()
3715 bool ScDocument::ColFiltered(SCCOL nCol, SCTAB nTab, SCCOL* pFirstCol, SCCOL* pLastCol) in ColFiltered()
3797 SCCOL ScDocument::GetNextDifferentChangedCol( SCTAB nTab, SCCOL nStart) const in GetNextDifferentChangedCol()
3857 SCCOL nColumn; in GetColDefault()
4395 SCCOL nX1, SCCOL nX2 ) const in FindMaxRotCol()
4596 SCCOL nSizeX; in GetMatrixFormulaRange()
4634 SCCOL nCol; in ExtendOverlapped()
4829 SCCOL nDBStartCol; in RefreshAutoFilter()
[all …]
H A Dtable3.cxx140 SCCOL nCol = static_cast<SCCOL>(aSortParam.nField[nSort]); in CreateSortInfoArray()
156 for ( SCCOL nCol = static_cast<SCCOL>(nInd1); in CreateSortInfoArray()
225 SwapCol( static_cast<SCCOL>(nDest), static_cast<SCCOL>(nOrg) ); in SortReorder()
413 void ScTable::SwapCol(SCCOL nCol1, SCCOL nCol2) in SwapCol()
476 SCCOL nCol = static_cast<SCCOL>(aSortParam.nField[nSort]); in Compare()
546 SCCOL nLastCol; in Sort()
579 SCCOL nCol; in TestRemoveSubTotals()
612 SCCOL nCol; in RemoveSubTotals()
1644 SCCOL* pFields = new SCCOL[nCol2-nCol1+1]; in CreateExcelQuery()
1981 SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow, in UpdateSelectionFunction()
[all …]
H A Ddpoutputgeometry.cxx97SCCOL nColStart = static_cast<SCCOL>(maOutRange.aStart.Col() + mnRowFields + (bDataLayout ? 1 : 0)… in getColumnFieldPositions()
98 SCCOL nColEnd = nColStart + static_cast<SCCOL>(mnColumnFields-1); in getColumnFieldPositions()
100 for (SCCOL nCol = nColStart; nCol <= nColEnd; ++nCol) in getColumnFieldPositions()
116 SCCOL nColStart = maOutRange.aStart.Col(); in getRowFieldPositions()
117 SCCOL nColEnd = nColStart + static_cast<SCCOL>(mnRowFields-1); in getRowFieldPositions()
134 SCCOL nCol = maOutRange.aStart.Col(); in getPageFieldPositions()
176 SCCOL nCol = maOutRange.aStart.Col(); in getFieldButtonType()
190SCCOL nColStart = static_cast<SCCOL>(maOutRange.aStart.Col() + mnRowFields + (bDataLayout ? 1 : 0)… in getFieldButtonType()
191 SCCOL nColEnd = nColStart + static_cast<SCCOL>(mnColumnFields-1); in getFieldButtonType()
203 SCCOL nColStart = maOutRange.aStart.Col(); in getFieldButtonType()
[all …]
H A Dtable5.cxx91 SCCOL nX; in UpdatePageBreaks()
92 SCCOL nStartCol = 0; in UpdatePageBreaks()
94 SCCOL nEndCol = MAXCOL; in UpdatePageBreaks()
559 bool ScTable::ColHidden(SCCOL nCol, SCCOL& rLastCol) const in ColHidden()
573 bool ScTable::ColHidden(SCCOL nCol, SCCOL* pFirstCol, SCCOL* pLastCol) const in ColHidden()
598 void ScTable::SetColHidden(SCCOL nStartCol, SCCOL nEndCol, bool bHidden) in SetColHidden()
606 void ScTable::CopyColHidden(ScTable& rTable, SCCOL nStartCol, SCCOL nEndCol) in CopyColHidden()
611 SCCOL nLastCol; in CopyColHidden()
748 SCCOL nCol = static_cast<SCCOL>(nPos); in LastHiddenColRow()
786 bool ScTable::ColFiltered(SCCOL nCol, SCCOL* pFirstCol, SCCOL* pLastCol) const in ColFiltered()
[all …]
H A Ddocumen4.cxx130 SCCOL j; in InsertMatrixFormula()
211 SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, in InsertTableOp()
217 SCCOL j; in InsertTableOp()
400 void ScDocument::DoColResize( SCTAB nTab, SCCOL nCol1, SCCOL nCol2, SCSIZE nAdd ) in DoColResize()
768 SCCOL nOtherCol; in RowDifferences()
1005 SCCOL nThisEndCol = 0; in CompareDocument()
1013 SCCOL nThisCol; in CompareDocument()
1088 SCCOL nLastOtherCol = static_cast<SCCOL>(nOtherEndCol + 1); in CompareDocument()
1093 SCCOL nOtherCol = static_cast<SCCOL>(pOtherCols[nThisCol]); in CompareDocument()
1106 SCCOL nFirstNew = static_cast<SCCOL>(nThisCol); in CompareDocument()
[all …]
H A Dtable4.cxx187 void ScTable::FillAnalyse( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, in FillAnalyse()
201 SCCOL nAddX; in FillAnalyse()
217 SCCOL nCol = nCol1; in FillAnalyse()
502 void ScTable::FillAuto( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, in FillAuto()
1026 SCCOL nSrcX = nCol1; in GetAutoFillPreview()
1031 nSrcX = sal::static_int_cast<SCCOL>( nSrcX + static_cast<SCCOL>(nPos) ); in GetAutoFillPreview()
1280 void ScTable::FillSeries( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, in FillSeries()
1350 DeleteArea(static_cast<SCCOL>(nIMin), nRow1, static_cast<SCCOL>(nIMax), nRow2, nDel); in FillSeries()
1375 …for (SCCOL nAtCol = static_cast<SCCOL>(nIMin); nAtCol <= sal::static_int_cast<SCCOL>(nIMax); nAtCo… in FillSeries()
1600 void ScTable::Fill( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, in Fill()
[all …]
H A Ddocumen3.cxx1155 SCCOL nCol; in SearchAndReplace()
1307 SCCOL nCol; in HasAutoFilter()
1367 SCCOL nStartCol; in GetFilterEntries()
1369 SCCOL nEndCol; in GetFilterEntries()
1569 SCCOL i; in GetEmbeddedRect()
1669 SCCOL nX1 = 0; in GetRange()
1685 SCCOL nX2 = nX1; in GetRange()
1728 SCCOL nCol = 0; in lcl_SnapHor()
1795 SCCOL nCol = 0; in SnapVisArea()
1924 SCCOL i; in GetMMRect()
[all …]
/trunk/main/sc/source/ui/inc/
H A Dviewdata.hxx131 SCCOL nCurX;
133 SCCOL nOldCurX;
135 SCCOL nPosX[2];
188 SCCOL nRefStartX;
191 SCCOL nRefEndX;
196 SCCOL nFillEndX;
200 SCCOL nEditStartCol;
283 SCCOL GetOldCurX() const;
340 void SetFillMode( SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow );
341 void SetDragMode( SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow,
[all …]
H A Dgridwin.hxx120 SCCOL mnCol1;
121 SCCOL mnCol2;
127 bool isInside(SCCOL nCol, SCROW nRow) const;
176 SCCOL nDragStartX;
178 SCCOL nDragEndX;
208 sal_Bool DoPageFieldSelection( SCCOL nCol, SCROW nRow );
233 void ExecFilter( sal_uLong nSel, SCCOL nCol, SCROW nRow,
277 …void DrawPagePreview( SCCOL nX1, SCROW nY1, SCCOL nX2, SCROW nY2, OutputDevice* pConten…
354 void DrawButtons( SCCOL nX1, SCROW nY1, SCCOL nX2, SCROW nY2,
358 void Draw( SCCOL nX1, SCROW nY1, SCCOL nX2, SCROW nY2,
[all …]
H A Dviewutil.hxx86 SCCOL nOldStartX;
88 SCCOL nOldEndX;
90 SCCOL nNewStartX;
92 SCCOL nNewEndX;
94 SCCOL nContX1;
96 SCCOL nContX2;
99 ScUpdateRect( SCCOL nX1, SCROW nY1, SCCOL nX2, SCROW nY2 );
100 void SetNew( SCCOL nX1, SCROW nY1, SCCOL nX2, SCROW nY2 );
101 sal_Bool GetDiff( SCCOL& rX1, SCROW& rY1, SCCOL& rX2, SCROW& rY2 );
103 sal_Bool GetXorDiff( SCCOL& rX1, SCROW& rY1, SCCOL& rX2, SCROW& rY2, sal_Bool& rCont );
[all …]
H A Doutput.hxx95 SCCOL nX1; // Start-/Endkoordinaten
97 SCCOL nX2;
99 SCCOL nVisX1; // Start-/Endkoordinaten
101 SCCOL nVisX2;
118 SCCOL nEditCol;
160 sal_Bool IsAvailable( SCCOL nX, SCROW nY );
188 SCCOL nNewX1, SCROW nNewY1, SCCOL nNewX2, SCROW nNewY2,
208 void SetEditCell( SCCOL nCol, SCROW nRow );
255 void DrawRefMark( SCCOL nRefStartX, SCROW nRefStartY,
256 SCCOL nRefEndX, SCROW nRefEndY,
[all …]
/trunk/main/sc/source/filter/lotus/
H A Dop.cxx102 if (ValidColRow( static_cast<SCCOL>(nCol), nRow)) in OP_Integer()
122 if (ValidColRow( static_cast<SCCOL>(nCol), nRow)) in OP_Number()
147 if (ValidColRow( static_cast<SCCOL>(nCol), nRow)) in OP_Label()
179 if (ValidColRow( static_cast<SCCOL>(nCol), nRow)) in OP_Formula()
201 if (ValidCol( static_cast<SCCOL>(nCol))) in OP_ColumnWidth()
208 pDoc->SetColHidden(static_cast<SCCOL>(nCol), static_cast<SCCOL>(nCol), 0, true); in OP_ColumnWidth()
212 pDoc->SetColWidth( static_cast<SCCOL> (nCol), nTab, nBreite ); in OP_ColumnWidth()
228 …if (ValidColRow( static_cast<SCCOL>(nColSt), nRowSt) && ValidColRow( static_cast<SCCOL>(nColEnd), … in OP_NamedRange()
268 …if (ValidColRow( static_cast<SCCOL>(nColSt), nRowSt) && ValidColRow( static_cast<SCCOL>(nColEnd), … in OP_SymphNamedRange()
316 SCCOL nCount; in OP_HiddenCols()
[all …]
/trunk/main/sc/source/core/inc/
H A Ddoubleref.hxx49 virtual SCCOL getColSize() const = 0;
63 virtual SCCOL getFirstFieldColumn() const = 0;
74 virtual SCCOL findFieldColumn(SCCOL nIndex) const = 0;
106 virtual SCCOL getColSize() const;
118 virtual ::rtl::OUString getString(SCCOL nCol, SCROW nRow) const;
120 virtual SCCOL getFirstFieldColumn() const;
130 virtual SCCOL findFieldColumn(SCCOL nIndex) const;
147 virtual SCCOL getColSize() const;
161 virtual SCCOL getFirstFieldColumn() const;
172 virtual SCCOL findFieldColumn(SCCOL nIndex) const;
[all …]
/trunk/main/sc/source/filter/inc/
H A Dlotrange.hxx42 SCCOL nColStart;
44 SCCOL nColEnd;
51 LotusRange( SCCOL nCol, SCROW nRow );
52 LotusRange( SCCOL nColS, SCROW nRowS, SCCOL nColE, SCROW nRowE );
113 static SCCOL nEingCol;
118 inline sal_uInt16 GetIndex( SCCOL nCol, SCROW nRow );
119 inline sal_uInt16 GetIndex( SCCOL nColS, SCROW nRowS, SCCOL nColE, SCROW nRowE );
121 inline void Append( SCCOL nCol, SCROW nRow, const String& );
122 inline void Append( SCCOL nColS, SCROW nRowS, SCCOL nColE, SCROW nRowE, const String& );
135 inline LR_ID LotusRangeList::GetIndex( SCCOL nColS, SCROW nRowS, SCCOL nColE, SCROW nRowE ) in GetIndex()
[all …]
/trunk/main/sc/source/core/tool/
H A Ddoubleref.cxx158 vector<SCCOL> aFields(nCols); in lcl_createExcelQuery()
159 SCCOL nCol = 0; in lcl_createExcelQuery()
316 SCCOL nCols = getColSize(); in getVisibleDataCellCount()
340 SCCOL ScDBInternalRange::findFieldColumn(SCCOL nIndex) const in findFieldColumn()
346 SCCOL nDBCol1 = s.Col(); in findFieldColumn()
347 SCCOL nDBCol2 = e.Col(); in findFieldColumn()
362 SCCOL nDBCol1 = s.Col(); in findFieldColumn()
365 SCCOL nDBCol2 = e.Col(); in findFieldColumn()
367 SCCOL nField = nDBCol1; in findFieldColumn()
442 SCCOL nCols = getColSize(); in getVisibleDataCellCount()
[all …]
/trunk/main/sc/source/ui/docshell/
H A Dolinefun.cxx68 SCCOL nStartCol = 0; in lcl_PaintWidthHeight()
76 nEndCol = static_cast<SCCOL>(nEnd); in lcl_PaintWidthHeight()
100 SCCOL nEndCol = rRange.aEnd.Col(); in MakeOutline()
165 SCCOL nEndCol = rRange.aEnd.Col(); in RemoveOutline()
242 SCCOL nStartCol = static_cast<SCCOL>(nCol1); in RemoveAllOutlines()
244 SCCOL nEndCol = static_cast<SCCOL>(nCol2); in RemoveAllOutlines()
288 SCCOL nEndCol = rRange.aEnd.Col(); in AutoOutline()
310 SCCOL nOutStartCol = static_cast<SCCOL>(nCol1);; in AutoOutline()
312 SCCOL nOutEndCol = static_cast<SCCOL>(nCol2);; in AutoOutline()
453 SCCOL nEndCol = rRange.aEnd.Col(); in ShowMarkedOutlines()
[all …]
/trunk/main/sc/source/ui/view/
H A Dtabview4.cxx71 SCCOL nEndX = aViewData.GetRefEndX(); in ShowRefTip()
79 SCCOL nCols = nEndX+1-nStartX; in ShowRefTip()
188 SCCOL nEndX = aViewData.GetRefEndX(); in DoneRefMode()
256 SCCOL nPaintStartX; in UpdateRef()
258 SCCOL nPaintEndX; in UpdateRef()
316 SCCOL nStartX = nCurX; in InitRefMode()
318 SCCOL nEndX = nCurX; in InitRefMode()
411 SCCOL nUsedX; in UpdateScrollBars()
415 SCCOL nVisXL = 0; in UpdateScrollBars()
416 SCCOL nVisXR = 0; in UpdateScrollBars()
[all …]

Completed in 219 milliseconds

12345678910>>...14