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 0 : 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 0 : mbSubContentActive(false)
35 : {
36 0 : }
37 :
38 0 : DisplayInfo::~DisplayInfo()
39 : {
40 0 : }
41 :
42 : // Access to LayerInfos (which layers to proccess)
43 0 : void DisplayInfo::SetProcessLayers(const SetOfByte& rSet)
44 : {
45 0 : maProcessLayers = rSet;
46 0 : }
47 :
48 : // access to RedrawArea
49 0 : void DisplayInfo::SetRedrawArea(const Region& rRegion)
50 : {
51 0 : maRedrawArea = rRegion;
52 0 : }
53 :
54 0 : void DisplayInfo::SetControlLayerProcessingActive(bool bDoProcess)
55 : {
56 0 : if((bool)mbControlLayerProcessingActive != bDoProcess)
57 : {
58 0 : mbControlLayerProcessingActive = bDoProcess;
59 : }
60 0 : }
61 :
62 0 : void DisplayInfo::SetPageProcessingActive(bool bDoProcess)
63 : {
64 0 : if((bool)mbPageProcessingActive != bDoProcess)
65 : {
66 0 : mbPageProcessingActive = bDoProcess;
67 : }
68 0 : }
69 :
70 0 : void DisplayInfo::ClearGhostedDrawMode()
71 : {
72 0 : mbGhostedDrawModeActive = false;
73 0 : }
74 :
75 0 : void DisplayInfo::SetGhostedDrawMode()
76 : {
77 0 : mbGhostedDrawModeActive = true;
78 0 : }
79 :
80 0 : void DisplayInfo::SetSubContentActive(bool bNew)
81 : {
82 0 : if((bool)mbSubContentActive != bNew)
83 : {
84 0 : mbSubContentActive = bNew;
85 : }
86 0 : }
87 :
88 : } // end of namespace contact
89 : } // end of namespace sdr
90 :
91 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|