xref: /aoo4110/main/sw/source/ui/vba/vbarange.hxx (revision b1cdbd2c)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 #ifndef SW_VBA_RANGE_HXX
24 #define SW_VBA_RANGE_HXX
25 
26 #include <ooo/vba/word/XRange.hpp>
27 #include <ooo/vba/word/XParagraphFormat.hpp>
28 #include <ooo/vba/word/XFont.hpp>
29 #include <vbahelper/vbahelperinterface.hxx>
30 #include <cppuhelper/implbase1.hxx>
31 #include <com/sun/star/text/XTextRange.hpp>
32 #include <com/sun/star/text/XTextDocument.hpp>
33 #include <ooo/vba/word/XStyle.hpp>
34 
35 typedef InheritedHelperInterfaceImpl1< ooo::vba::word::XRange > SwVbaRange_BASE;
36 
37 class SwVbaRange : public SwVbaRange_BASE
38 {
39 private:
40     css::uno::Reference< css::text::XTextDocument > mxTextDocument;
41     css::uno::Reference< css::text::XTextCursor > mxTextCursor;
42     css::uno::Reference< css::text::XText > mxText;
43     sal_Bool mbMaySpanEndOfDocument;
44 
45 private:
46     void initialize( const css::uno::Reference< css::text::XTextRange >& rStart, const css::uno::Reference< css::text::XTextRange >& rEnd ) throw (css::uno::RuntimeException);
47 public:
48 	SwVbaRange( const css::uno::Reference< ooo::vba::XHelperInterface >& rParent, const css::uno::Reference< css::uno::XComponentContext >& rContext, const css::uno::Reference< css::text::XTextDocument >& rTextDocument, const css::uno::Reference< css::text::XTextRange >& rStart, sal_Bool _bMaySpanEndOfDocument = sal_False ) throw (css::uno::RuntimeException);
49 	SwVbaRange( const css::uno::Reference< ooo::vba::XHelperInterface >& rParent, const css::uno::Reference< css::uno::XComponentContext >& rContext, const css::uno::Reference< css::text::XTextDocument >& rTextDocument, const css::uno::Reference< css::text::XTextRange >& rStart, const css::uno::Reference< css::text::XTextRange >& rEnd, sal_Bool _bMaySpanEndOfDocument = sal_False ) throw (css::uno::RuntimeException);
50 	SwVbaRange( const css::uno::Reference< ooo::vba::XHelperInterface >& rParent, const css::uno::Reference< css::uno::XComponentContext >& rContext, const css::uno::Reference< css::text::XTextDocument >& rTextDocument, const css::uno::Reference< css::text::XTextRange >& rStart, const css::uno::Reference< css::text::XTextRange >& rEnd, const css::uno::Reference< css::text::XText >& rText, sal_Bool _bMaySpanEndOfDocument = sal_False ) throw (css::uno::RuntimeException);
51 	virtual ~SwVbaRange();
getDocument()52    css::uno::Reference< css::text::XTextDocument > getDocument() { return mxTextDocument; }
53 
54     virtual css::uno::Reference< css::text::XTextRange > SAL_CALL getXTextRange() throw (css::uno::RuntimeException);
55 #ifdef TOMORROW
56     void setXTextRange( const css::uno::Reference< css::text::XTextRange >& xRange ) throw (css::uno::RuntimeException);
57 #endif
getXText()58     css::uno::Reference< css::text::XText > getXText() { return mxText; }
setXTextCursor(const css::uno::Reference<css::text::XTextCursor> & xTextCursor)59     void setXTextCursor( const css::uno::Reference< css::text::XTextCursor >& xTextCursor ) { mxTextCursor = xTextCursor; }
60 
61 	// Attribute
62     virtual rtl::OUString SAL_CALL getText() throw (css::uno::RuntimeException);
63     virtual void SAL_CALL setText( const rtl::OUString& rText ) throw (css::uno::RuntimeException);
64     virtual css::uno::Reference< ooo::vba::word::XParagraphFormat > SAL_CALL getParagraphFormat() throw (css::uno::RuntimeException);
65     virtual void SAL_CALL setParagraphFormat( const css::uno::Reference< ooo::vba::word::XParagraphFormat >& rParagraphFormat ) throw (css::uno::RuntimeException);
66     virtual css::uno::Reference< ooo::vba::word::XStyle > SAL_CALL getStyle() throw (css::uno::RuntimeException);
67     virtual void SAL_CALL setStyle( const css::uno::Reference< ooo::vba::word::XStyle >& _xStyle ) throw (css::uno::RuntimeException);
68 
69     virtual css::uno::Reference< ooo::vba::word::XFont > SAL_CALL getFont() throw (css::uno::RuntimeException);
70     // Methods
71     virtual void SAL_CALL InsertBreak( const css::uno::Any& _breakType ) throw (css::uno::RuntimeException);
72     virtual void SAL_CALL Select() throw (css::uno::RuntimeException);
73     virtual void SAL_CALL InsertParagraph() throw (css::uno::RuntimeException);
74     virtual void SAL_CALL InsertParagraphBefore() throw (css::uno::RuntimeException);
75     virtual void SAL_CALL InsertParagraphAfter() throw (css::uno::RuntimeException);
76     virtual ::sal_Int32 SAL_CALL getLanguageID() throw (css::uno::RuntimeException);
77     virtual void SAL_CALL setLanguageID( ::sal_Int32 _languageid ) throw (css::uno::RuntimeException);
78     virtual css::uno::Any SAL_CALL PageSetup() throw (css::uno::RuntimeException);
79     virtual ::sal_Int32 SAL_CALL getStart() throw (css::uno::RuntimeException);
80     virtual void SAL_CALL setStart( ::sal_Int32 _start ) throw (css::uno::RuntimeException);
81     virtual ::sal_Int32 SAL_CALL getEnd() throw (css::uno::RuntimeException);
82     virtual void SAL_CALL setEnd( ::sal_Int32 _end ) throw (css::uno::RuntimeException);
83 
84 	// XHelperInterface
85 	virtual rtl::OUString& getServiceImplName();
86 	virtual css::uno::Sequence<rtl::OUString> getServiceNames();
87 };
88 #endif /* SW_VBA_RANGE_HXX */
89