merge the formfield patch from ooo-build
[ooovba.git] / scripting / source / basprov / basmodnode.hxx
blobab4ab3714b208a708ccf8c07f64fe889b9e54946
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: basmodnode.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_BASMODNODE_HXX
32 #define SCRIPTING_BASMODNODE_HXX
34 #include <com/sun/star/beans/XPropertySet.hpp>
35 #include <com/sun/star/script/browse/XBrowseNode.hpp>
36 #include <com/sun/star/uno/XComponentContext.hpp>
37 #include <cppuhelper/implbase1.hxx>
39 class SbModule;
42 //.........................................................................
43 namespace basprov
45 //.........................................................................
47 // ----------------------------------------------------
48 // class BasicModuleNodeImpl
49 // ----------------------------------------------------
51 typedef ::cppu::WeakImplHelper1<
52 ::com::sun::star::script::browse::XBrowseNode > BasicModuleNodeImpl_BASE;
55 class BasicModuleNodeImpl : public BasicModuleNodeImpl_BASE
57 private:
58 ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > m_xContext;
59 ::rtl::OUString m_sScriptingContext;
60 SbModule* m_pModule;
61 bool m_bIsAppScript;
63 public:
64 BasicModuleNodeImpl( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& rxContext,
65 const ::rtl::OUString& sScriptingContext,
66 SbModule* pModule, bool isAppScript = true );
67 virtual ~BasicModuleNodeImpl();
69 // XBrowseNode
70 virtual ::rtl::OUString SAL_CALL getName( )
71 throw (::com::sun::star::uno::RuntimeException);
72 virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Reference< ::com::sun::star::script::browse::XBrowseNode > > SAL_CALL getChildNodes( )
73 throw (::com::sun::star::uno::RuntimeException);
74 virtual sal_Bool SAL_CALL hasChildNodes( )
75 throw (::com::sun::star::uno::RuntimeException);
76 virtual sal_Int16 SAL_CALL getType( )
77 throw (::com::sun::star::uno::RuntimeException);
80 //.........................................................................
81 } // namespace basprov
82 //.........................................................................
84 #endif // SCRIPTING_BASMODNODE_HXX