Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / sd / source / console / PresenterPane.hxx
blob2a057229f8029aa8c6171f23b886f280709d936c
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_SDEXT_SOURCE_PRESENTER_PRESENTERPANE_HXX
21 #define INCLUDED_SDEXT_SOURCE_PRESENTER_PRESENTERPANE_HXX
23 #include "PresenterPaneBase.hxx"
24 #include <com/sun/star/uno/XComponentContext.hpp>
25 #include <com/sun/star/rendering/XCanvas.hpp>
26 #include <rtl/ref.hxx>
28 namespace sdext::presenter
30 /** Pane used by the presenter screen. Pane objects are stored in the
31 PresenterPaneContainer. Sizes and positions are controlled
32 by the PresenterWindowManager. Interactive positioning and resizing is
33 managed by the PresenterPaneBorderManager. Borders around panes are
34 painted by the PresenterPaneBorderPainter.
36 class PresenterPane : public PresenterPaneBase
38 public:
39 PresenterPane(const css::uno::Reference<css::uno::XComponentContext>& rxContext,
40 const ::rtl::Reference<PresenterController>& rpPresenterController);
41 virtual ~PresenterPane() override;
43 // XPane
45 css::uno::Reference<css::awt::XWindow> SAL_CALL getWindow() override;
47 css::uno::Reference<css::rendering::XCanvas> SAL_CALL getCanvas() override;
49 // XWindowListener
51 virtual void SAL_CALL windowResized(const css::awt::WindowEvent& rEvent) override;
53 virtual void SAL_CALL windowMoved(const css::awt::WindowEvent& rEvent) override;
55 virtual void SAL_CALL windowShown(const css::lang::EventObject& rEvent) override;
57 virtual void SAL_CALL windowHidden(const css::lang::EventObject& rEvent) override;
59 // XPaintListener
61 virtual void SAL_CALL windowPaint(const css::awt::PaintEvent& rEvent) override;
63 private:
64 /** Store the bounding box so that when the window is resized or moved
65 we still know the old position and size.
67 css::awt::Rectangle maBoundingBox;
69 virtual void CreateCanvases(
70 const css::uno::Reference<css::rendering::XSpriteCanvas>& rxParentCanvas) override;
72 void Invalidate(const css::awt::Rectangle& rRepaintBox);
73 void UpdateBoundingBox();
76 } // end of namespace ::sd::presenter
78 #endif
80 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */