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 <rtl/tencinfo.h>
21 : #include <vbanewfont.hxx>
22 : #include <com/sun/star/awt/FontWeight.hpp>
23 : #include <com/sun/star/awt/FontSlant.hpp>
24 : #include <com/sun/star/awt/FontStrikeout.hpp>
25 : #include <com/sun/star/awt/FontUnderline.hpp>
26 :
27 : using namespace ::com::sun::star;
28 : using namespace ::ooo::vba;
29 :
30 :
31 :
32 0 : VbaNewFont::VbaNewFont(
33 : const uno::Reference< beans::XPropertySet >& rxModelProps ) throw (uno::RuntimeException) :
34 0 : mxProps( rxModelProps, uno::UNO_SET_THROW )
35 : {
36 0 : }
37 :
38 : // XNewFont attributes
39 :
40 0 : OUString SAL_CALL VbaNewFont::getName() throw (uno::RuntimeException, std::exception)
41 : {
42 0 : uno::Any aAny = mxProps->getPropertyValue( "FontName" );
43 0 : return aAny.get< OUString >();
44 : }
45 :
46 0 : void SAL_CALL VbaNewFont::setName( const OUString& rName ) throw (uno::RuntimeException, std::exception)
47 : {
48 0 : mxProps->setPropertyValue( "FontName" , uno::Any( rName ) );
49 0 : }
50 :
51 0 : double SAL_CALL VbaNewFont::getSize() throw (uno::RuntimeException, std::exception)
52 : {
53 0 : uno::Any aAny = mxProps->getPropertyValue( "FontHeight" );
54 0 : return aAny.get< float >();
55 : }
56 :
57 0 : void SAL_CALL VbaNewFont::setSize( double fSize ) throw (uno::RuntimeException, std::exception)
58 : {
59 0 : mxProps->setPropertyValue( "FontHeight" , uno::Any( static_cast< float >( fSize ) ) );
60 0 : }
61 :
62 0 : sal_Int16 SAL_CALL VbaNewFont::getCharset() throw (uno::RuntimeException, std::exception)
63 : {
64 0 : uno::Any aAny = mxProps->getPropertyValue( "FontCharset" );
65 0 : return rtl_getBestWindowsCharsetFromTextEncoding( static_cast< rtl_TextEncoding >( aAny.get< sal_Int16 >() ) );
66 : }
67 :
68 0 : void SAL_CALL VbaNewFont::setCharset( sal_Int16 nCharset ) throw (uno::RuntimeException, std::exception)
69 : {
70 0 : rtl_TextEncoding eFontEnc = RTL_TEXTENCODING_DONTKNOW;
71 0 : if( (0 <= nCharset) && (nCharset <= SAL_MAX_UINT8) )
72 0 : eFontEnc = rtl_getTextEncodingFromWindowsCharset( static_cast< sal_uInt8 >( nCharset ) );
73 0 : if( eFontEnc == RTL_TEXTENCODING_DONTKNOW )
74 0 : throw uno::RuntimeException();
75 0 : mxProps->setPropertyValue( "FontCharset" , uno::Any( static_cast< sal_Int16 >( eFontEnc ) ) );
76 0 : }
77 :
78 0 : sal_Int16 SAL_CALL VbaNewFont::getWeight() throw (uno::RuntimeException, std::exception)
79 : {
80 0 : return getBold() ? 700 : 400;
81 : }
82 :
83 0 : void SAL_CALL VbaNewFont::setWeight( sal_Int16 nWeight ) throw (uno::RuntimeException, std::exception)
84 : {
85 0 : setBold( nWeight >= 700 );
86 0 : }
87 :
88 0 : sal_Bool SAL_CALL VbaNewFont::getBold() throw (uno::RuntimeException, std::exception)
89 : {
90 0 : uno::Any aAny = mxProps->getPropertyValue( "FontWeight" );
91 0 : return aAny.get< float >() > awt::FontWeight::NORMAL;
92 : }
93 :
94 0 : void SAL_CALL VbaNewFont::setBold( sal_Bool bBold ) throw (uno::RuntimeException, std::exception)
95 : {
96 0 : mxProps->setPropertyValue( "FontWeight" , uno::Any( bBold ? awt::FontWeight::BOLD : awt::FontWeight::NORMAL ) );
97 0 : }
98 :
99 0 : sal_Bool SAL_CALL VbaNewFont::getItalic() throw (uno::RuntimeException, std::exception)
100 : {
101 0 : uno::Any aAny = mxProps->getPropertyValue( "FontSlant" );
102 0 : return aAny.get< awt::FontSlant >() != awt::FontSlant_NONE;
103 : }
104 :
105 0 : void SAL_CALL VbaNewFont::setItalic( sal_Bool bItalic ) throw (uno::RuntimeException, std::exception)
106 : {
107 0 : mxProps->setPropertyValue( "FontSlant" , uno::Any( bItalic ? awt::FontSlant_ITALIC : awt::FontSlant_NONE ) );
108 0 : }
109 :
110 0 : sal_Bool SAL_CALL VbaNewFont::getUnderline() throw (uno::RuntimeException, std::exception)
111 : {
112 0 : uno::Any aAny = mxProps->getPropertyValue("FontUnderline" );
113 0 : return aAny.get< sal_Int16 >() != awt::FontUnderline::NONE;
114 : }
115 :
116 0 : void SAL_CALL VbaNewFont::setUnderline( sal_Bool bUnderline ) throw (uno::RuntimeException, std::exception)
117 : {
118 0 : mxProps->setPropertyValue("FontUnderline" , uno::Any( bUnderline ? awt::FontUnderline::SINGLE : awt::FontUnderline::NONE ) );
119 0 : }
120 :
121 0 : sal_Bool SAL_CALL VbaNewFont::getStrikethrough() throw (uno::RuntimeException, std::exception)
122 : {
123 0 : uno::Any aAny = mxProps->getPropertyValue( "FontStrikeout" );
124 0 : return aAny.get< sal_Int16 >() != awt::FontStrikeout::NONE;
125 : }
126 :
127 0 : void SAL_CALL VbaNewFont::setStrikethrough( sal_Bool bStrikethrough ) throw (uno::RuntimeException, std::exception)
128 : {
129 0 : mxProps->setPropertyValue( "FontStrikeout" ,uno::Any( bStrikethrough ? awt::FontStrikeout::SINGLE : awt::FontStrikeout::NONE ) );
130 0 : }
131 :
132 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|