Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #include <svx/svxids.hrc>
21 :
22 : //-> Fonts & Items
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>
32 :
33 : //<- Fonts & Items
34 : #include <editeng/bulletitem.hxx>
35 : #include <editeng/brushitem.hxx>
36 : #include <vcl/graph.hxx>
37 : #include <svl/itemset.hxx>
38 : #include <svl/itempool.hxx>
39 : #include <editeng/numitem.hxx>
40 : #include <editeng/eeitem.hxx>
41 :
42 : #include "bulmaper.hxx"
43 :
44 : #define GetWhich(nSlot) rSet.GetPool()->GetWhich( nSlot )
45 :
46 0 : void SdBulletMapper::MapFontsInNumRule( SvxNumRule& aNumRule, const SfxItemSet& rSet )
47 : {
48 0 : const sal_uInt16 nCount = aNumRule.GetLevelCount();
49 0 : for( sal_uInt16 nLevel = 0; nLevel < nCount; nLevel++ )
50 : {
51 0 : const SvxNumberFormat& rSrcLevel = aNumRule.GetLevel(nLevel);
52 0 : SvxNumberFormat aNewLevel( rSrcLevel );
53 :
54 0 : if(rSrcLevel.GetNumberingType() != com::sun::star::style::NumberingType::CHAR_SPECIAL &&
55 0 : rSrcLevel.GetNumberingType() != com::sun::star::style::NumberingType::NUMBER_NONE )
56 : {
57 : // if enumeration instead bullet is chosen, adjust bullet font to template font
58 :
59 : // to be implemented if module supports CJK
60 0 : long nFontID = SID_ATTR_CHAR_FONT;
61 0 : long nFontHeightID = SID_ATTR_CHAR_FONTHEIGHT;
62 0 : long nWeightID = SID_ATTR_CHAR_WEIGHT;
63 0 : long nPostureID = SID_ATTR_CHAR_POSTURE;
64 :
65 0 : vcl::Font aMyFont;
66 : const SvxFontItem& rFItem =
67 0 : static_cast<const SvxFontItem&>(rSet.Get(GetWhich( (sal_uInt16)nFontID )));
68 0 : aMyFont.SetFamily(rFItem.GetFamily());
69 0 : aMyFont.SetName(rFItem.GetFamilyName());
70 0 : aMyFont.SetCharSet(rFItem.GetCharSet());
71 0 : aMyFont.SetPitch(rFItem.GetPitch());
72 :
73 : const SvxFontHeightItem& rFHItem =
74 0 : static_cast<const SvxFontHeightItem&>(rSet.Get(GetWhich( (sal_uInt16)nFontHeightID )));
75 0 : aMyFont.SetSize(Size(0, rFHItem.GetHeight()));
76 :
77 : const SvxWeightItem& rWItem =
78 0 : static_cast<const SvxWeightItem&>(rSet.Get(GetWhich( (sal_uInt16)nWeightID )));
79 0 : aMyFont.SetWeight(rWItem.GetWeight());
80 :
81 : const SvxPostureItem& rPItem =
82 0 : static_cast<const SvxPostureItem&>(rSet.Get(GetWhich( (sal_uInt16)nPostureID )));
83 0 : aMyFont.SetItalic(rPItem.GetPosture());
84 :
85 0 : const SvxUnderlineItem& rUItem = static_cast<const SvxUnderlineItem&>(rSet.Get(GetWhich(SID_ATTR_CHAR_UNDERLINE)));
86 0 : aMyFont.SetUnderline(rUItem.GetLineStyle());
87 :
88 0 : const SvxOverlineItem& rOItem = static_cast<const SvxOverlineItem&>(rSet.Get(GetWhich(SID_ATTR_CHAR_OVERLINE)));
89 0 : aMyFont.SetOverline(rOItem.GetLineStyle());
90 :
91 0 : const SvxCrossedOutItem& rCOItem = static_cast<const SvxCrossedOutItem&>(rSet.Get(GetWhich(SID_ATTR_CHAR_STRIKEOUT)));
92 0 : aMyFont.SetStrikeout(rCOItem.GetStrikeout());
93 :
94 0 : const SvxContourItem& rCItem = static_cast<const SvxContourItem&>(rSet.Get(GetWhich(SID_ATTR_CHAR_CONTOUR)));
95 0 : aMyFont.SetOutline(rCItem.GetValue());
96 :
97 0 : const SvxShadowedItem& rSItem = static_cast<const SvxShadowedItem&>(rSet.Get(GetWhich(SID_ATTR_CHAR_SHADOWED)));
98 0 : aMyFont.SetShadow(rSItem.GetValue());
99 :
100 0 : aNewLevel.SetBulletFont(&aMyFont);
101 0 : aNumRule.SetLevel(nLevel, aNewLevel );
102 : }
103 0 : else if( rSrcLevel.GetNumberingType() == com::sun::star::style::NumberingType::CHAR_SPECIAL )
104 : {
105 0 : aNewLevel.SetPrefix("");
106 0 : aNewLevel.SetSuffix("");
107 0 : aNumRule.SetLevel(nLevel, aNewLevel );
108 : }
109 0 : }
110 0 : }
111 :
112 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|