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 :
21 : #include "svx/svdviter.hxx"
22 : #include <svx/svdobj.hxx>
23 : #include <svx/svdpage.hxx>
24 : #include <svx/svdmodel.hxx>
25 : #include <svx/svdview.hxx>
26 : #include <svx/svdpagv.hxx>
27 : #include <svx/svdsob.hxx>
28 : #include <svx/sdrpaintwindow.hxx>
29 :
30 :
31 :
32 57956 : void SdrViewIter::ImpInitVars()
33 : {
34 57956 : mnListenerNum = 0L;
35 57956 : mnPageViewNum = 0L;
36 57956 : mnOutDevNum = 0L;
37 57956 : mpAktView = 0L;
38 57956 : }
39 :
40 :
41 :
42 0 : SdrViewIter::SdrViewIter(const SdrPage* pPage, bool bNoMasterPage)
43 : {
44 0 : mpPage = pPage;
45 0 : mpModel = (pPage) ? pPage->GetModel() : 0L;
46 0 : mpObject = 0L;
47 0 : mbNoMasterPage = bNoMasterPage;
48 0 : ImpInitVars();
49 0 : }
50 :
51 :
52 :
53 28978 : SdrViewIter::SdrViewIter(const SdrObject* pObject, bool bNoMasterPage)
54 : {
55 28978 : mpObject = pObject;
56 28978 : mpModel = (pObject) ? pObject->GetModel() : 0L;
57 28978 : mpPage = (pObject) ? pObject->GetPage() : 0L;
58 28978 : mbNoMasterPage = bNoMasterPage;
59 :
60 28978 : if(!mpModel || !mpPage)
61 : {
62 284 : mpModel = 0L;
63 284 : mpPage = 0L;
64 : }
65 :
66 28978 : ImpInitVars();
67 28978 : }
68 :
69 :
70 :
71 2016 : bool SdrViewIter::ImpCheckPageView(SdrPageView* pPV) const
72 : {
73 2016 : if(mpPage)
74 : {
75 2016 : bool bMaster(mpPage->IsMasterPage());
76 2016 : SdrPage* pPg = pPV->GetPage();
77 :
78 2016 : if(pPg == mpPage)
79 : {
80 2016 : if(mpObject)
81 : {
82 : // Looking for an object? First, determine if it visible in
83 : // this PageView.
84 2016 : SetOfByte aObjLay;
85 2016 : mpObject->getMergedHierarchyLayerSet(aObjLay);
86 2016 : aObjLay &= pPV->GetVisibleLayers();
87 2016 : return !aObjLay.IsEmpty();
88 : }
89 : else
90 : {
91 0 : return true;
92 : }
93 : }
94 : else
95 : {
96 0 : if(!mbNoMasterPage && bMaster && (!mpObject || !mpObject->IsNotVisibleAsMaster()))
97 : {
98 0 : if(pPg->TRG_HasMasterPage())
99 : {
100 0 : SdrPage& rMasterPage = pPg->TRG_GetMasterPage();
101 :
102 0 : if(&rMasterPage == mpPage)
103 : {
104 : // the page we're looking for is a master page in this PageView
105 0 : if(mpObject)
106 : {
107 : // Looking for an object? First, determine if it visible in
108 : // this PageView.
109 0 : SetOfByte aObjLay;
110 0 : mpObject->getMergedHierarchyLayerSet(aObjLay);
111 0 : aObjLay &= pPV->GetVisibleLayers();
112 0 : aObjLay &= pPg->TRG_GetMasterPageVisibleLayers();
113 :
114 0 : if(!aObjLay.IsEmpty())
115 : {
116 0 : return true;
117 : } // else, look at the next master page of this page...
118 : }
119 : else
120 : {
121 0 : return true;
122 : }
123 : }
124 : }
125 : }
126 :
127 : // master page forbidden or no fitting master page found
128 0 : return false;
129 : }
130 : }
131 : else
132 : {
133 0 : return true;
134 : }
135 : }
136 :
137 :
138 :
139 29992 : SdrView* SdrViewIter::ImpFindView()
140 : {
141 29992 : if(mpModel)
142 : {
143 29708 : const size_t nLsAnz(mpModel->GetSizeOfVector());
144 :
145 1304523 : while(mnListenerNum < nLsAnz)
146 : {
147 1246121 : SfxListener* pLs = mpModel->GetListener(mnListenerNum);
148 1246121 : mpAktView = PTR_CAST(SdrView, pLs);
149 :
150 1246121 : if(mpAktView)
151 : {
152 31517 : if(mpPage)
153 : {
154 31517 : SdrPageView* pPV = mpAktView->GetSdrPageView();
155 :
156 31517 : if(pPV)
157 : {
158 2016 : if(ImpCheckPageView(pPV))
159 : {
160 1014 : return mpAktView;
161 : }
162 : }
163 : }
164 : else
165 : {
166 0 : return mpAktView;
167 : }
168 : }
169 :
170 1245107 : mnListenerNum++;
171 : }
172 : }
173 :
174 28978 : mpAktView = 0L;
175 28978 : return mpAktView;
176 : }
177 :
178 :
179 :
180 28978 : SdrView* SdrViewIter::FirstView()
181 : {
182 28978 : ImpInitVars();
183 28978 : return ImpFindView();
184 : }
185 :
186 :
187 :
188 1014 : SdrView* SdrViewIter::NextView()
189 : {
190 1014 : mnListenerNum++;
191 1014 : return ImpFindView();
192 651 : }
193 :
194 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|