bump product version to 5.0.4.1
[LibreOffice.git] / sd / source / ui / slidesorter / view / SlsLayeredDevice.hxx
blobf614842afe33a300a606e73c8607ee68d66aefb2
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_SD_SOURCE_UI_SLIDESORTER_VIEW_SLSLAYEREDDEVICE_HXX
21 #define INCLUDED_SD_SOURCE_UI_SLIDESORTER_VIEW_SLSLAYEREDDEVICE_HXX
23 #include "view/SlsILayerPainter.hxx"
24 #include "SlideSorter.hxx"
26 #include <vcl/region.hxx>
27 #include <vcl/virdev.hxx>
29 #include <boost/noncopyable.hpp>
30 #include <boost/scoped_ptr.hpp>
31 #include <boost/shared_ptr.hpp>
32 #include <boost/enable_shared_from_this.hpp>
33 #include <vector>
35 class Rectangle;
37 namespace sd { namespace slidesorter { namespace view {
39 /** A simple wrapper around an OutputDevice that provides support for
40 independent layers and buffering.
41 Each layer may contain any number of painters.
43 class LayeredDevice
44 : public ::boost::enable_shared_from_this<LayeredDevice>
47 public:
48 LayeredDevice (VclPtr<sd::Window> pTargetWindow);
49 ~LayeredDevice ();
51 void Invalidate (
52 const Rectangle& rInvalidationBox,
53 const sal_Int32 nLayer);
54 void InvalidateAllLayers (
55 const Rectangle& rInvalidationBox);
56 void InvalidateAllLayers (
57 const vcl::Region& rInvalidationRegion);
59 void RegisterPainter (
60 const SharedILayerPainter& rPainter,
61 const sal_Int32 nLayer);
63 void RemovePainter (
64 const SharedILayerPainter& rPainter,
65 const sal_Int32 nLayer);
67 bool HandleMapModeChange();
68 void Repaint (const vcl::Region& rRepaintRegion);
70 void Resize();
72 void Dispose();
74 private:
75 VclPtr<sd::Window> mpTargetWindow;
76 class LayerContainer;
77 ::boost::scoped_ptr<LayerContainer> mpLayers;
78 ScopedVclPtr<VirtualDevice> mpBackBuffer;
79 MapMode maSavedMapMode;
81 void RepaintRectangle (const Rectangle& rRepaintRectangle);
84 } } } // end of namespace ::sd::slidesorter::view
86 #endif
88 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */