Home
last modified time | relevance | path

Searched refs:pBoxInfoItem (Results 1 – 5 of 5) sorted by relevance

/AOO41X/main/cui/source/tabpages/
H A Dborder.cxx436 const SvxBoxInfoItem* pBoxInfoItem; in Reset() local
444 pBoxInfoItem = (const SvxBoxInfoItem*)GetItem( rSet, SID_ATTR_BORDER_INNER, sal_False ); in Reset()
448 if ( pBoxItem && pBoxInfoItem ) // -> Don't Care in Reset()
450 …ResetFrameLine_Impl( svx::FRAMEBORDER_LEFT, pBoxItem->GetLeft(), pBoxInfoItem->IsValid( VALI… in Reset()
451 …ResetFrameLine_Impl( svx::FRAMEBORDER_RIGHT, pBoxItem->GetRight(), pBoxInfoItem->IsValid( VALI… in Reset()
452 …ResetFrameLine_Impl( svx::FRAMEBORDER_TOP, pBoxItem->GetTop(), pBoxInfoItem->IsValid( VALI… in Reset()
453 …ResetFrameLine_Impl( svx::FRAMEBORDER_BOTTOM, pBoxItem->GetBottom(), pBoxInfoItem->IsValid( VALI… in Reset()
454 …ResetFrameLine_Impl( svx::FRAMEBORDER_VER, pBoxInfoItem->GetVert(), pBoxInfoItem->IsValid( VALI… in Reset()
455 …ResetFrameLine_Impl( svx::FRAMEBORDER_HOR, pBoxInfoItem->GetHori(), pBoxInfoItem->IsValid( VALI… in Reset()
464 SetMetricValue( aLeftMF, pBoxInfoItem->GetDefDist(), eCoreUnit ); in Reset()
[all …]
/AOO41X/main/svx/source/table/
H A Dtablecontroller.cxx2075 …_uInt16 nCellFlags, const SvxBoxItem* pBoxItem, const SvxBoxInfoItem* pBoxInfoItem, SvxBoxItem& rN… in ImplApplyBoxItem() argument
2085 if( pBoxInfoItem->IsValid(VALID_TOP) ) in ImplApplyBoxItem()
2090 if( pBoxInfoItem->IsValid(VALID_BOTTOM) ) in ImplApplyBoxItem()
2098 if( pBoxInfoItem->IsValid(VALID_LEFT) ) in ImplApplyBoxItem()
2103 if( pBoxInfoItem->IsValid(VALID_RIGHT) ) in ImplApplyBoxItem()
2112 …if( (nCellFlags & CELL_LEFT) ? pBoxInfoItem->IsValid(VALID_LEFT) : pBoxInfoItem->IsValid(VALID_VER… in ImplApplyBoxItem()
2113 …rNewFrame.SetLine( (nCellFlags & CELL_LEFT) ? pBoxItem->GetLeft() : pBoxInfoItem->GetVert(), BOX_L… in ImplApplyBoxItem()
2115 …if( (nCellFlags & CELL_RIGHT) ? pBoxInfoItem->IsValid(VALID_RIGHT) : pBoxInfoItem->IsValid(VALID_V… in ImplApplyBoxItem()
2116 …rNewFrame.SetLine( (nCellFlags & CELL_RIGHT) ? pBoxItem->GetRight() : pBoxInfoItem->GetVert(), BOX… in ImplApplyBoxItem()
2118 …if( (nCellFlags & CELL_TOP) ? pBoxInfoItem->IsValid(VALID_TOP) : pBoxInfoItem->IsValid(VALID_HORI)… in ImplApplyBoxItem()
[all …]
/AOO41X/main/sc/source/ui/sidebar/
H A DCellAppearancePropertyPanel.cxx602 const SvxBoxInfoItem* pBoxInfoItem = dynamic_cast< const SvxBoxInfoItem* >(pState); in NotifyItemUpdate() local
604 if(pBoxInfoItem) in NotifyItemUpdate()
610 if(!pBoxInfoItem->IsValid( VALID_VERT ) || pBoxInfoItem->GetVert()) in NotifyItemUpdate()
613 if(!pBoxInfoItem->IsValid( VALID_HORI ) || pBoxInfoItem->GetHori()) in NotifyItemUpdate()
616 if(!pBoxInfoItem->IsValid( VALID_LEFT ) || mbLeft) in NotifyItemUpdate()
619 if(!pBoxInfoItem->IsValid( VALID_RIGHT ) || mbRight) in NotifyItemUpdate()
622 if(!pBoxInfoItem->IsValid( VALID_TOP ) || mbTop) in NotifyItemUpdate()
625 if(!pBoxInfoItem->IsValid( VALID_BOTTOM ) || mbBottom) in NotifyItemUpdate()
/AOO41X/main/sc/source/core/data/
H A Dattarray.cxx1051 const SvxBoxInfoItem* pBoxInfoItem, in ApplyFrame() argument
1055 DBG_ASSERT( pBoxItem && pBoxInfoItem, "Linienattribute fehlen!" ); in ApplyFrame()
1070 if ( bLeft ? pBoxInfoItem->IsValid(VALID_LEFT) : pBoxInfoItem->IsValid(VALID_VERT) ) in ApplyFrame()
1071 aNewFrame.SetLine( bLeft ? pBoxItem->GetLeft() : pBoxInfoItem->GetVert(), in ApplyFrame()
1073 if ( (nDistRight==0) ? pBoxInfoItem->IsValid(VALID_RIGHT) : pBoxInfoItem->IsValid(VALID_VERT) ) in ApplyFrame()
1074 aNewFrame.SetLine( (nDistRight==0) ? pBoxItem->GetRight() : pBoxInfoItem->GetVert(), in ApplyFrame()
1076 if ( bTop ? pBoxInfoItem->IsValid(VALID_TOP) : pBoxInfoItem->IsValid(VALID_HORI) ) in ApplyFrame()
1077 aNewFrame.SetLine( bTop ? pBoxItem->GetTop() : pBoxInfoItem->GetHori(), in ApplyFrame()
1079 … if ( (nDistBottom==0) ? pBoxInfoItem->IsValid(VALID_BOTTOM) : pBoxInfoItem->IsValid(VALID_HORI) ) in ApplyFrame()
1080 aNewFrame.SetLine( (nDistBottom==0) ? pBoxItem->GetBottom() : pBoxInfoItem->GetHori(), in ApplyFrame()
/AOO41X/main/svx/source/svdraw/
H A Dsvdattr.cxx296 SvxBoxInfoItem* pBoxInfoItem = new SvxBoxInfoItem( SDRATTR_TABLE_BORDER_INNER ); in SdrItemPool() local
298 pBoxInfoItem->SetTable( sal_True ); in SdrItemPool()
299 pBoxInfoItem->SetDist( sal_True); // Abstandsfeld immer anzeigen in SdrItemPool()
302pBoxInfoItem->SetValid( VALID_DISABLE, sal_True ); // Einzelne Linien koennen nur in Tabellen Dont… in SdrItemPool()
304 mppLocalPoolDefaults[ SDRATTR_TABLE_BORDER_INNER - SDRATTR_START ] = pBoxInfoItem; in SdrItemPool()