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_DOCUMENTS_HXX 24 #define SW_VBA_DOCUMENTS_HXX 25 26 27 #include <vbahelper/vbacollectionimpl.hxx> 28 #include <ooo/vba/word/XDocuments.hpp> 29 #include <com/sun/star/container/XEnumerationAccess.hpp> 30 #include <vbahelper/vbadocumentsbase.hxx> 31 #include "wordvbahelper.hxx" 32 33 34 typedef cppu::ImplInheritanceHelper1< VbaDocumentsBase, ov::word::XDocuments > SwVbaDocuments_BASE; 35 36 class SwVbaDocuments : public SwVbaDocuments_BASE 37 { 38 public: 39 SwVbaDocuments( const css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XComponentContext >& xContext ); ~SwVbaDocuments()40 virtual ~SwVbaDocuments() {} 41 42 // XEnumerationAccess 43 virtual css::uno::Type SAL_CALL getElementType() throw (css::uno::RuntimeException); 44 virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createEnumeration() throw (css::uno::RuntimeException); 45 46 // SwVbaDocuments_BASE 47 virtual css::uno::Any createCollectionObject( const css::uno::Any& aSource ); 48 virtual rtl::OUString& getServiceImplName(); 49 virtual css::uno::Sequence<rtl::OUString> getServiceNames(); 50 51 // Methods 52 virtual css::uno::Any SAL_CALL Add( const css::uno::Any& Template, const css::uno::Any& NewTemplate, const css::uno::Any& DocumentType, const css::uno::Any& Visible ) throw (css::uno::RuntimeException); 53 virtual css::uno::Any SAL_CALL Open( const ::rtl::OUString& Filename, const css::uno::Any& ConfirmConversions, const css::uno::Any& ReadOnly, const css::uno::Any& AddToRecentFiles, const css::uno::Any& PasswordDocument, const css::uno::Any& PasswordTemplate, const css::uno::Any& Revert, const css::uno::Any& WritePasswordDocument, const css::uno::Any& WritePasswordTemplate, const css::uno::Any& Format, const css::uno::Any& Encoding, const css::uno::Any& Visible, const css::uno::Any& OpenAndRepair, const css::uno::Any& DocumentDirection, const css::uno::Any& NoEncodingDialog, const css::uno::Any& XMLTransform ) throw (css::uno::RuntimeException); 54 virtual void SAL_CALL Close( const css::uno::Any& SaveChanges, const css::uno::Any& OriginalFormat, const css::uno::Any& RouteDocument ) throw (css::uno::RuntimeException); 55 }; 56 57 #endif /* SW_VBA_DOCUMENTS_HXX */ 58