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_WORD_VBA_HELPER_HXX 24 #define SW_WORD_VBA_HELPER_HXX 25 26 #include <vbahelper/vbahelper.hxx> 27 #include <com/sun/star/text/XText.hpp> 28 #include <com/sun/star/text/XTextViewCursor.hpp> 29 #include <com/sun/star/text/XPageCursor.hpp> 30 #include <com/sun/star/style/XStyle.hpp> 31 32 class SwDocShell; 33 class SwView; 34 namespace ooo 35 { 36 namespace vba 37 { 38 namespace word 39 { 40 //css::uno::Reference< css::frame::XModel > getCurrentDocument() throw (css::uno::RuntimeException); 41 SwDocShell* getDocShell( const css::uno::Reference< css::frame::XModel>& xModel ); 42 SwView* getView( const css::uno::Reference< css::frame::XModel>& xModel ); 43 css::uno::Reference< css::text::XTextViewCursor > getXTextViewCursor( const css::uno::Reference< css::frame::XModel >& xModel ) throw (css::uno::RuntimeException); 44 css::uno::Reference< css::style::XStyle > getCurrentPageStyle( const css::uno::Reference< css::frame::XModel >& xModel ) throw (css::uno::RuntimeException); 45 sal_Int32 getPageCount( const css::uno::Reference< css::frame::XModel>& xModel ) throw (css::uno::RuntimeException); 46 47 } // word 48 } // vba 49 } // ooo 50 #endif 51