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