diff options
Diffstat (limited to 'sc/source/ui/view/colrowba.cxx')
-rw-r--r-- | sc/source/ui/view/colrowba.cxx | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/sc/source/ui/view/colrowba.cxx b/sc/source/ui/view/colrowba.cxx index d802c08f642f..13bc1e8eb1f5 100644 --- a/sc/source/ui/view/colrowba.cxx +++ b/sc/source/ui/view/colrowba.cxx @@ -84,7 +84,7 @@ ScColBar::~ScColBar() { } -inline BOOL ScColBar::UseNumericHeader() const +inline sal_Bool ScColBar::UseNumericHeader() const { return pViewData->GetDocument()->GetAddressConvention() == formula::FormulaGrammar::CONV_XL_R1C1; } @@ -94,7 +94,7 @@ SCCOLROW ScColBar::GetPos() return pViewData->GetPosX(eWhich); } -USHORT ScColBar::GetEntrySize( SCCOLROW nEntryNo ) +sal_uInt16 ScColBar::GetEntrySize( SCCOLROW nEntryNo ) { ScDocument* pDoc = pViewData->GetDocument(); SCTAB nTab = pViewData->GetTabNo(); @@ -102,7 +102,7 @@ USHORT ScColBar::GetEntrySize( SCCOLROW nEntryNo ) if (pDoc->ColHidden(static_cast<SCCOL>(nEntryNo), nTab, nLastCol)) return 0; else - return (USHORT) ScViewData::ToPixel( pDoc->GetColWidth( static_cast<SCCOL>(nEntryNo), nTab ), pViewData->GetPPTX() ); + return (sal_uInt16) ScViewData::ToPixel( pDoc->GetColWidth( static_cast<SCCOL>(nEntryNo), nTab ), pViewData->GetPPTX() ); } String ScColBar::GetEntryText( SCCOLROW nEntryNo ) @@ -112,9 +112,9 @@ String ScColBar::GetEntryText( SCCOLROW nEntryNo ) : ScColToAlpha( static_cast<SCCOL>(nEntryNo) ); } -void ScColBar::SetEntrySize( SCCOLROW nPos, USHORT nNewSize ) +void ScColBar::SetEntrySize( SCCOLROW nPos, sal_uInt16 nNewSize ) { - USHORT nSizeTwips; + sal_uInt16 nSizeTwips; ScSizeMode eMode = SC_SIZE_DIRECT; if (nNewSize>0 && nNewSize<10) nNewSize=10; // (Pixel) @@ -124,7 +124,7 @@ void ScColBar::SetEntrySize( SCCOLROW nPos, USHORT nNewSize ) eMode = SC_SIZE_OPTIMAL; } else - nSizeTwips = (USHORT) ( nNewSize / pViewData->GetPPTX() ); + nSizeTwips = (sal_uInt16) ( nNewSize / pViewData->GetPPTX() ); ScMarkData& rMark = pViewData->GetMarkData(); // SCTAB nTab = pViewData->GetTabNo(); @@ -161,7 +161,7 @@ void ScColBar::SetEntrySize( SCCOLROW nPos, USHORT nNewSize ) nRangeCnt = 1; } - pViewData->GetView()->SetWidthOrHeight( TRUE, nRangeCnt, pRanges, eMode, nSizeTwips ); + pViewData->GetView()->SetWidthOrHeight( sal_True, nRangeCnt, pRanges, eMode, nSizeTwips ); delete[] pRanges; } @@ -170,10 +170,10 @@ void ScColBar::HideEntries( SCCOLROW nStart, SCCOLROW nEnd ) SCCOLROW nRange[2]; nRange[0] = nStart; nRange[1] = nEnd; - pViewData->GetView()->SetWidthOrHeight( TRUE, 1, nRange, SC_SIZE_DIRECT, 0 ); + pViewData->GetView()->SetWidthOrHeight( sal_True, 1, nRange, SC_SIZE_DIRECT, 0 ); } -void ScColBar::SetMarking( BOOL bSet ) +void ScColBar::SetMarking( sal_Bool bSet ) { pViewData->GetMarkData().SetMarking( bSet ); if (!bSet) @@ -202,19 +202,19 @@ void ScColBar::SelectWindow() } pViewSh->ActivatePart( eActive ); - pFuncSet->SetColumn( TRUE ); + pFuncSet->SetColumn( sal_True ); pFuncSet->SetWhich( eActive ); pViewSh->ActiveGrabFocus(); } -BOOL ScColBar::IsDisabled() +sal_Bool ScColBar::IsDisabled() { ScModule* pScMod = SC_MOD(); return pScMod->IsFormulaMode() || pScMod->IsModalMode(); } -BOOL ScColBar::ResizeAllowed() +sal_Bool ScColBar::ResizeAllowed() { return !pViewData->HasEditView( pViewData->GetActivePart() ) && !pViewData->GetDocShell()->IsReadOnly(); @@ -235,7 +235,7 @@ String ScColBar::GetDragHelp( long nVal ) return lcl_MetricString( nTwips, ScGlobal::GetRscString(STR_TIP_WIDTH) ); } -BOOL ScColBar::IsLayoutRTL() // overloaded only for columns +sal_Bool ScColBar::IsLayoutRTL() // overloaded only for columns { return pViewData->GetDocument()->IsLayoutRTL( pViewData->GetTabNo() ); } @@ -262,7 +262,7 @@ SCCOLROW ScRowBar::GetPos() return pViewData->GetPosY(eWhich); } -USHORT ScRowBar::GetEntrySize( SCCOLROW nEntryNo ) +sal_uInt16 ScRowBar::GetEntrySize( SCCOLROW nEntryNo ) { ScDocument* pDoc = pViewData->GetDocument(); SCTAB nTab = pViewData->GetTabNo(); @@ -270,7 +270,7 @@ USHORT ScRowBar::GetEntrySize( SCCOLROW nEntryNo ) if (pDoc->RowHidden(nEntryNo, nTab, nLastRow)) return 0; else - return (USHORT) ScViewData::ToPixel( pDoc->GetOriginalHeight( nEntryNo, + return (sal_uInt16) ScViewData::ToPixel( pDoc->GetOriginalHeight( nEntryNo, nTab ), pViewData->GetPPTY() ); } @@ -279,9 +279,9 @@ String ScRowBar::GetEntryText( SCCOLROW nEntryNo ) return String::CreateFromInt32( nEntryNo + 1 ); } -void ScRowBar::SetEntrySize( SCCOLROW nPos, USHORT nNewSize ) +void ScRowBar::SetEntrySize( SCCOLROW nPos, sal_uInt16 nNewSize ) { - USHORT nSizeTwips; + sal_uInt16 nSizeTwips; ScSizeMode eMode = SC_SIZE_DIRECT; if (nNewSize>0 && nNewSize<10) nNewSize=10; // (Pixel) @@ -291,7 +291,7 @@ void ScRowBar::SetEntrySize( SCCOLROW nPos, USHORT nNewSize ) eMode = SC_SIZE_OPTIMAL; } else - nSizeTwips = (USHORT) ( nNewSize / pViewData->GetPPTY() ); + nSizeTwips = (sal_uInt16) ( nNewSize / pViewData->GetPPTY() ); ScMarkData& rMark = pViewData->GetMarkData(); // SCTAB nTab = pViewData->GetTabNo(); @@ -328,7 +328,7 @@ void ScRowBar::SetEntrySize( SCCOLROW nPos, USHORT nNewSize ) nRangeCnt = 1; } - pViewData->GetView()->SetWidthOrHeight( FALSE, nRangeCnt, pRanges, eMode, nSizeTwips ); + pViewData->GetView()->SetWidthOrHeight( sal_False, nRangeCnt, pRanges, eMode, nSizeTwips ); delete[] pRanges; } @@ -337,10 +337,10 @@ void ScRowBar::HideEntries( SCCOLROW nStart, SCCOLROW nEnd ) SCCOLROW nRange[2]; nRange[0] = nStart; nRange[1] = nEnd; - pViewData->GetView()->SetWidthOrHeight( FALSE, 1, nRange, SC_SIZE_DIRECT, 0 ); + pViewData->GetView()->SetWidthOrHeight( sal_False, 1, nRange, SC_SIZE_DIRECT, 0 ); } -void ScRowBar::SetMarking( BOOL bSet ) +void ScRowBar::SetMarking( sal_Bool bSet ) { pViewData->GetMarkData().SetMarking( bSet ); if (!bSet) @@ -369,19 +369,19 @@ void ScRowBar::SelectWindow() } pViewSh->ActivatePart( eActive ); - pFuncSet->SetColumn( FALSE ); + pFuncSet->SetColumn( sal_False ); pFuncSet->SetWhich( eActive ); pViewSh->ActiveGrabFocus(); } -BOOL ScRowBar::IsDisabled() +sal_Bool ScRowBar::IsDisabled() { ScModule* pScMod = SC_MOD(); return pScMod->IsFormulaMode() || pScMod->IsModalMode(); } -BOOL ScRowBar::ResizeAllowed() +sal_Bool ScRowBar::ResizeAllowed() { return !pViewData->HasEditView( pViewData->GetActivePart() ) && !pViewData->GetDocShell()->IsReadOnly(); @@ -411,7 +411,7 @@ SCROW ScRowBar::GetHiddenCount( SCROW nEntryNo ) return pDoc->GetHiddenRowCount( nEntryNo, nTab ); } -BOOL ScRowBar::IsMirrored() // overloaded only for rows +sal_Bool ScRowBar::IsMirrored() // overloaded only for rows { return pViewData->GetDocument()->IsLayoutRTL( pViewData->GetTabNo() ); } |