merge the formfield patch from ooo-build
[ooovba.git] / scripting / source / basprov / baslibnode.hxx
blobe42b6cd799494c1816c8b300c5b90660fee1d61e
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: baslibnode.hxx,v $
10 * $Revision: 1.8 $
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 ************************************************************************/
31 #ifndef SCRIPTING_BASLIBNODE_HXX
32 #define SCRIPTING_BASLIBNODE_HXX
34 #include <com/sun/star/beans/XPropertySet.hpp>
35 #include <com/sun/star/script/XLibraryContainer.hpp>
36 #include <com/sun/star/script/browse/XBrowseNode.hpp>
37 #include <com/sun/star/uno/XComponentContext.hpp>
38 #include <cppuhelper/implbase1.hxx>
40 class BasicManager;
43 //.........................................................................
44 namespace basprov
46 //.........................................................................
48 // ----------------------------------------------------
49 // class BasicLibraryNodeImpl
50 // ----------------------------------------------------
52 typedef ::cppu::WeakImplHelper1<
53 ::com::sun::star::script::browse::XBrowseNode > BasicLibraryNodeImpl_BASE;
56 class BasicLibraryNodeImpl : public BasicLibraryNodeImpl_BASE
58 private:
59 ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > m_xContext;
60 ::rtl::OUString m_sScriptingContext;
61 BasicManager* m_pBasicManager;
62 ::com::sun::star::uno::Reference< ::com::sun::star::script::XLibraryContainer > m_xLibContainer;
63 ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer > m_xLibrary;
64 ::rtl::OUString m_sLibName;
65 bool m_bIsAppScript;
67 public:
68 BasicLibraryNodeImpl( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& rxContext,
69 const ::rtl::OUString& sScriptingContext,
70 BasicManager* pBasicManager,
71 const ::com::sun::star::uno::Reference< ::com::sun::star::script::XLibraryContainer >& xLibContainer,
72 const ::rtl::OUString& sLibName, bool isAppScript=true );
73 virtual ~BasicLibraryNodeImpl();
75 // XBrowseNode
76 virtual ::rtl::OUString SAL_CALL getName( )
77 throw (::com::sun::star::uno::RuntimeException);
78 virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Reference< ::com::sun::star::script::browse::XBrowseNode > > SAL_CALL getChildNodes( )
79 throw (::com::sun::star::uno::RuntimeException);
80 virtual sal_Bool SAL_CALL hasChildNodes( )
81 throw (::com::sun::star::uno::RuntimeException);
82 virtual sal_Int16 SAL_CALL getType( )
83 throw (::com::sun::star::uno::RuntimeException);
86 //.........................................................................
87 } // namespace basprov
88 //.........................................................................
90 #endif // SCRIPTING_BASLIBNODE_HXX