Home
last modified time | relevance | path

Searched refs:aGridOpt (Results 1 – 4 of 4) sorted by relevance

/AOO41X/main/sc/source/ui/unoobj/
H A Dconfuno.cxx293 ScGridOptions aGridOpt(aViewOpt.GetGridOptions()); in setPropertyValue() local
295 aGridOpt.SetUseGridSnap( ScUnoHelpFunctions::GetBoolFromAny( aValue ) ); in setPropertyValue()
297 aGridOpt.SetGridVisible( ScUnoHelpFunctions::GetBoolFromAny( aValue ) ); in setPropertyValue()
299aGridOpt.SetFldDrawX( static_cast <sal_uInt32> ( ScUnoHelpFunctions::GetInt32FromAny( aValue ) ) ); in setPropertyValue()
301aGridOpt.SetFldDrawY( static_cast <sal_uInt32> ( ScUnoHelpFunctions::GetInt32FromAny( aValue ) ) ); in setPropertyValue()
303aGridOpt.SetFldDivisionX( static_cast <sal_uInt32> ( ScUnoHelpFunctions::GetInt32FromAny( aValue )… in setPropertyValue()
305aGridOpt.SetFldDivisionY( static_cast <sal_uInt32> ( ScUnoHelpFunctions::GetInt32FromAny( aValue )… in setPropertyValue()
307 aGridOpt.SetSynchronize( ScUnoHelpFunctions::GetBoolFromAny( aValue ) ); in setPropertyValue()
310 aViewOpt.SetGridOptions(aGridOpt); in setPropertyValue()
428 const ScGridOptions& aGridOpt = aViewOpt.GetGridOptions(); in getPropertyValue() local
[all …]
/AOO41X/main/sc/source/core/tool/
H A Dviewopti.cxx172 aGridOpt.SetDefaults(); in SetDefaults()
196 aGridOpt = rCpy.aGridOpt; in operator =()
213 bEqual = bEqual && (aGridOpt == rOpt.aGridOpt); in operator ==()
224 pItem->SetFldDrawX ( aGridOpt.GetFldDrawX() ); in CreateGridItem()
225 pItem->SetFldDivisionX ( aGridOpt.GetFldDivisionX() ); in CreateGridItem()
226 pItem->SetFldDrawY ( aGridOpt.GetFldDrawY() ); in CreateGridItem()
227 pItem->SetFldDivisionY ( aGridOpt.GetFldDivisionY() ); in CreateGridItem()
228 pItem->SetFldSnapX ( aGridOpt.GetFldSnapX() ); in CreateGridItem()
229 pItem->SetFldSnapY ( aGridOpt.GetFldSnapY() ); in CreateGridItem()
230 pItem->SetUseGridSnap ( aGridOpt.GetUseGridSnap() ); in CreateGridItem()
[all …]
/AOO41X/main/sc/inc/
H A Dviewopti.hxx110 const ScGridOptions& GetGridOptions() const { return aGridOpt; } in GetGridOptions()
111 void SetGridOptions( const ScGridOptions& rNew ) { aGridOpt = rNew; } in SetGridOptions()
123 ScGridOptions aGridOpt; member in ScViewOptions
/AOO41X/main/sc/source/ui/view/
H A Dviewdata.cxx2770 const ScGridOptions& aGridOpt = pOptions->GetGridOptions(); in WriteUserDataSequence() local
2772 … ScUnoHelpFunctions::SetBoolInAny( pSettings[SC_SNAPTORASTER].Value, aGridOpt.GetUseGridSnap() ); in WriteUserDataSequence()
2774 … ScUnoHelpFunctions::SetBoolInAny( pSettings[SC_RASTERVIS].Value, aGridOpt.GetGridVisible() ); in WriteUserDataSequence()
2776 pSettings[SC_RASTERRESX].Value <<= static_cast<sal_Int32> ( aGridOpt.GetFldDrawX() ); in WriteUserDataSequence()
2778 pSettings[SC_RASTERRESY].Value <<= static_cast<sal_Int32> ( aGridOpt.GetFldDrawY() ); in WriteUserDataSequence()
2780 … pSettings[SC_RASTERSUBX].Value <<= static_cast<sal_Int32> ( aGridOpt.GetFldDivisionX() ); in WriteUserDataSequence()
2782 … pSettings[SC_RASTERSUBY].Value <<= static_cast<sal_Int32> ( aGridOpt.GetFldDivisionY() ); in WriteUserDataSequence()
2784 … ScUnoHelpFunctions::SetBoolInAny( pSettings[SC_RASTERSYNC].Value, aGridOpt.GetSynchronize() ); in WriteUserDataSequence()
2921 ScGridOptions aGridOpt(pOptions->GetGridOptions()); in ReadUserDataSequence() local
2923 aGridOpt.SetUseGridSnap( ScUnoHelpFunctions::GetBoolFromAny( rSettings[i].Value ) ); in ReadUserDataSequence()
[all …]