LibreOffice Module sw (master) 1
vbafont.hxx
Go to the documentation of this file.
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#pragma once
20
22#include <ooo/vba/word/XFont.hpp>
24
25typedef cppu::ImplInheritanceHelper< VbaFontBase, ov::word::XFont > SwVbaFont_BASE;
26
28{
29public:
31 SwVbaFont( const css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XComponentContext >& xContext, const css::uno::Reference< css::container::XIndexAccess >& xPalette, css::uno::Reference< css::beans::XPropertySet > const & xPropertySet );
32
33 // Attributes
34 virtual css::uno::Any SAL_CALL getColorIndex() override;
35 virtual css::uno::Any SAL_CALL getUnderline() override;
36 virtual void SAL_CALL setUnderline( const css::uno::Any& _underline ) override;
37 virtual css::uno::Any SAL_CALL getSubscript() override;
38 virtual css::uno::Any SAL_CALL getSuperscript() override;
39
40 virtual css::uno::Any SAL_CALL getBold() override;
41 virtual css::uno::Any SAL_CALL getItalic() override;
42 virtual css::uno::Any SAL_CALL getStrikethrough() override;
43 virtual css::uno::Any SAL_CALL getShadow() override;
44 // XHelperInterface
45 virtual OUString getServiceImplName() override;
46 virtual css::uno::Sequence<OUString> getServiceNames() override;
47};
48
49/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual css::uno::Any SAL_CALL getBold() override
Definition: vbafont.cxx:186
virtual void SAL_CALL setUnderline(const css::uno::Any &_underline) override
Definition: vbafont.cxx:128
virtual css::uno::Any SAL_CALL getColorIndex() override
Definition: vbafont.cxx:146
virtual css::uno::Any SAL_CALL getUnderline() override
Definition: vbafont.cxx:120
virtual css::uno::Any SAL_CALL getSubscript() override
Definition: vbafont.cxx:166
virtual css::uno::Any SAL_CALL getStrikethrough() override
Definition: vbafont.cxx:206
virtual OUString getServiceImplName() override
Definition: vbafont.cxx:140
virtual css::uno::Any SAL_CALL getShadow() override
Definition: vbafont.cxx:216
virtual css::uno::Any SAL_CALL getItalic() override
Definition: vbafont.cxx:196
SwVbaFont(const css::uno::Reference< ov::XHelperInterface > &xParent, const css::uno::Reference< css::uno::XComponentContext > &xContext, const css::uno::Reference< css::container::XIndexAccess > &xPalette, css::uno::Reference< css::beans::XPropertySet > const &xPropertySet)
Definition: vbafont.cxx:114
virtual css::uno::Sequence< OUString > getServiceNames() override
Definition: vbafont.cxx:226
virtual css::uno::Any SAL_CALL getSuperscript() override
Definition: vbafont.cxx:176
cppu::ImplInheritanceHelper< VbaFontBase, ov::word::XFont > SwVbaFont_BASE
Definition: vbafont.hxx:25