Home
last modified time | relevance | path

Searched refs:nColIndex (Results 1 – 7 of 7) sorted by relevance

/trunk/main/sc/source/ui/dbgui/
H A Dcsvgrid.cxx396 bool ScCsvGrid::IsValidColumn( sal_uInt32 nColIndex ) const in IsValidColumn()
398 return nColIndex < GetColumnCount(); in IsValidColumn()
401 bool ScCsvGrid::IsVisibleColumn( sal_uInt32 nColIndex ) const in IsVisibleColumn()
403 return IsValidColumn( nColIndex ) && in IsVisibleColumn()
404 (GetColumnPos( nColIndex ) < GetLastVisPos()) && in IsVisibleColumn()
405 (GetFirstVisPos() < GetColumnPos( nColIndex + 1 )); in IsVisibleColumn()
408 sal_Int32 ScCsvGrid::GetColumnX( sal_uInt32 nColIndex ) const in GetColumnX()
410 return GetX( GetColumnPos( nColIndex ) ); in GetColumnX()
425 sal_Int32 ScCsvGrid::GetColumnWidth( sal_uInt32 nColIndex ) const in GetColumnWidth()
427 …return IsValidColumn( nColIndex ) ? (GetColumnPos( nColIndex + 1 ) - GetColumnPos( nColIndex )) : … in GetColumnWidth()
[all …]
/trunk/main/sc/source/ui/inc/
H A Dcsvgrid.hxx188 bool IsValidColumn( sal_uInt32 nColIndex ) const;
190 bool IsVisibleColumn( sal_uInt32 nColIndex ) const;
193 sal_Int32 GetColumnX( sal_uInt32 nColIndex ) const;
198 …inline sal_Int32 GetColumnPos( sal_uInt32 nColIndex ) const { return maSplits[ nColInde… in GetColumnPos()
202 sal_Int32 GetColumnWidth( sal_uInt32 nColIndex ) const;
215 const String& GetColumnTypeName( sal_uInt32 nColIndex ) const;
224 SC_DLLPRIVATE sal_Int32 GetColumnType( sal_uInt32 nColIndex ) const;
226 …SC_DLLPRIVATE void SetColumnType( sal_uInt32 nColIndex, sal_Int32 nColType …
236 bool IsSelected( sal_uInt32 nColIndex ) const;
245 void Select( sal_uInt32 nColIndex, bool bSelect = true );
[all …]
/trunk/main/chart2/source/controller/dialogs/
H A DDataBrowser.cxx558 sal_Int32 nColIndex(0); in MaySwapColumns() local
559 if( lcl_SeriesHeaderHasFocus( m_aSeriesHeaders, &nColIndex )) in MaySwapColumns()
560 return (static_cast< sal_uInt32 >( nColIndex ) < (m_aSeriesHeaders.size() - 1)); in MaySwapColumns()
682 sal_Int32 nColIndex = static_cast< sal_Int32 >( nColumnId ) - 1; in GetCellText() local
684 if( m_apDataBrowserModel->getCellType( nColIndex, nRow ) == DataBrowserModel::NUMBER ) in GetCellText()
686 double fData( m_apDataBrowserModel->getCellNumber( nColIndex, nRow )); in GetCellText()
696 … else if( m_apDataBrowserModel->getCellType( nColIndex, nRow ) == DataBrowserModel::TEXTORDATE ) in GetCellText()
698 uno::Any aAny = m_apDataBrowserModel->getCellAny( nColIndex, nRow ); in GetCellText()
715 … OSL_ASSERT( m_apDataBrowserModel->getCellType( nColIndex, nRow ) == DataBrowserModel::TEXT ); in GetCellText()
716 aResult = m_apDataBrowserModel->getCellText( nColIndex, nRow ); in GetCellText()
/trunk/main/sc/source/ui/Accessibility/
H A DAccessiblePreviewTable.cxx515 SCCOL nColIndex = 0; in getAccessibleAtPoint() local
516 while ( nColIndex < nCols && aMovedPoint.X > pColInfo[nColIndex].nPixelEnd ) in getAccessibleAtPoint()
517 ++nColIndex; in getAccessibleAtPoint()
521 if ( nColIndex < nCols && nRowIndex < nRows ) in getAccessibleAtPoint()
525 xRet = getAccessibleCellAt( nRowIndex, nColIndex ); in getAccessibleAtPoint()
/trunk/main/wizards/com/sun/star/wizards/db/
H A DRecordParser.java249 int nColIndex = JavaTools.FieldInList(AllQueryFieldNames, sFieldName) + 1; in getFields() local
250 FieldColumns[i].ColIndex = nColIndex; in getFields()
251 if (nColIndex == -1) in getFields()
/trunk/main/reportdesign/source/filter/xml/
H A DxmlExport.cxx208 sal_Int32 nColIndex = aColIter - aRowIter->second.begin(); in lcl_adjustColumnSpanOverRows() local
211 (aRowIter+i)->second[nColIndex].nColSpan = nColSpan; in lcl_adjustColumnSpanOverRows()
815 sal_Int32 nColIndex = aColIter - aRowIter->second.begin(); in exportContainer() local
816 ::std::map<sal_Int32,sal_Int32>::iterator aRowSpanFind = aRowSpan.find(nColIndex); in exportContainer()
855 aRowSpan[nColIndex] = nSpan - 1; in exportContainer()
/trunk/main/sc/source/ui/unoobj/
H A Dcellsuno.cxx5280 for (SCCOL nColIndex = 0; nColIndex < nColCount; nColIndex++) in getFormulaArray() local
5281 pColAry[nColIndex] = lcl_GetInputString( pDocSh->GetDocument(), in getFormulaArray()
5282 … ScAddress( nStartCol+nColIndex, nStartRow+nRowIndex, nTab ), sal_True ); in getFormulaArray()