/************************************************************************* * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: linkeddocuments.hxx,v $ * * $Revision: 1.13 $ * * last change: $Author: hr $ $Date: 2006-06-20 03:18:03 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. * * * GNU Lesser General Public License Version 2.1 * ============================================= * Copyright 2005 by Sun Microsystems, Inc. * 901 San Antonio Road, Palo Alto, CA 94303, USA * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * ************************************************************************/ #ifndef _DBAUI_LINKEDDOCUMENTS_HXX_ #define _DBAUI_LINKEDDOCUMENTS_HXX_ #ifndef _COM_SUN_STAR_CONTAINER_XNAMEACCESS_HPP_ #include #endif #ifndef _COM_SUN_STAR_LANG_XMULTISERVICEFACTORY_HPP_ #include #endif #ifndef _COM_SUN_STAR_LANG_XCOMPONENT_HPP_ #include #endif #ifndef _COM_SUN_STAR_BEANS_XPROPERTYSET_HPP_ #include #endif #ifndef _COM_SUN_STAR_SDBC_XCONNECTION_HPP_ #include #endif #ifndef _COM_SUN_STAR_FRAME_XCOMPONENTLOADER_HPP_ #include #endif #ifndef _COM_SUN_STAR_UCB_XCONTENT_HPP_ #include #endif #ifndef _LINK_HXX #include #endif #ifndef _STRING_HXX #include #endif class Window; //...................................................................... namespace dbaui { //...................................................................... //================================================================== //= OLinkedDocumentsAccess //================================================================== class OLinkedDocumentsAccess { protected: ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > m_xORB; ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess > m_xDocumentContainer; ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection> m_xConnection; Window* m_pDialogParent; String m_sCurrentlyEditing; ::rtl::OUString m_sDataSourceName; public: OLinkedDocumentsAccess( Window* _pDialogParent ,const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rxORB ,const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess >& _rxContainer ,const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection>& _xConnection ,const ::rtl::OUString& _sDataSourceName ); ~OLinkedDocumentsAccess(); enum EOpenMode { OPEN_NORMAL, OPEN_DESIGN, OPEN_FORMAIL }; sal_Bool isConnected() const { return m_xConnection.is(); } ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent> open(const ::rtl::OUString& _rLinkName ,::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent>& _xDefinition , EOpenMode _eOpenMode = OPEN_NORMAL); ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent> newForm(sal_Int32 _nNewFormId ,::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent>& _xDefinition); ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent> newWithPilot( const char* _pWizardService ,::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent>& _xDefinition ,const sal_Int32 _nCommandType = -1 ,const ::rtl::OUString& _rObjectName = ::rtl::OUString() ); ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent> newFormWithPilot( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent>& _xDefinition ,const sal_Int32 _nCommandType = -1 ,const ::rtl::OUString& _rObjectName = ::rtl::OUString() ); ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent> newReportWithPilot( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent>& _xDefinition ,const sal_Int32 _nCommandType = -1 ,const ::rtl::OUString& _rObjectName = ::rtl::OUString() ); void newQueryWithPilot( const sal_Int32 _nCommandType = -1 ,const ::rtl::OUString& _rObjectName = ::rtl::OUString() ); void newTableWithPilot(); enum RESULT { ERROR, SUCCESS, CANCEL }; ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent> implOpen(const ::rtl::OUString& _rLinkName ,::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent>& _xDefinition , EOpenMode _eOpenMode); void implDrop(const ::rtl::OUString& _rLinkName); }; //...................................................................... } // namespace dbaui //...................................................................... #endif // _DBAUI_LINKEDDOCUMENTS_HXX_