Line data Source code
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 : #include <svx/sdr/contact/displayinfo.hxx>
21 :
22 :
23 :
24 : namespace sdr
25 : {
26 : namespace contact
27 : {
28 62985 : DisplayInfo::DisplayInfo()
29 : : maProcessLayers(true), // init layer info with all bits set to draw everything on default
30 : maRedrawArea(),
31 : mbControlLayerProcessingActive(false),
32 : mbPageProcessingActive(true),
33 : mbGhostedDrawModeActive(false),
34 62985 : mbSubContentActive(false)
35 : {
36 62985 : }
37 :
38 62985 : DisplayInfo::~DisplayInfo()
39 : {
40 62985 : }
41 :
42 : // Access to LayerInfos (which layers to process)
43 48239 : void DisplayInfo::SetProcessLayers(const SetOfByte& rSet)
44 : {
45 48239 : maProcessLayers = rSet;
46 48239 : }
47 :
48 : // access to RedrawArea
49 45135 : void DisplayInfo::SetRedrawArea(const vcl::Region& rRegion)
50 : {
51 45135 : maRedrawArea = rRegion;
52 45135 : }
53 :
54 44116 : void DisplayInfo::SetControlLayerProcessingActive(bool bDoProcess)
55 : {
56 44116 : if((bool)mbControlLayerProcessingActive != bDoProcess)
57 : {
58 15382 : mbControlLayerProcessingActive = bDoProcess;
59 : }
60 44116 : }
61 :
62 45135 : void DisplayInfo::SetPageProcessingActive(bool bDoProcess)
63 : {
64 45135 : if((bool)mbPageProcessingActive != bDoProcess)
65 : {
66 44116 : mbPageProcessingActive = bDoProcess;
67 : }
68 45135 : }
69 :
70 94361 : void DisplayInfo::ClearGhostedDrawMode()
71 : {
72 94361 : mbGhostedDrawModeActive = false;
73 94361 : }
74 :
75 90266 : void DisplayInfo::SetGhostedDrawMode()
76 : {
77 90266 : mbGhostedDrawModeActive = true;
78 90266 : }
79 :
80 3104 : void DisplayInfo::SetSubContentActive(bool bNew)
81 : {
82 3104 : if((bool)mbSubContentActive != bNew)
83 : {
84 3104 : mbSubContentActive = bNew;
85 : }
86 3104 : }
87 :
88 : } // end of namespace contact
89 : } // end of namespace sdr
90 :
91 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|