summaryrefslogtreecommitdiff
path: root/embeddedobj/source/inc/docholder.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'embeddedobj/source/inc/docholder.hxx')
-rw-r--r--embeddedobj/source/inc/docholder.hxx213
1 files changed, 213 insertions, 0 deletions
diff --git a/embeddedobj/source/inc/docholder.hxx b/embeddedobj/source/inc/docholder.hxx
new file mode 100644
index 000000000000..c8df82fb1534
--- /dev/null
+++ b/embeddedobj/source/inc/docholder.hxx
@@ -0,0 +1,213 @@
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org 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 version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+#ifndef _DOCHOLDER_HXX_
+#define _DOCHOLDER_HXX_
+
+#include <com/sun/star/util/XCloseListener.hpp>
+#include <com/sun/star/frame/XTerminateListener.hpp>
+#include <com/sun/star/util/XModifyListener.hpp>
+#include <com/sun/star/util/XCloseable.hpp>
+#include <com/sun/star/document/XEventListener.hpp>
+#include <com/sun/star/frame/XFrame.hpp>
+#include <com/sun/star/frame/XDispatchProviderInterceptor.hpp>
+#include <com/sun/star/frame/XBorderResizeListener.hpp>
+#ifndef _COM_SUN_STAR_FRAME_XBORDERWIDTHS_HPP_
+#include <com/sun/star/frame/BorderWidths.hpp>
+#endif
+#include <com/sun/star/awt/XWindowPeer.hpp>
+#include <com/sun/star/awt/Size.hpp>
+#include <com/sun/star/awt/Rectangle.hpp>
+#include <com/sun/star/embed/XHatchWindowController.hpp>
+#include <com/sun/star/frame/XLayoutManager.hpp>
+#include <cppuhelper/implbase6.hxx>
+
+class OCommonEmbeddedObject;
+class Interceptor;
+
+class DocumentHolder :
+ public ::cppu::WeakImplHelper6<
+ ::com::sun::star::util::XCloseListener,
+ ::com::sun::star::frame::XTerminateListener,
+ ::com::sun::star::util::XModifyListener,
+ ::com::sun::star::document::XEventListener,
+ ::com::sun::star::frame::XBorderResizeListener,
+ ::com::sun::star::embed::XHatchWindowController >
+{
+private:
+
+ OCommonEmbeddedObject* m_pEmbedObj;
+
+ Interceptor* m_pInterceptor;
+ ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatchProviderInterceptor > m_xOutplaceInterceptor;
+
+ ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > m_xFactory;
+
+ ::com::sun::star::uno::Reference< ::com::sun::star::util::XCloseable > m_xComponent;
+
+ ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame > m_xFrame;
+ ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindow > m_xOwnWindow; // set for inplace objects
+ ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindow > m_xHatchWindow; // set for inplace objects
+
+ ::com::sun::star::awt::Rectangle m_aObjRect;
+ ::com::sun::star::frame::BorderWidths m_aBorderWidths;
+
+ ::rtl::OUString m_aContainerName;
+ ::rtl::OUString m_aDocumentNamePart;
+
+ sal_Bool m_bReadOnly;
+
+ sal_Bool m_bWaitForClose;
+ sal_Bool m_bAllowClosing;
+ sal_Bool m_bDesktopTerminated;
+
+ sal_Int32 m_nNoBorderResizeReact;
+ sal_Int32 m_nNoResizeReact;
+
+ ::com::sun::star::uno::Reference< ::com::sun::star::ui::XDockingAreaAcceptor > m_xCachedDocAreaAcc;
+
+ ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > m_aOutplaceFrameProps;
+
+
+ ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame > GetDocFrame();
+ sal_Bool LoadDocToFrame( sal_Bool );
+
+ ::com::sun::star::awt::Rectangle CalculateBorderedArea( const ::com::sun::star::awt::Rectangle& aRect );
+ ::com::sun::star::awt::Rectangle AddBorderToArea( const ::com::sun::star::awt::Rectangle& aRect );
+
+ void ResizeWindows_Impl( const ::com::sun::star::awt::Rectangle& aHatchRect );
+
+ ::com::sun::star::uno::Reference< ::com::sun::star::container::XIndexAccess > RetrieveOwnMenu_Impl();
+ sal_Bool MergeMenues_Impl(
+ const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XLayoutManager >& xOwnLM,
+ const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XLayoutManager >& xContLM,
+ const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatchProvider >& xContDisp,
+ const ::rtl::OUString& aContModuleName );
+
+public:
+
+ static void FindConnectPoints(
+ const ::com::sun::star::uno::Reference< ::com::sun::star::container::XIndexAccess >& xMenu,
+ sal_Int32 nConnectPoints[2] )
+ throw ( ::com::sun::star::uno::Exception );
+
+ static ::com::sun::star::uno::Reference< ::com::sun::star::container::XIndexAccess > MergeMenuesForInplace(
+ const ::com::sun::star::uno::Reference< ::com::sun::star::container::XIndexAccess >& xContMenu,
+ const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatchProvider >& xContDisp,
+ const ::rtl::OUString& aContModuleName,
+ const ::com::sun::star::uno::Reference< ::com::sun::star::container::XIndexAccess >& xOwnMenu,
+ const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatchProvider >& xOwnDisp )
+ throw ( ::com::sun::star::uno::Exception );
+
+
+ DocumentHolder( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& xFactory,
+ OCommonEmbeddedObject* pEmbObj );
+ ~DocumentHolder();
+
+ OCommonEmbeddedObject* GetEmbedObject() { return m_pEmbedObj; }
+
+ void SetComponent( const ::com::sun::star::uno::Reference< ::com::sun::star::util::XCloseable >& xDoc, sal_Bool bReadOnly );
+ void ResizeHatchWindow();
+ void LockOffice();
+ void FreeOffice();
+
+ void CloseDocument( sal_Bool bDeliverOwnership, sal_Bool bWaitForClose );
+ void CloseFrame();
+
+ rtl::OUString GetTitle() const
+ {
+ return m_aContainerName + ::rtl::OUString::createFromAscii( " - " ) + m_aDocumentNamePart;
+ }
+
+ rtl::OUString GetContainerName() const { return m_aContainerName; }
+
+ void SetOutplaceFrameProperties( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > aProps )
+ { m_aOutplaceFrameProps = aProps; }
+
+ void PlaceFrame( const ::com::sun::star::awt::Rectangle& aNewRect );
+
+ sal_Bool SetFrameLMVisibility( const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& xFrame,
+ sal_Bool bVisible );
+
+ sal_Bool ShowInplace( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer >& xParent,
+ const ::com::sun::star::awt::Rectangle& aRectangleToShow,
+ const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatchProvider >& xContainerDP );
+
+ sal_Bool ShowUI(
+ const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XLayoutManager >& xContainerLM,
+ const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatchProvider >& xContainerDP,
+ const ::rtl::OUString& aContModuleName );
+ sal_Bool HideUI(
+ const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XLayoutManager >& xContainerLM );
+
+ void Show();
+
+ // sal_Bool SetVisArea( sal_Int64 nAspect, const ::com::sun::star::awt::Rectangle& aRect );
+ // sal_Bool GetVisArea( sal_Int64 nAspect, ::com::sun::star::awt::Rectangle *pRect );
+ sal_Bool SetExtent( sal_Int64 nAspect, const ::com::sun::star::awt::Size& aSize );
+ sal_Bool GetExtent( sal_Int64 nAspect, ::com::sun::star::awt::Size *pSize );
+
+ sal_Int32 GetMapUnit( sal_Int64 nAspect );
+
+ void SetOutplaceDispatchInterceptor(
+ const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatchProviderInterceptor >&
+ xOutplaceInterceptor )
+ {
+ m_xOutplaceInterceptor = xOutplaceInterceptor;
+ }
+
+ ::com::sun::star::uno::Reference< ::com::sun::star::util::XCloseable > GetComponent() { return m_xComponent; }
+
+// XEventListener
+ virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw (::com::sun::star::uno::RuntimeException);
+
+// XCloseListener
+ virtual void SAL_CALL queryClosing( const ::com::sun::star::lang::EventObject& Source, sal_Bool GetsOwnership ) throw (::com::sun::star::util::CloseVetoException, ::com::sun::star::uno::RuntimeException);
+ virtual void SAL_CALL notifyClosing( const ::com::sun::star::lang::EventObject& Source ) throw (::com::sun::star::uno::RuntimeException);
+
+// XTerminateListener
+ virtual void SAL_CALL queryTermination( const ::com::sun::star::lang::EventObject& Event ) throw (::com::sun::star::frame::TerminationVetoException, ::com::sun::star::uno::RuntimeException);
+ virtual void SAL_CALL notifyTermination( const ::com::sun::star::lang::EventObject& Event ) throw (::com::sun::star::uno::RuntimeException);
+
+// XModifyListener
+ virtual void SAL_CALL modified( const ::com::sun::star::lang::EventObject& aEvent ) throw ( ::com::sun::star::uno::RuntimeException );
+
+// XEventListener
+ virtual void SAL_CALL notifyEvent( const ::com::sun::star::document::EventObject& Event ) throw ( ::com::sun::star::uno::RuntimeException );
+
+// XBorderResizeListener
+ virtual void SAL_CALL borderWidthsChanged( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& aObject, const ::com::sun::star::frame::BorderWidths& aNewSize ) throw (::com::sun::star::uno::RuntimeException);
+
+// XHatchWindowController
+ virtual void SAL_CALL requestPositioning( const ::com::sun::star::awt::Rectangle& aRect ) throw (::com::sun::star::uno::RuntimeException);
+ virtual ::com::sun::star::awt::Rectangle SAL_CALL calcAdjustedRectangle( const ::com::sun::star::awt::Rectangle& aRect ) throw (::com::sun::star::uno::RuntimeException);
+ virtual void SAL_CALL activated( ) throw (::com::sun::star::uno::RuntimeException);
+ virtual void SAL_CALL deactivated( ) throw (::com::sun::star::uno::RuntimeException);
+};
+
+#endif
+