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 : #ifndef INCLUDED_SW_SOURCE_UI_VBA_VBAPARAGRAPH_HXX
20 : #define INCLUDED_SW_SOURCE_UI_VBA_VBAPARAGRAPH_HXX
21 :
22 : #include <vbahelper/vbacollectionimpl.hxx>
23 : #include <ooo/vba/word/XParagraphs.hpp>
24 : #include <ooo/vba/word/XParagraph.hpp>
25 : #include <vbahelper/vbahelperinterface.hxx>
26 : #include <cppuhelper/implbase1.hxx>
27 : #include <com/sun/star/text/XTextRange.hpp>
28 : #include <com/sun/star/text/XTextDocument.hpp>
29 :
30 : typedef InheritedHelperInterfaceImpl1< ooo::vba::word::XParagraph > SwVbaParagraph_BASE;
31 :
32 : class SwVbaParagraph : public SwVbaParagraph_BASE
33 : {
34 : private:
35 : css::uno::Reference< css::text::XTextDocument > mxTextDocument;
36 : css::uno::Reference< css::text::XTextRange > mxTextRange;
37 :
38 : public:
39 : SwVbaParagraph( const css::uno::Reference< ooo::vba::XHelperInterface >& rParent, const css::uno::Reference< css::uno::XComponentContext >& rContext, const css::uno::Reference< css::text::XTextDocument >& xDocument, const css::uno::Reference< css::text::XTextRange >& xTextRange ) throw ( css::uno::RuntimeException );
40 : virtual ~SwVbaParagraph();
41 :
42 : // XParagraph
43 : virtual css::uno::Reference< ooo::vba::word::XRange > SAL_CALL getRange() throw ( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
44 : virtual css::uno::Any SAL_CALL getStyle() throw ( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
45 : virtual void SAL_CALL setStyle( const css::uno::Any& style ) throw ( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
46 :
47 : // XHelperInterface
48 : virtual OUString getServiceImplName() SAL_OVERRIDE;
49 : virtual css::uno::Sequence<OUString> getServiceNames() SAL_OVERRIDE;
50 : };
51 :
52 : /* class SwVbaParagraphs */
53 : typedef CollTestImplHelper< ooo::vba::word::XParagraphs > SwVbaParagraphs_BASE;
54 :
55 : class SwVbaParagraphs : public SwVbaParagraphs_BASE
56 : {
57 : private:
58 : css::uno::Reference< css::text::XTextDocument > mxTextDocument;
59 : public:
60 : SwVbaParagraphs( const css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XComponentContext > & xContext, const css::uno::Reference< css::text::XTextDocument >& xDocument ) throw (css::uno::RuntimeException);
61 0 : virtual ~SwVbaParagraphs() {}
62 :
63 : // XEnumerationAccess
64 : virtual css::uno::Type SAL_CALL getElementType() throw (css::uno::RuntimeException) SAL_OVERRIDE;
65 : virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createEnumeration() throw (css::uno::RuntimeException) SAL_OVERRIDE;
66 :
67 : // SwVbaParagraphs_BASE
68 : virtual css::uno::Any createCollectionObject( const css::uno::Any& aSource ) SAL_OVERRIDE;
69 : virtual OUString getServiceImplName() SAL_OVERRIDE;
70 : virtual css::uno::Sequence<OUString> getServiceNames() SAL_OVERRIDE;
71 : };
72 :
73 : #endif // INCLUDED_SW_SOURCE_UI_VBA_VBAPARAGRAPH_HXX
74 :
75 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|