Version 6.1.0.2, tag libreoffice-6.1.0.2
[LibreOffice.git] / sdext / source / presenter / PresenterPaintManager.hxx
blobd1734a122b8c2306623217012109d9a2bb28ac2b
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_PRESENTERPAINTMANAGER_HXX
21 #define INCLUDED_SDEXT_SOURCE_PRESENTER_PRESENTERPAINTMANAGER_HXX
23 #include <com/sun/star/awt/XWindow.hpp>
24 #include <com/sun/star/awt/XWindowPeer.hpp>
25 #include <com/sun/star/drawing/XPresenterHelper.hpp>
26 #include <rtl/ref.hxx>
28 #include <functional>
30 namespace sdext { namespace presenter {
32 class PresenterPaneContainer;
34 /** Synchronize painting of windows and canvases. At the moment there is
35 just some processing of invalidate calls.
36 This could be extended to process incoming windowPaint() calls.
38 class PresenterPaintManager
40 public:
41 /** Create paint manager with the window that is the top node in the
42 local window hierarchy.
44 PresenterPaintManager (
45 const css::uno::Reference<css::awt::XWindow>& rxParentWindow,
46 const css::uno::Reference<css::drawing::XPresenterHelper>& rxPresenterHelper,
47 const rtl::Reference<PresenterPaneContainer>& rpPaneContainer);
49 ::std::function<void (const css::awt::Rectangle& rRepaintBox)>
50 GetInvalidator (
51 const css::uno::Reference<css::awt::XWindow>& rxWindow);
53 /** Request a repaint of the whole window.
54 @param rxWindow
55 May be the parent window or one of its descendents.
57 void Invalidate (
58 const css::uno::Reference<css::awt::XWindow>& rxWindow);
59 void Invalidate (
60 const css::uno::Reference<css::awt::XWindow>& rxWindow,
61 const sal_Int16 nInvalidateFlags);
63 /** Request a repaint of a part of a window.
64 @param rxWindow
65 May be the parent window or one of its descendents.
67 void Invalidate (
68 const css::uno::Reference<css::awt::XWindow>& rxWindow,
69 const css::awt::Rectangle& rRepaintBox,
70 const bool bSynchronous = false);
71 void Invalidate (
72 const css::uno::Reference<css::awt::XWindow>& rxWindow,
73 const css::awt::Rectangle& rRepaintBox,
74 const sal_Int16 nInvalidateFlags);
76 private:
77 css::uno::Reference<css::awt::XWindow> mxParentWindow;
78 css::uno::Reference<css::awt::XWindowPeer> mxParentWindowPeer;
79 css::uno::Reference<css::drawing::XPresenterHelper> mxPresenterHelper;
80 ::rtl::Reference<PresenterPaneContainer> mpPaneContainer;
83 } }
85 #endif
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */