/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2008 by Sun Microsystems, Inc. * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: PresenterWindowManager.hxx,v $ * * $Revision: 1.4 $ * * 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 * * for a copy of the LGPLv3 License. * ************************************************************************/ #ifndef SDEXT_PRESENTER_PRESENTER_WINDOW_MANAGER_HXX #define SDEXT_PRESENTER_PRESENTER_WINDOW_MANAGER_HXX #include "PresenterPaneContainer.hxx" #include "PresenterTheme.hxx" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace css = ::com::sun::star; namespace sdext { namespace presenter { class PresenterController; class PresenterPaneBorderPainter; class PresenterTheme; namespace { typedef ::cppu::WeakComponentImplHelper4< css::awt::XWindowListener, css::awt::XPaintListener, css::awt::XMouseListener, css::awt::XFocusListener > PresenterWindowManagerInterfaceBase; } /** A simple manager of the positions of the panes of the presenter screen. Uses relative coordinates of the four sides of each pane. Allows panes to be moved or resized with the mouse. */ class PresenterWindowManager : private ::boost::noncopyable, protected ::cppu::BaseMutex, public PresenterWindowManagerInterfaceBase { public: PresenterWindowManager ( const ::css::uno::Reference& rxContext, const ::rtl::Reference& rpPaneContainer, const ::rtl::Reference& rpPresenterController); virtual ~PresenterWindowManager (void); void SAL_CALL disposing (void); void SetParentPane (const css::uno::Reference& rxPane); void SetTheme (const ::boost::shared_ptr& rpTheme); void NotifyPaneCreation (const PresenterPaneContainer::SharedPaneDescriptor& rpDescriptor); void NotifyViewCreation (const css::uno::Reference& rxView); void SetPanePosSizeRelative ( const css::uno::Reference& rxPaneId, const double nRelativeX, const double nRelativeY, const double nRelativeWidth, const double nRelativeHeight); void SetPanePosSizeAbsolute ( const ::rtl::OUString& rsPaneURL, const double nX, const double nY, const double nWidth, const double nHeight); void SetPaneBorderPainter (const ::rtl::Reference& rPainter); css::uno::Reference GetParentWindow (void) const; css::uno::Reference GetParentCanvas (void) const; void Update (void); void Layout (void); void SetSlideSorterState (bool bIsActive); void SetHelpViewState (bool bIsActive); enum LayoutMode { LM_Standard, LM_Notes, LM_Generic }; private: void SetLayoutMode (const LayoutMode eMode); LayoutMode GetLayoutMode (void) const; bool IsSlideSorterActive (void) const; bool IsHelpViewActive (void) const; public: enum ViewMode { VM_Standard, VM_Notes, VM_SlideOverview, VM_Help }; /** The high-level method to switch the view mode. Use this instead of SetLayoutMode and Set(Help|SlideSorter)State when possible. */ void SetViewMode (const ViewMode eMode); ViewMode GetViewMode (void) const; /** Restore the layout mode (or slide sorter state) from the configuration. */ void RestoreViewMode (void); void AddLayoutListener ( const css::uno::Reference& rxListener); void RemoveLayoutListener ( const css::uno::Reference& rxListener); // XWindowListener virtual void SAL_CALL windowResized (const css::awt::WindowEvent& rEvent) throw (css::uno::RuntimeException); virtual void SAL_CALL windowMoved (const css::awt::WindowEvent& rEvent) throw (css::uno::RuntimeException); virtual void SAL_CALL windowShown (const css::lang::EventObject& rEvent) throw (css::uno::RuntimeException); virtual void SAL_CALL windowHidden (const css::lang::EventObject& rEvent) throw (css::uno::RuntimeException); // XPaintListener virtual void SAL_CALL windowPaint (const css::awt::PaintEvent& rEvent) throw (css::uno::RuntimeException); // XMouseListener virtual void SAL_CALL mousePressed (const css::awt::MouseEvent& rEvent) throw(css::uno::RuntimeException); virtual void SAL_CALL mouseReleased (const css::awt::MouseEvent& rEvent) throw(css::uno::RuntimeException); virtual void SAL_CALL mouseEntered (const css::awt::MouseEvent& rEvent) throw(css::uno::RuntimeException); virtual void SAL_CALL mouseExited (const css::awt::MouseEvent& rEvent) throw(css::uno::RuntimeException); // XFocusListener virtual void SAL_CALL focusGained (const css::awt::FocusEvent& rEvent) throw (css::uno::RuntimeException); virtual void SAL_CALL focusLost (const css::awt::FocusEvent& rEvent) throw (css::uno::RuntimeException); // XEventListener virtual void SAL_CALL disposing ( const com::sun::star::lang::EventObject& rEvent) throw (com::sun::star::uno::RuntimeException); private: css::uno::Reference mxComponentContext; ::rtl::Reference mpPresenterController; css::uno::Reference mxParentWindow; css::uno::Reference mxParentCanvas; css::uno::Reference mxPaneBorderManager; ::rtl::Reference mpPaneBorderPainter; ::rtl::Reference mpPaneContainer; bool mbIsLayoutPending; /** This flag is set to while the Layout() method is being executed. Prevents windowMoved() and windowResized() from changing the window sizes. */ bool mbIsLayouting; ::boost::shared_ptr mpTheme; SharedBitmapDescriptor mpBackgroundBitmap; css::uno::Reference mxScaledBackgroundBitmap; css::util::Color maPaneBackgroundColor; css::uno::Reference mxClipPolygon; LayoutMode meLayoutMode; bool mbIsSlideSorterActive; bool mbIsHelpViewActive; typedef ::std::vector > LayoutListenerContainer; LayoutListenerContainer maLayoutListeners; bool mbIsMouseClickPending; bool PaintChildren (const css::awt::PaintEvent& rEvent) const; void UpdateWindowSize (const css::uno::Reference& rxBorderWindow); void PaintBackground (const css::awt::Rectangle& rUpdateBox); void ProvideBackgroundBitmap (void); css::uno::Reference CreateClipPolyPolygon (void) const; void ToTop (); void UpdateWindowList (void); bool ChildNeedsRepaint ( const css::uno::Reference& rxPane) const; void Invalidate (void); void StoreViewMode (const ViewMode eViewMode); void LayoutStandardMode (void); void LayoutNotesMode (void); void LayoutUnknownMode (void); void LayoutSlideSorterMode (void); void LayoutHelpMode (void); /** Layout the tool bar and return its outer bounding box. */ css::geometry::RealRectangle2D LayoutToolBar (void); css::awt::Size CalculatePaneSize ( const double nOuterWidth, const ::rtl::OUString& rsPaneURL); /** Notify changes of the layout mode and of the slide sorter state. */ void NotifyLayoutModeChange (void); void NotifyDisposing (void); void ThrowIfDisposed (void) const throw (::com::sun::star::lang::DisposedException); }; } } #endif