1 /************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 28 #ifndef VBAHELPER_MSFORMS_VBANEWFONT_HXX 29 #define VBAHELPER_MSFORMS_VBANEWFONT_HXX 30 31 #include <ooo/vba/msforms/XNewFont.hpp> 32 #include <vbahelper/vbahelperinterface.hxx> 33 34 // ============================================================================ 35 36 typedef InheritedHelperInterfaceImpl1< ov::msforms::XNewFont > VbaNewFont_BASE; 37 38 class VbaNewFont : public VbaNewFont_BASE 39 { 40 public: 41 VbaNewFont( 42 const css::uno::Reference< ov::XHelperInterface >& rxParent, 43 const css::uno::Reference< css::uno::XComponentContext >& rxContext, 44 const css::uno::Reference< css::beans::XPropertySet >& rxModelProps ) throw (css::uno::RuntimeException); 45 46 // XNewFont attributes 47 virtual ::rtl::OUString SAL_CALL getName() throw (css::uno::RuntimeException); 48 virtual void SAL_CALL setName( const ::rtl::OUString& rName ) throw (css::uno::RuntimeException); 49 virtual double SAL_CALL getSize() throw (css::uno::RuntimeException); 50 virtual void SAL_CALL setSize( double fSize ) throw (css::uno::RuntimeException); 51 virtual sal_Int16 SAL_CALL getCharset() throw (css::uno::RuntimeException); 52 virtual void SAL_CALL setCharset( sal_Int16 nCharset ) throw (css::uno::RuntimeException); 53 virtual sal_Int16 SAL_CALL getWeight() throw (css::uno::RuntimeException); 54 virtual void SAL_CALL setWeight( sal_Int16 nWeight ) throw (css::uno::RuntimeException); 55 virtual sal_Bool SAL_CALL getBold() throw (css::uno::RuntimeException); 56 virtual void SAL_CALL setBold( sal_Bool bBold ) throw (css::uno::RuntimeException); 57 virtual sal_Bool SAL_CALL getItalic() throw (css::uno::RuntimeException); 58 virtual void SAL_CALL setItalic( sal_Bool bItalic ) throw (css::uno::RuntimeException); 59 virtual sal_Bool SAL_CALL getUnderline() throw (css::uno::RuntimeException); 60 virtual void SAL_CALL setUnderline( sal_Bool bUnderline ) throw (css::uno::RuntimeException); 61 virtual sal_Bool SAL_CALL getStrikethrough() throw (css::uno::RuntimeException); 62 virtual void SAL_CALL setStrikethrough( sal_Bool bStrikethrough ) throw (css::uno::RuntimeException); 63 64 // XHelperInterface 65 VBAHELPER_DECL_XHELPERINTERFACE 66 67 private: 68 css::uno::Reference< css::beans::XPropertySet > mxProps; 69 }; 70 71 // ============================================================================ 72 73 #endif 74