xref: /aoo4110/main/sw/source/ui/vba/vbaselection.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_SELECTION_HXX
24 #define SW_VBA_SELECTION_HXX
25 
26 #include <ooo/vba/word/XSelection.hpp>
27 #include <ooo/vba/word/XRange.hpp>
28 #include <vbahelper/vbahelperinterface.hxx>
29 #include <com/sun/star/text/XTextViewCursor.hpp>
30 #include <ooo/vba/word/XParagraphFormat.hpp>
31 #include <ooo/vba/word/XFind.hpp>
32 #include <ooo/vba/word/XStyle.hpp>
33 #include <ooo/vba/word/XFont.hpp>
34 #include <ooo/vba/word/XHeaderFooter.hpp>
35 
36 typedef InheritedHelperInterfaceImpl1< ooo::vba::word::XSelection > SwVbaSelection_BASE;
37 
38 class SwVbaSelection : public SwVbaSelection_BASE
39 {
40 private:
41     css::uno::Reference< css::frame::XModel > mxModel;
42     css::uno::Reference< css::text::XTextViewCursor > mxTextViewCursor;
43     css::uno::Reference< ooo::vba::word::XRange > mxRange;
44 
45     enum E_DIRECTION
46     {
47         MOVE_LEFT = 1,
48         MOVE_RIGHT,
49         MOVE_UP,
50         MOVE_DOWN
51     };
52 
53 private:
54     void NextCell( sal_Int32 nCount, E_DIRECTION eDirection ) throw ( css::uno::RuntimeException );
55     css::uno::Reference< css::text::XTextRange > GetSelectedRange() throw ( css::uno::RuntimeException );
56 
57 public:
58 	SwVbaSelection( const css::uno::Reference< ooo::vba::XHelperInterface >& rParent, const css::uno::Reference< css::uno::XComponentContext >& rContext, const css::uno::Reference< css::frame::XModel >& rModel ) throw ( css::uno::RuntimeException );
59 	virtual ~SwVbaSelection();
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::XRange > SAL_CALL getRange() throw (css::uno::RuntimeException);
65     virtual void SAL_CALL HomeKey( const css::uno::Any& _unit, const css::uno::Any& _extend ) throw (css::uno::RuntimeException);
66     virtual void SAL_CALL EndKey( const css::uno::Any& _unit, const css::uno::Any& _extend ) throw (css::uno::RuntimeException);
67     virtual void SAL_CALL TypeText( const rtl::OUString& rText ) throw (css::uno::RuntimeException);
68     virtual void SAL_CALL Delete( const css::uno::Any& _unit, const css::uno::Any& _count ) throw (css::uno::RuntimeException);
69     virtual void SAL_CALL MoveRight( const css::uno::Any& _unit, const css::uno::Any& _count, const css::uno::Any& _extend ) throw (css::uno::RuntimeException);
70     virtual void SAL_CALL MoveLeft( const css::uno::Any& _unit, const css::uno::Any& _count, const css::uno::Any& _extend ) throw (css::uno::RuntimeException);
71     virtual void SAL_CALL MoveDown( const css::uno::Any& _unit, const css::uno::Any& _count, const css::uno::Any& _extend ) throw (css::uno::RuntimeException);
72     virtual void SAL_CALL TypeParagraph() 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 css::uno::Reference< ooo::vba::word::XParagraphFormat > SAL_CALL getParagraphFormat() throw (css::uno::RuntimeException);
77     virtual void SAL_CALL setParagraphFormat( const css::uno::Reference< ooo::vba::word::XParagraphFormat >& rParagraphFormat ) throw (css::uno::RuntimeException);
78     virtual css::uno::Reference< ooo::vba::word::XFind > SAL_CALL getFind() throw (css::uno::RuntimeException);
79     virtual css::uno::Reference< ooo::vba::word::XStyle > SAL_CALL getStyle() throw (css::uno::RuntimeException);
80     virtual void SAL_CALL setStyle( const css::uno::Reference< ooo::vba::word::XStyle >& _xStyle ) throw (css::uno::RuntimeException);
81     virtual css::uno::Reference< ooo::vba::word::XFont > SAL_CALL getFont() throw (css::uno::RuntimeException);
82     virtual void SAL_CALL TypeBackspace() throw (css::uno::RuntimeException);
83     virtual css::uno::Reference< ooo::vba::word::XRange > SAL_CALL GoTo( const css::uno::Any& _what, const css::uno::Any& _which, const css::uno::Any& _count, const css::uno::Any& _name ) throw (css::uno::RuntimeException);
84     virtual ::sal_Int32 SAL_CALL getLanguageID( ) throw (css::uno::RuntimeException);
85     virtual void SAL_CALL setLanguageID( ::sal_Int32 _languageid ) throw (css::uno::RuntimeException);
86     virtual css::uno::Any SAL_CALL Information( sal_Int32 _type ) throw (css::uno::RuntimeException);
87     virtual void SAL_CALL InsertBreak( const css::uno::Any& _breakType ) throw (css::uno::RuntimeException);
88     virtual css::uno::Any SAL_CALL Tables( const css::uno::Any& aIndex ) throw (css::uno::RuntimeException);
89     virtual css::uno::Any SAL_CALL Fields( const css::uno::Any& aIndex ) throw (css::uno::RuntimeException);
90     virtual css::uno::Reference< ooo::vba::word::XHeaderFooter > SAL_CALL getHeaderFooter() throw (css::uno::RuntimeException);
91     virtual css::uno::Any SAL_CALL ShapeRange( ) throw (css::uno::RuntimeException);
92     virtual ::sal_Int32 SAL_CALL getStart() throw (css::uno::RuntimeException);
93     virtual void SAL_CALL setStart( ::sal_Int32 _start ) throw (css::uno::RuntimeException);
94     virtual ::sal_Int32 SAL_CALL getEnd() throw (css::uno::RuntimeException);
95     virtual void SAL_CALL setEnd( ::sal_Int32 _end ) throw (css::uno::RuntimeException);
96 
97 	// XHelperInterface
98 	virtual rtl::OUString& getServiceImplName();
99 	virtual css::uno::Sequence<rtl::OUString> getServiceNames();
100 };
101 #endif /* SW_VBA_SELECTION_HXX */
102