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