fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / svx / source / sdr / contact / displayinfo.cxx
blob72d7aa77964084ae778bec568add651006ff922e
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 #include <svx/sdr/contact/displayinfo.hxx>
22 //////////////////////////////////////////////////////////////////////////////
24 namespace sdr
26 namespace contact
28 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 mbSubContentActive(false)
38 DisplayInfo::~DisplayInfo()
42 // Access to LayerInfos (which layers to proccess)
43 void DisplayInfo::SetProcessLayers(const SetOfByte& rSet)
45 maProcessLayers = rSet;
48 // access to RedrawArea
49 void DisplayInfo::SetRedrawArea(const Region& rRegion)
51 maRedrawArea = rRegion;
54 void DisplayInfo::SetControlLayerProcessingActive(bool bDoProcess)
56 if((bool)mbControlLayerProcessingActive != bDoProcess)
58 mbControlLayerProcessingActive = bDoProcess;
62 void DisplayInfo::SetPageProcessingActive(bool bDoProcess)
64 if((bool)mbPageProcessingActive != bDoProcess)
66 mbPageProcessingActive = bDoProcess;
70 void DisplayInfo::ClearGhostedDrawMode()
72 mbGhostedDrawModeActive = false;
75 void DisplayInfo::SetGhostedDrawMode()
77 mbGhostedDrawModeActive = true;
80 void DisplayInfo::SetSubContentActive(bool bNew)
82 if((bool)mbSubContentActive != bNew)
84 mbSubContentActive = bNew;
88 } // end of namespace contact
89 } // end of namespace sdr
91 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */