LibreOffice Module svx (master) 1
displayinfo.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#ifndef INCLUDED_SVX_SDR_CONTACT_DISPLAYINFO_HXX
21#define INCLUDED_SVX_SDR_CONTACT_DISPLAYINFO_HXX
22
23#include <svx/svdsob.hxx>
24#include <vcl/region.hxx>
25#include <svx/svxdllapi.h>
27
28namespace sdr::contact
29 {
31 {
32 // The Layers which shall be processed (visible)
34
35 // The redraw area, in logical coordinates of OutputDevice. If Region
36 // is empty, everything needs to be redrawn
38
41
42 // Internal flag to know when the control layer is painted. Default is
43 // false. If set to true, painting of the page, page borders and
44 // the rasters will be suppressed as if mbPageProcessingActive is set (see there).
45 // This flag is set internally from the processing mechanism to avoid double page
46 // painting when the control layer needs to be painted as last layer
48
49 // Internal flag to remember if EnteredGroupDrawMode is active. Default is true
50 // since this mode starts activated and gets switched off when reaching
51 // the current group level. Should only be changed by instances which do
52 // primitive processing
54
55 // Internal flag to know if a MasterPage is processed as SubContent of another
56 // page. Initialized to false, this should only be changed from the instance which
57 // is processing the MasterPage asSubContent and knows what it does
59
60 public:
61 // basic constructor.
63
64 // access to ProcessLayers
65 void SetProcessLayers(const SdrLayerIDSet& rSet);
66 const SdrLayerIDSet& GetProcessLayers() const { return maProcessLayers; }
67
68 // access to RedrawArea
69 void SetRedrawArea(const vcl::Region& rRegion);
70 const vcl::Region& GetRedrawArea() const { return maRedrawArea; }
71
72 void SetWriterPageFrame(basegfx::B2IRectangle const& rPageFrame);
73 basegfx::B2IRectangle const& GetWriterPageFrame() const { return m_WriterPageFrame; }
74
75 // Access to ControlLayerProcessingActive flag
76 void SetControlLayerProcessingActive(bool bDoPaint);
77 bool GetControlLayerProcessingActive() const { return mbControlLayerProcessingActive; }
78
79 // Save the original DrawMode from outdev
80 void ClearGhostedDrawMode();
81 void SetGhostedDrawMode();
82 bool IsGhostedDrawModeActive() const { return mbGhostedDrawModeActive; }
83
84 // access to master page painting flag
85 bool GetSubContentActive() const { return mbSubContentActive; }
86 void SetSubContentActive(bool bNew);
87 };
88
89} // end of namespace sdr::contact
90
91
92#endif // INCLUDED_SVX_SDR_CONTACT_DISPLAYINFO_HXX
93
94/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
basegfx::B2IRectangle const & GetWriterPageFrame() const
Definition: displayinfo.hxx:73
bool GetSubContentActive() const
Definition: displayinfo.hxx:85
basegfx::B2IRectangle m_WriterPageFrame
only for Writer: current page being painted
Definition: displayinfo.hxx:40
bool GetControlLayerProcessingActive() const
Definition: displayinfo.hxx:77
SdrLayerIDSet maProcessLayers
Definition: displayinfo.hxx:33
bool IsGhostedDrawModeActive() const
Definition: displayinfo.hxx:82
const vcl::Region & GetRedrawArea() const
Definition: displayinfo.hxx:70
const SdrLayerIDSet & GetProcessLayers() const
Definition: displayinfo.hxx:66
#define SVXCORE_DLLPUBLIC
Definition: svxdllapi.h:35