Lines Matching refs:rSet
152 void lcl_getTableAttributes( SfxItemSet& rSet, SwWrtShell &rSh ) in lcl_getTableAttributes() argument
156 rSet.Put( aBrush ); in lcl_getTableAttributes()
158 rSet.Put( aBrush, SID_ATTR_BRUSH_ROW ); in lcl_getTableAttributes()
160 rSet.InvalidateItem(SID_ATTR_BRUSH_ROW); in lcl_getTableAttributes()
162 rSet.Put( aBrush, SID_ATTR_BRUSH_TABLE ); in lcl_getTableAttributes()
165 rSet.Put(aBoxInfo); in lcl_getTableAttributes()
166 rSh.GetTabBorders( rSet ); in lcl_getTableAttributes()
170 rSet.Put(aBoxDirection, FN_TABLE_BOX_TEXTDIRECTION); in lcl_getTableAttributes()
172 rSet.Put(SfxUInt16Item(FN_TABLE_SET_VERT_ALIGN, rSh.GetBoxAlign())); in lcl_getTableAttributes()
174 rSet.Put( SfxUInt16Item( FN_PARAM_TABLE_HEADLINE, rSh.GetRowsToRepeat() ) ); in lcl_getTableAttributes()
179 rSet.Put( pFrmFmt->GetShadow() ); in lcl_getTableAttributes()
180 rSet.Put( pFrmFmt->GetBreak() ); in lcl_getTableAttributes()
181 rSet.Put( pFrmFmt->GetPageDesc() ); in lcl_getTableAttributes()
182 rSet.Put( pFrmFmt->GetLayoutSplit() ); in lcl_getTableAttributes()
183 rSet.Put( pFrmFmt->GetKeep() ); in lcl_getTableAttributes()
184 rSet.Put( pFrmFmt->GetFrmDir() ); in lcl_getTableAttributes()
190 rSet.Put(*pSplit); in lcl_getTableAttributes()
194 rSh.GetTblBoxFormulaAttrs( rSet ); //RES_BOXATR_FORMAT in lcl_getTableAttributes()
198 void lcl_setTableAttributes( const SfxItemSet& rSet, SwWrtShell &rSh ) in lcl_setTableAttributes() argument
201 sal_Bool bBorder = ( SFX_ITEM_SET == rSet.GetItemState( RES_BOX ) || in lcl_setTableAttributes()
202 SFX_ITEM_SET == rSet.GetItemState( SID_ATTR_BORDER_INNER ) ); in lcl_setTableAttributes()
204 sal_Bool bBackground = SFX_ITEM_SET == rSet.GetItemState( RES_BACKGROUND, sal_False, &pItem ); in lcl_setTableAttributes()
206 bBackground |= SFX_ITEM_SET == rSet.GetItemState( SID_ATTR_BRUSH_ROW, sal_False, &pRowItem ); in lcl_setTableAttributes()
207 bBackground |= SFX_ITEM_SET == rSet.GetItemState( SID_ATTR_BRUSH_TABLE, sal_False, &pTableItem ); in lcl_setTableAttributes()
227 rSh.SetTabBorders( rSet ); in lcl_setTableAttributes()
229 if( SFX_ITEM_SET == rSet.GetItemState( FN_PARAM_TABLE_HEADLINE, sal_False, &pItem) ) in lcl_setTableAttributes()
237 rSet.GetItemState(rSet.GetPool()->GetWhich(RES_SHADOW), sal_False, &pItem); in lcl_setTableAttributes()
243 rSet.GetItemState(rSet.GetPool()->GetWhich(RES_BREAK), sal_False, &pItem); in lcl_setTableAttributes()
249 rSet.GetItemState(rSet.GetPool()->GetWhich(RES_PAGEDESC), sal_False, &pItem); in lcl_setTableAttributes()
255 rSet.GetItemState(rSet.GetPool()->GetWhich(RES_LAYOUT_SPLIT), sal_False, &pItem); in lcl_setTableAttributes()
261 rSet.GetItemState(rSet.GetPool()->GetWhich(RES_KEEP), sal_False, &pItem); in lcl_setTableAttributes()
267 rSet.GetItemState(rSet.GetPool()->GetWhich(RES_FRAMEDIR), sal_False, &pItem); in lcl_setTableAttributes()
272 if( SFX_ITEM_SET == rSet.GetItemState( FN_TABLE_BOX_TEXTDIRECTION, sal_False, &pItem) ) in lcl_setTableAttributes()
279 if( SFX_ITEM_SET == rSet.GetItemState( FN_TABLE_SET_VERT_ALIGN, sal_False, &pItem)) in lcl_setTableAttributes()
282 if( SFX_ITEM_SET == rSet.GetItemState( RES_ROW_SPLIT, sal_False, &pItem) ) in lcl_setTableAttributes()
287 if( SFX_ITEM_SET == rSet.GetItemState( RES_BOXATR_FORMAT, sal_False, &pItem )) in lcl_setTableAttributes()
289 SfxItemSet aBoxSet( *rSet.GetPool(), RES_BOXATR_FORMAT, RES_BOXATR_FORMAT ); in lcl_setTableAttributes()