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 "fusumry.hxx"
21 : #include <editeng/eeitem.hxx>
22 : #include <svx/svdotext.hxx>
23 : #include <svx/svdundo.hxx>
24 : #include <sfx2/printer.hxx>
25 : #include <editeng/outlobj.hxx>
26 :
27 : #include "strings.hrc"
28 :
29 : #include "pres.hxx"
30 : #include "View.hxx"
31 : #include "sdpage.hxx"
32 : #include "Outliner.hxx"
33 : #include "drawview.hxx"
34 : #include "drawdoc.hxx"
35 : #include "ViewShell.hxx"
36 : #include "DrawDocShell.hxx"
37 : #include "sdresid.hxx"
38 : #include "optsitem.hxx"
39 : #include "DrawViewShell.hxx"
40 :
41 : namespace sd {
42 :
43 0 : TYPEINIT1( FuSummaryPage, FuPoor );
44 :
45 : /*************************************************************************
46 : |*
47 : |* Konstruktor
48 : |*
49 : \************************************************************************/
50 0 : FuSummaryPage::FuSummaryPage (
51 : ViewShell* pViewSh,
52 : ::sd::Window* pWin,
53 : ::sd::View* pView,
54 : SdDrawDocument* pDoc,
55 : SfxRequest& rReq)
56 0 : : FuPoor(pViewSh, pWin, pView, pDoc, rReq)
57 : {
58 0 : }
59 :
60 0 : FunctionReference FuSummaryPage::Create( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView, SdDrawDocument* pDoc, SfxRequest& rReq )
61 : {
62 0 : FunctionReference xFunc( new FuSummaryPage( pViewSh, pWin, pView, pDoc, rReq ) );
63 0 : xFunc->DoExecute(rReq);
64 0 : return xFunc;
65 : }
66 :
67 0 : void FuSummaryPage::DoExecute( SfxRequest& )
68 : {
69 0 : ::sd::Outliner* pOutl = NULL;
70 0 : SdPage* pSummaryPage = NULL;
71 0 : sal_uInt16 i = 0;
72 0 : sal_uInt16 nFirstPage = SDRPAGE_NOTFOUND;
73 0 : sal_uInt16 nSelectedPages = 0;
74 0 : sal_uInt16 nCount = mpDoc->GetSdPageCount(PK_STANDARD);
75 :
76 0 : while (i < nCount && nSelectedPages <= 1)
77 : {
78 : /**********************************************************************
79 : * Wieviele Seiten sind selektiert?
80 : * Genau eine Seite selektiert: Ab dieser Seite alles zusammenfassen
81 : * sonst: Nur die selektierten Seiten zusammenfassen
82 : **********************************************************************/
83 0 : SdPage* pActualPage = mpDoc->GetSdPage(i, PK_STANDARD);
84 :
85 0 : if (pActualPage->IsSelected())
86 : {
87 0 : if (nFirstPage == SDRPAGE_NOTFOUND)
88 : {
89 0 : nFirstPage = i;
90 : }
91 :
92 0 : nSelectedPages++;
93 : }
94 :
95 0 : i++;
96 : }
97 :
98 0 : bool bBegUndo = false;
99 :
100 0 : SfxStyleSheet* pStyle = NULL;
101 :
102 0 : for (i = nFirstPage; i < nCount; i++)
103 : {
104 0 : SdPage* pActualPage = mpDoc->GetSdPage(i, PK_STANDARD);
105 :
106 0 : if (nSelectedPages <= 1 || pActualPage->IsSelected())
107 : {
108 0 : SdPage* pActualNotesPage = mpDoc->GetSdPage(i, PK_NOTES);
109 0 : SdrTextObj* pTextObj = (SdrTextObj*) pActualPage->GetPresObj(PRESOBJ_TITLE);
110 :
111 0 : if (pTextObj && !pTextObj->IsEmptyPresObj())
112 : {
113 0 : if (!pSummaryPage)
114 : {
115 : /**********************************************************
116 : * Inhaltsverzeichnis-Seite einfuegen und Outliner anlegen
117 : **********************************************************/
118 0 : const bool bUndo = mpView->IsUndoEnabled();
119 :
120 0 : if( bUndo )
121 : {
122 0 : mpView->BegUndo(String(SdResId(STR_UNDO_SUMMARY_PAGE)));
123 0 : bBegUndo = true;
124 : }
125 :
126 0 : SetOfByte aVisibleLayers = pActualPage->TRG_GetMasterPageVisibleLayers();
127 :
128 : // Seite mit Titel & Gliederung!
129 0 : pSummaryPage = (SdPage*) mpDoc->AllocPage(sal_False);
130 0 : pSummaryPage->SetSize(pActualPage->GetSize() );
131 0 : pSummaryPage->SetBorder(pActualPage->GetLftBorder(),
132 0 : pActualPage->GetUppBorder(),
133 0 : pActualPage->GetRgtBorder(),
134 0 : pActualPage->GetLwrBorder() );
135 :
136 : // Seite hinten einfuegen
137 0 : mpDoc->InsertPage(pSummaryPage, nCount * 2 + 1);
138 0 : if( bUndo )
139 0 : mpView->AddUndo(mpDoc->GetSdrUndoFactory().CreateUndoNewPage(*pSummaryPage));
140 :
141 : // MasterPage der aktuellen Seite verwenden
142 0 : pSummaryPage->TRG_SetMasterPage(pActualPage->TRG_GetMasterPage());
143 0 : pSummaryPage->SetLayoutName(pActualPage->GetLayoutName());
144 0 : pSummaryPage->SetAutoLayout(AUTOLAYOUT_ENUM, sal_True);
145 0 : pSummaryPage->TRG_SetMasterPageVisibleLayers(aVisibleLayers);
146 0 : pSummaryPage->setHeaderFooterSettings(pActualPage->getHeaderFooterSettings());
147 :
148 : // Notiz-Seite
149 0 : SdPage* pNotesPage = (SdPage*) mpDoc->AllocPage(sal_False);
150 0 : pNotesPage->SetSize(pActualNotesPage->GetSize());
151 0 : pNotesPage->SetBorder(pActualNotesPage->GetLftBorder(),
152 0 : pActualNotesPage->GetUppBorder(),
153 0 : pActualNotesPage->GetRgtBorder(),
154 0 : pActualNotesPage->GetLwrBorder() );
155 0 : pNotesPage->SetPageKind(PK_NOTES);
156 :
157 : // Seite hinten einfuegen
158 0 : mpDoc->InsertPage(pNotesPage, nCount * 2 + 2);
159 :
160 0 : if( bUndo )
161 0 : mpView->AddUndo(mpDoc->GetSdrUndoFactory().CreateUndoNewPage(*pNotesPage));
162 :
163 : // MasterPage der aktuellen Seite verwenden
164 0 : pNotesPage->TRG_SetMasterPage(pActualNotesPage->TRG_GetMasterPage());
165 0 : pNotesPage->SetLayoutName(pActualNotesPage->GetLayoutName());
166 0 : pNotesPage->SetAutoLayout(pActualNotesPage->GetAutoLayout(), sal_True);
167 0 : pNotesPage->TRG_SetMasterPageVisibleLayers(aVisibleLayers);
168 0 : pNotesPage->setHeaderFooterSettings(pActualNotesPage->getHeaderFooterSettings());
169 :
170 0 : pOutl = new ::sd::Outliner( mpDoc, OUTLINERMODE_OUTLINEOBJECT );
171 0 : pOutl->SetUpdateMode(sal_False);
172 0 : pOutl->EnableUndo(sal_False);
173 :
174 0 : if (mpDocSh)
175 0 : pOutl->SetRefDevice(SD_MOD()->GetRefDevice( *mpDocSh ));
176 :
177 0 : pOutl->SetDefTab( mpDoc->GetDefaultTabulator() );
178 0 : pOutl->SetStyleSheetPool((SfxStyleSheetPool*) mpDoc->GetStyleSheetPool());
179 0 : pStyle = pSummaryPage->GetStyleSheetForPresObj( PRESOBJ_OUTLINE );
180 0 : pOutl->SetStyleSheet( 0, pStyle );
181 : }
182 :
183 : /**************************************************************
184 : * Text hinzufuegen
185 : **************************************************************/
186 0 : OutlinerParaObject* pParaObj = pTextObj->GetOutlinerParaObject();
187 : // #118876#, check if the OutlinerParaObject is created successfully
188 0 : if( pParaObj )
189 : {
190 0 : pParaObj->SetOutlinerMode( OUTLINERMODE_OUTLINEOBJECT );
191 0 : pOutl->AddText(*pParaObj);
192 : }
193 : }
194 : }
195 : }
196 :
197 0 : if (pSummaryPage)
198 : {
199 0 : SdrTextObj* pTextObj = (SdrTextObj*) pSummaryPage->GetPresObj(PRESOBJ_OUTLINE);
200 :
201 : // Harte Absatz- und Zeichenattribute entfernen
202 0 : SfxItemSet aEmptyEEAttr(mpDoc->GetPool(), EE_ITEMS_START, EE_ITEMS_END);
203 0 : sal_uLong nParaCount = pOutl->GetParagraphCount();
204 :
205 0 : for (sal_uInt16 nPara = 0; nPara < nParaCount; nPara++)
206 : {
207 0 : pOutl->SetStyleSheet( nPara, pStyle );
208 0 : pOutl->QuickRemoveCharAttribs(nPara);
209 0 : pOutl->SetParaAttribs(nPara, aEmptyEEAttr);
210 0 : pOutl->SetDepth(pOutl->GetParagraph(nPara), 0);
211 : }
212 :
213 0 : pTextObj->SetOutlinerParaObject( pOutl->CreateParaObject() );
214 0 : pTextObj->SetEmptyPresObj(sal_False);
215 :
216 : // Harte Attribute entfernen (Flag auf sal_True)
217 0 : SfxItemSet aAttr(mpDoc->GetPool());
218 0 : aAttr.Put(XLineStyleItem(XLINE_NONE));
219 0 : aAttr.Put(XFillStyleItem(XFILL_NONE));
220 0 : pTextObj->SetMergedItemSet(aAttr);
221 :
222 0 : if( bBegUndo )
223 0 : mpView->EndUndo();
224 0 : delete pOutl;
225 :
226 0 : DrawViewShell* pDrawViewShell= dynamic_cast< DrawViewShell* >( mpViewShell );
227 0 : if(pDrawViewShell)
228 : {
229 0 : pDrawViewShell->SwitchPage( (pSummaryPage->GetPageNum() - 1) / 2);
230 0 : }
231 : }
232 0 : }
233 :
234 :
235 9 : } // end of namespace sd
236 :
237 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|