Update ooo320-m1
[ooovba.git] / sc / source / ui / vba / vbaworkbooks.hxx
blobb3937d7a955fb7459f30149f3eca54fd508a5218
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: vbaworkbooks.hxx,v $
10 * $Revision: 1.4 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef SC_VBA_WORKBOOKS_HXX
31 #define SC_VBA_WORKBOOKS_HXX
34 #include <vbahelper/vbacollectionimpl.hxx>
35 #include <ooo/vba/excel/XWorkbooks.hpp>
36 #include <com/sun/star/container/XEnumerationAccess.hpp>
37 #include <vbahelper/vbadocumentsbase.hxx>
38 #include "excelvbahelper.hxx"
41 class ScModelObj;
43 typedef cppu::ImplInheritanceHelper1< VbaDocumentsBase, ov::excel::XWorkbooks > ScVbaWorkbooks_BASE;
45 class ScVbaWorkbooks : public ScVbaWorkbooks_BASE
47 private:
48 rtl::OUString getFileFilterType( const rtl::OUString& rString );
49 bool isTextFile( const rtl::OUString& rString );
50 bool isSpreadSheetFile( const rtl::OUString& rString );
51 static sal_Int16& getCurrentDelim(){ static sal_Int16 nDelim = 44; return nDelim; }
52 public:
53 ScVbaWorkbooks( const css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XComponentContext >& xContext );
54 virtual ~ScVbaWorkbooks() {}
56 // XEnumerationAccess
57 virtual css::uno::Type SAL_CALL getElementType() throw (css::uno::RuntimeException);
58 virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createEnumeration() throw (css::uno::RuntimeException);
60 // ScVbaWorkbooks_BASE
61 virtual css::uno::Any createCollectionObject( const css::uno::Any& aSource );
62 virtual rtl::OUString& getServiceImplName();
63 virtual css::uno::Sequence<rtl::OUString> getServiceNames();
65 // XWorkbooks
66 virtual css::uno::Any SAL_CALL Add() throw (css::uno::RuntimeException);
67 virtual void SAL_CALL Close( ) throw (css::uno::RuntimeException);
68 virtual css::uno::Any SAL_CALL Open( const ::rtl::OUString& Filename, const css::uno::Any& UpdateLinks, const css::uno::Any& ReadOnly, const css::uno::Any& Format, const css::uno::Any& Password, const css::uno::Any& WriteResPassword, const css::uno::Any& IgnoreReadOnlyRecommended, const css::uno::Any& Origin, const css::uno::Any& Delimiter, const css::uno::Any& Editable, const css::uno::Any& Notify, const css::uno::Any& Converter, const css::uno::Any& AddToMru ) throw (css::uno::RuntimeException);
72 #endif /* SC_VBA_WORKBOOKS_HXX */