/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_sd.hxx" #ifdef SD_DLLIMPLEMENTATION #undef SD_DLLIMPLEMENTATION #endif #ifndef _SVX_SVXIDS_HRC #include #endif //-> Fonts & Items #include #include #include #include #include #include #include #include #include //<- Fonts & Items #include #include #include #include #include #include #include #include "bulmaper.hxx" #define GetWhich(nSlot) rSet.GetPool()->GetWhich( nSlot ) /* #i35937# void SdBulletMapper::PreMapNumBulletForDialog( SfxItemSet& rSet ) { if( SFX_ITEM_SET == rSet.GetItemState( EE_PARA_NUMBULLET, sal_False ) ) { SvxNumRule* pRule = ((SvxNumBulletItem*)rSet.GetItem( EE_PARA_NUMBULLET ))->GetNumRule(); if(pRule && pRule->GetNumRuleType() == SVX_RULETYPE_PRESENTATION_NUMBERING) { // 10er Bullet Item auf 9er Item mappen SvxNumRule aNewRule( pRule->GetFeatureFlags(), 9, sal_False, SVX_RULETYPE_PRESENTATION_NUMBERING ); for( sal_uInt16 i = 0; i < 9; i++ ) aNewRule.SetLevel(i, pRule->GetLevel(i)); rSet.Put( SvxNumBulletItem( aNewRule, EE_PARA_NUMBULLET ) ); } } } void SdBulletMapper::PostMapNumBulletForDialog( SfxItemSet& rSet ) { if( SFX_ITEM_SET == rSet.GetItemState( EE_PARA_NUMBULLET, sal_False ) ) { SvxNumRule* pRule = ((SvxNumBulletItem*)rSet.GetItem( EE_PARA_NUMBULLET ))->GetNumRule(); if(pRule) { pRule->UnLinkGraphics(); if(pRule->GetNumRuleType() == SVX_RULETYPE_PRESENTATION_NUMBERING) { // 9er Bullet Item auf 10er Item mappen SvxNumRule aNewRule( pRule->GetFeatureFlags(), 10, sal_False, SVX_RULETYPE_PRESENTATION_NUMBERING ); for( sal_uInt16 i = 0; i < 9; i++ ) aNewRule.SetLevel(i, pRule->GetLevel(i)); rSet.Put( SvxNumBulletItem( aNewRule, EE_PARA_NUMBULLET ) ); } } } } */ void SdBulletMapper::MapFontsInNumRule( SvxNumRule& aNumRule, const SfxItemSet& rSet ) { const sal_uInt16 nCount = aNumRule.GetLevelCount(); for( sal_uInt16 nLevel = 0; nLevel < nCount; nLevel++ ) { const SvxNumberFormat& rSrcLevel = aNumRule.GetLevel(nLevel); SvxNumberFormat aNewLevel( rSrcLevel ); if(rSrcLevel.GetNumberingType() != com::sun::star::style::NumberingType::CHAR_SPECIAL && rSrcLevel.GetNumberingType() != com::sun::star::style::NumberingType::NUMBER_NONE ) { // wenn Aufzaehlung statt Bullet gewaehlt wurde, wird der Bullet-Font // dem Vorlagen-Font angeglichen // to be implemented if module supports CJK long nFontID = SID_ATTR_CHAR_FONT; long nFontHeightID = SID_ATTR_CHAR_FONTHEIGHT; long nWeightID = SID_ATTR_CHAR_WEIGHT; long nPostureID = SID_ATTR_CHAR_POSTURE; if( 0 ) { nFontID = EE_CHAR_FONTINFO_CJK; nFontHeightID = EE_CHAR_FONTHEIGHT_CJK; nWeightID = EE_CHAR_WEIGHT_CJK; nPostureID = EE_CHAR_ITALIC_CJK; } else if( 0 ) { nFontID = EE_CHAR_FONTINFO_CTL; nFontHeightID = EE_CHAR_FONTHEIGHT_CTL; nWeightID = EE_CHAR_WEIGHT_CTL; nPostureID = EE_CHAR_ITALIC_CTL; } Font aMyFont; const SvxFontItem& rFItem = (SvxFontItem&)rSet.Get(GetWhich( (sal_uInt16)nFontID )); aMyFont.SetFamily(rFItem.GetFamily()); aMyFont.SetName(rFItem.GetFamilyName()); aMyFont.SetCharSet(rFItem.GetCharSet()); aMyFont.SetPitch(rFItem.GetPitch()); const SvxFontHeightItem& rFHItem = (SvxFontHeightItem&)rSet.Get(GetWhich( (sal_uInt16)nFontHeightID )); aMyFont.SetSize(Size(0, rFHItem.GetHeight())); const SvxWeightItem& rWItem = (SvxWeightItem&)rSet.Get(GetWhich( (sal_uInt16)nWeightID )); aMyFont.SetWeight(rWItem.GetWeight()); const SvxPostureItem& rPItem = (SvxPostureItem&)rSet.Get(GetWhich( (sal_uInt16)nPostureID )); aMyFont.SetItalic(rPItem.GetPosture()); const SvxUnderlineItem& rUItem = (SvxUnderlineItem&)rSet.Get(GetWhich(SID_ATTR_CHAR_UNDERLINE)); aMyFont.SetUnderline(rUItem.GetLineStyle()); const SvxOverlineItem& rOItem = (SvxOverlineItem&)rSet.Get(GetWhich(SID_ATTR_CHAR_OVERLINE)); aMyFont.SetOverline(rOItem.GetLineStyle()); const SvxCrossedOutItem& rCOItem = (SvxCrossedOutItem&)rSet.Get(GetWhich(SID_ATTR_CHAR_STRIKEOUT)); aMyFont.SetStrikeout(rCOItem.GetStrikeout()); const SvxContourItem& rCItem = (SvxContourItem&)rSet.Get(GetWhich(SID_ATTR_CHAR_CONTOUR)); aMyFont.SetOutline(rCItem.GetValue()); const SvxShadowedItem& rSItem = (SvxShadowedItem&)rSet.Get(GetWhich(SID_ATTR_CHAR_SHADOWED)); aMyFont.SetShadow(rSItem.GetValue()); aNewLevel.SetBulletFont(&aMyFont); // aNewLevel.SetBulletRelSize( 75 ); aNumRule.SetLevel(nLevel, aNewLevel ); } else if( rSrcLevel.GetNumberingType() == com::sun::star::style::NumberingType::CHAR_SPECIAL ) { String aEmpty; aNewLevel.SetPrefix( aEmpty ); aNewLevel.SetSuffix( aEmpty ); aNumRule.SetLevel(nLevel, aNewLevel ); } } }