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 #include "vbapages.hxx" 24 25 using namespace ::ooo::vba; 26 using namespace ::com::sun::star; 27 28 ScVbaPages::ScVbaPages( const uno::Reference< XHelperInterface >& xParent, const uno::Reference< uno::XComponentContext >& xContext, const uno::Reference< container::XIndexAccess >& xPages ) throw( lang::IllegalArgumentException ) : ScVbaPages_BASE( xParent, xContext, xPages ) 29 { 30 } 31 32 uno::Type SAL_CALL 33 ScVbaPages::getElementType() throw (uno::RuntimeException) 34 { 35 // return msforms::XPage::static_type(0); 36 return uno::XInterface::static_type(0); 37 } 38 39 uno::Any 40 ScVbaPages::createCollectionObject( const css::uno::Any& aSource ) 41 { 42 return aSource; 43 } 44 45 rtl::OUString& 46 ScVbaPages::getServiceImplName() 47 { 48 static rtl::OUString sImplName( RTL_CONSTASCII_USTRINGPARAM("ScVbaPages") ); 49 return sImplName; 50 } 51 52 uno::Reference< container::XEnumeration > SAL_CALL 53 ScVbaPages::createEnumeration() throw (uno::RuntimeException) 54 { 55 return uno::Reference< container::XEnumeration >(); 56 } 57 58 uno::Sequence< rtl::OUString > 59 ScVbaPages::getServiceNames() 60 { 61 static uno::Sequence< rtl::OUString > aServiceNames; 62 if ( aServiceNames.getLength() == 0 ) 63 { 64 aServiceNames.realloc( 1 ); 65 aServiceNames[ 0 ] = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("ooo.vba.msform.Pages" ) ); 66 } 67 return aServiceNames; 68 } 69