1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <editeng/editids.hrc>
23 #include <vcl/font.hxx>
24 #include <editeng/fontitem.hxx>
25 #include <editeng/fhgtitem.hxx>
26 #include <editeng/wghtitem.hxx>
27 #include <editeng/udlnitem.hxx>
28 #include <editeng/crossedoutitem.hxx>
29 #include <editeng/postitem.hxx>
30 #include <editeng/contouritem.hxx>
31 #include <editeng/shdditem.hxx>
34 #include <svl/itemset.hxx>
35 #include <svl/itempool.hxx>
36 #include <editeng/numitem.hxx>
38 #include <bulmaper.hxx>
40 #define GetWhich(nSlot) rSet.GetPool()->GetWhich( nSlot )
42 void SdBulletMapper::MapFontsInNumRule( SvxNumRule
& aNumRule
, const SfxItemSet
& rSet
)
44 const sal_uInt16 nCount
= aNumRule
.GetLevelCount();
45 for( sal_uInt16 nLevel
= 0; nLevel
< nCount
; nLevel
++ )
47 const SvxNumberFormat
& rSrcLevel
= aNumRule
.GetLevel(nLevel
);
48 SvxNumberFormat
aNewLevel( rSrcLevel
);
50 if(rSrcLevel
.GetNumberingType() != css::style::NumberingType::CHAR_SPECIAL
&&
51 rSrcLevel
.GetNumberingType() != css::style::NumberingType::NUMBER_NONE
)
53 // if enumeration instead bullet is chosen, adjust bullet font to template font
55 // to be implemented if module supports CJK
58 const SvxFontItem
& rFItem
= rSet
.Get(GetWhich( SID_ATTR_CHAR_FONT
));
59 aMyFont
.SetFamily(rFItem
.GetFamily());
60 aMyFont
.SetFamilyName(rFItem
.GetFamilyName());
61 aMyFont
.SetCharSet(rFItem
.GetCharSet());
62 aMyFont
.SetPitch(rFItem
.GetPitch());
64 const SvxFontHeightItem
& rFHItem
= rSet
.Get(GetWhich( SID_ATTR_CHAR_FONTHEIGHT
));
65 aMyFont
.SetFontSize(Size(0, rFHItem
.GetHeight()));
67 const SvxWeightItem
& rWItem
= rSet
.Get(GetWhich( SID_ATTR_CHAR_WEIGHT
));
68 aMyFont
.SetWeight(rWItem
.GetWeight());
70 const SvxPostureItem
& rPItem
= rSet
.Get(GetWhich(SID_ATTR_CHAR_POSTURE
));
71 aMyFont
.SetItalic(rPItem
.GetPosture());
73 const SvxUnderlineItem
& rUItem
= rSet
.Get(GetWhich(SID_ATTR_CHAR_UNDERLINE
));
74 aMyFont
.SetUnderline(rUItem
.GetLineStyle());
76 const SvxOverlineItem
& rOItem
= rSet
.Get(GetWhich(SID_ATTR_CHAR_OVERLINE
));
77 aMyFont
.SetOverline(rOItem
.GetLineStyle());
79 const SvxCrossedOutItem
& rCOItem
= rSet
.Get(GetWhich(SID_ATTR_CHAR_STRIKEOUT
));
80 aMyFont
.SetStrikeout(rCOItem
.GetStrikeout());
82 const SvxContourItem
& rCItem
= rSet
.Get(GetWhich(SID_ATTR_CHAR_CONTOUR
));
83 aMyFont
.SetOutline(rCItem
.GetValue());
85 const SvxShadowedItem
& rSItem
= rSet
.Get(GetWhich(SID_ATTR_CHAR_SHADOWED
));
86 aMyFont
.SetShadow(rSItem
.GetValue());
88 aNewLevel
.SetBulletFont(&aMyFont
);
89 aNumRule
.SetLevel(nLevel
, aNewLevel
);
91 else if( rSrcLevel
.GetNumberingType() == css::style::NumberingType::CHAR_SPECIAL
)
93 aNewLevel
.SetListFormat("", "", nLevel
);
94 aNumRule
.SetLevel(nLevel
, aNewLevel
);
99 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */