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 "PageListWatcher.hxx"
22 :
23 : #include "sdpage.hxx"
24 : #include <tools/debug.hxx>
25 : #include <svx/svdmodel.hxx>
26 :
27 :
28 :
29 0 : void ImpPageListWatcher::ImpRecreateSortedPageListOnDemand()
30 : {
31 : // clear vectors
32 0 : maPageVectorStandard.clear();
33 0 : maPageVectorNotes.clear();
34 0 : mpHandoutPage = 0L;
35 0 : mnVisiblePageCount = -1;
36 :
37 : // build up vectors again
38 0 : const sal_uInt32 nPageCount(ImpGetPageCount());
39 :
40 0 : for(sal_uInt32 a(0L); a < nPageCount; a++)
41 : {
42 0 : SdPage* pCandidate = ImpGetPage(a);
43 : DBG_ASSERT(pCandidate, "ImpPageListWatcher::ImpRecreateSortedPageListOnDemand: Invalid PageList in Model (!)");
44 :
45 0 : switch(pCandidate->GetPageKind())
46 : {
47 : case PK_STANDARD:
48 : {
49 0 : maPageVectorStandard.push_back(pCandidate);
50 0 : if (!pCandidate->IsExcluded()) mnVisiblePageCount++;
51 0 : break;
52 : }
53 : case PK_NOTES:
54 : {
55 0 : maPageVectorNotes.push_back(pCandidate);
56 0 : break;
57 : }
58 : case PK_HANDOUT:
59 : {
60 : DBG_ASSERT(!mpHandoutPage, "ImpPageListWatcher::ImpRecreateSortedPageListOnDemand: Two Handout pages in PageList of Model (!)");
61 0 : mpHandoutPage = pCandidate;
62 0 : break;
63 : }
64 : }
65 : }
66 :
67 : // set to valid
68 0 : mbPageListValid = sal_True;
69 0 : }
70 :
71 0 : ImpPageListWatcher::ImpPageListWatcher(const SdrModel& rModel)
72 : : mrModel(rModel)
73 : , mpHandoutPage(0L)
74 : , mbPageListValid(sal_False)
75 0 : , mnVisiblePageCount(0)
76 : {
77 0 : }
78 :
79 0 : ImpPageListWatcher::~ImpPageListWatcher()
80 : {
81 0 : }
82 :
83 0 : SdPage* ImpPageListWatcher::GetSdPage(PageKind ePgKind, sal_uInt32 nPgNum)
84 : {
85 0 : SdPage* pRetval(0L);
86 :
87 0 : if(!mbPageListValid)
88 : {
89 0 : ImpRecreateSortedPageListOnDemand();
90 : }
91 :
92 0 : switch(ePgKind)
93 : {
94 : case PK_STANDARD:
95 : {
96 0 : if( nPgNum < (sal_uInt32)maPageVectorStandard.size() )
97 0 : pRetval = maPageVectorStandard[nPgNum];
98 : else
99 : {
100 : SAL_WARN( "sd.core",
101 : "ImpPageListWatcher::GetSdPage(PK_STANDARD): page number " << nPgNum << " >= " << maPageVectorStandard.size() );
102 : }
103 0 : break;
104 : }
105 : case PK_NOTES:
106 : {
107 0 : if( nPgNum < (sal_uInt32)maPageVectorNotes.size() )
108 0 : pRetval = maPageVectorNotes[nPgNum];
109 : else
110 : {
111 : SAL_WARN( "sd.core",
112 : "ImpPageListWatcher::GetSdPage(PK_NOTES): page number " << nPgNum << " >= " << maPageVectorNotes.size() );
113 : }
114 0 : break;
115 : }
116 : case PK_HANDOUT:
117 : {
118 : // #11420# for models used to transfer drawing shapes via clipboard its ok to not have a handout page
119 : DBG_ASSERT(nPgNum == 0L, "ImpPageListWatcher::GetSdPage: access to non existing handout page (!)");
120 0 : if (nPgNum == 0)
121 0 : pRetval = mpHandoutPage;
122 : else
123 : {
124 : DBG_ASSERT(nPgNum == 0L,
125 : "ImpPageListWatcher::GetSdPage: access to non existing handout page (!)");
126 : }
127 0 : break;
128 : }
129 : }
130 :
131 0 : return pRetval;
132 : }
133 :
134 0 : sal_uInt32 ImpPageListWatcher::GetSdPageCount(PageKind ePgKind)
135 : {
136 0 : sal_uInt32 nRetval(0L);
137 :
138 0 : if(!mbPageListValid)
139 : {
140 0 : ImpRecreateSortedPageListOnDemand();
141 : }
142 :
143 0 : switch(ePgKind)
144 : {
145 : case PK_STANDARD:
146 : {
147 0 : nRetval = maPageVectorStandard.size();
148 0 : break;
149 : }
150 : case PK_NOTES:
151 : {
152 0 : nRetval = maPageVectorNotes.size();
153 0 : break;
154 : }
155 : case PK_HANDOUT:
156 : {
157 0 : if(mpHandoutPage)
158 : {
159 0 : nRetval = 1L;
160 : }
161 :
162 0 : break;
163 : }
164 : }
165 :
166 0 : return nRetval;
167 : }
168 :
169 :
170 0 : sal_uInt32 ImpPageListWatcher::GetVisibleSdPageCount()
171 : {
172 0 : sal_uInt32 nVisiblePageCount = 0;
173 :
174 : // build up vectors again
175 0 : const sal_uInt32 nPageCount(ImpGetPageCount());
176 :
177 0 : for(sal_uInt32 a(0L); a < nPageCount; a++)
178 : {
179 0 : SdPage* pCandidate = ImpGetPage(a);
180 0 : if ((pCandidate->GetPageKind() == PK_STANDARD)&&(!pCandidate->IsExcluded())) nVisiblePageCount++;
181 : }
182 0 : return nVisiblePageCount;
183 : }
184 :
185 :
186 :
187 0 : sal_uInt32 ImpDrawPageListWatcher::ImpGetPageCount() const
188 : {
189 0 : return (sal_uInt32)mrModel.GetPageCount();
190 : }
191 :
192 0 : SdPage* ImpDrawPageListWatcher::ImpGetPage(sal_uInt32 nIndex) const
193 : {
194 0 : return (SdPage*)mrModel.GetPage((sal_uInt16)nIndex);
195 : }
196 :
197 0 : ImpDrawPageListWatcher::ImpDrawPageListWatcher(const SdrModel& rModel)
198 0 : : ImpPageListWatcher(rModel)
199 : {
200 0 : }
201 :
202 0 : ImpDrawPageListWatcher::~ImpDrawPageListWatcher()
203 : {
204 0 : }
205 :
206 :
207 :
208 0 : sal_uInt32 ImpMasterPageListWatcher::ImpGetPageCount() const
209 : {
210 0 : return (sal_uInt32)mrModel.GetMasterPageCount();
211 : }
212 :
213 0 : SdPage* ImpMasterPageListWatcher::ImpGetPage(sal_uInt32 nIndex) const
214 : {
215 0 : return (SdPage*)mrModel.GetMasterPage((sal_uInt16)nIndex);
216 : }
217 :
218 0 : ImpMasterPageListWatcher::ImpMasterPageListWatcher(const SdrModel& rModel)
219 0 : : ImpPageListWatcher(rModel)
220 : {
221 0 : }
222 :
223 0 : ImpMasterPageListWatcher::~ImpMasterPageListWatcher()
224 : {
225 0 : }
226 :
227 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|