Lines Matching refs:SCCOL

37 const SCCOL SC_TABSTART_NONE = SCCOL_MAX;
128 SCCOL nFixPosX; // Zellposition des Splitters beim Fixieren
131 SCCOL nCurX;
133 SCCOL nOldCurX;
135 SCCOL nPosX[2];
188 SCCOL nRefStartX;
191 SCCOL nRefEndX;
194 SCCOL nFillStartX; // Fill-Cursor
196 SCCOL nFillEndX;
198 SCCOL nEditCol; // Position dazu
200 SCCOL nEditStartCol;
201 SCCOL nEditEndCol; // Ende der Edit-View
203 SCCOL nTabStartCol; // fuer Enter nach Tab
278 SCCOL GetPosX( ScHSplitPos eWhich ) const { return pThisTab->nPosX[eWhich]; } in GetPosX()
280 SCCOL GetCurX() const { return pThisTab->nCurX; } in GetCurX()
283 SCCOL GetOldCurX() const;
289 SCCOL GetFixPosX() const { return pThisTab->nFixPosX; } in GetFixPosX()
293 void SetPosX( ScHSplitPos eWhich, SCCOL nNewPosX );
295 void SetCurX( SCCOL nNewCurX ) { pThisTab->nCurX = nNewCurX; } in SetCurX()
297 void SetOldCursor( SCCOL nNewX, SCROW nNewY );
303 void SetFixPosX( SCCOL nPos ) { pThisTab->nFixPosX = nPos; } in SetFixPosX()
328 ScMarkType GetSimpleArea( SCCOL& rStartCol, SCROW& rStartRow, SCTAB& rStartTab,
329 SCCOL& rEndCol, SCROW& rEndRow, SCTAB& rEndTab ) const;
340 void SetFillMode( SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow );
341 void SetDragMode( SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow,
343 void GetFillData( SCCOL& rStartCol, SCROW& rStartRow,
344 SCCOL& rEndCol, SCROW& rEndRow );
351 sal_Bool GetMergeSizePixel( SCCOL nX, SCROW nY, long& rSizeXPix, long& rSizeYPix );
361 SCCOL GetRefStartX() const { return nRefStartX; } in GetRefStartX()
364 SCCOL GetRefEndX() const { return nRefEndX; } in GetRefEndX()
371 void SetRefStart( SCCOL nNewX, SCROW nNewY, SCTAB nNewZ ) in SetRefStart()
373 void SetRefEnd( SCCOL nNewX, SCROW nNewY, SCTAB nNewZ ) in SetRefEnd()
383 inline void GetMoveCursor( SCCOL& rCurX, SCROW& rCurY );
407 Window* pWin, SCCOL nNewX, SCROW nNewY );
408 void GetEditView( ScSplitPos eWhich, EditView*& rViewPtr, SCCOL& rCol, SCROW& rRow );
418 SCCOL GetEditViewCol() const { return nEditCol; } in GetEditViewCol()
420 SCCOL GetEditStartCol() const { return nEditStartCol; } in GetEditStartCol()
422 SCCOL GetEditEndCol() const { return nEditEndCol; } in GetEditEndCol()
425 Rectangle GetEditArea( ScSplitPos eWhich, SCCOL nPosX, SCROW nPosY, Window* pWin,
431 Point GetScrPos( SCCOL nWhereX, SCROW nWhereY, ScSplitPos eWhich,
433 Point GetScrPos( SCCOL nWhereX, SCROW nWhereY, ScHSplitPos eWhich ) const;
434 Point GetScrPos( SCCOL nWhereX, SCROW nWhereY, ScVSplitPos eWhich ) const;
436SCCOL CellsAtX( SCsCOL nPosX, SCsCOL nDir, ScHSplitPos eWhichX, sal_uInt16 nScrSizeY = SC_SIZE_N…
439 SCCOL VisibleCellsX( ScHSplitPos eWhichX ) const; // angezeigte komplette Zellen
441 SCCOL PrevCellsX( ScHSplitPos eWhichX ) const; // Zellen auf der vorgehenden Seite
448 void SetScreen( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2 );
470 SCCOL GetTabStartCol() const { return nTabStartCol; } in GetTabStartCol()
471 void SetTabStartCol(SCCOL nNew) { nTabStartCol = nNew; } in SetTabStartCol()
512 inline void ScViewData::GetMoveCursor( SCCOL& rCurX, SCROW& rCurY ) in GetMoveCursor()