Version 6.1.0.2, tag libreoffice-6.1.0.2
[LibreOffice.git] / sw / source / uibase / uiview / view1.cxx
blob6c6ab090f9897c63cbbffc8a3fcde062a756a139
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/svdpagv.hxx>
21 #include <svx/svdview.hxx>
22 #include <svx/ruler.hxx>
23 #include <idxmrk.hxx>
24 #include <view.hxx>
25 #include <basesh.hxx>
26 #include <wrtsh.hxx>
27 #include <swmodule.hxx>
28 #include <viewopt.hxx>
29 #include <docsh.hxx>
30 #include <globdoc.hxx>
31 #include <navipi.hxx>
32 #include <fldwrap.hxx>
33 #include <redlndlg.hxx>
34 #include <dpage.hxx>
35 #include <edtwin.hxx>
36 #include <formatclipboard.hxx>
37 #include <cmdid.h>
38 #include <sfx2/request.hxx>
39 #include <sfx2/viewfrm.hxx>
40 #include <wordcountdialog.hxx>
42 void SwView::Activate(bool bMDIActivate)
44 // fdo#40438 Update the layout to make sure everything is correct before showing the content
45 m_pWrtShell->StartAction();
46 m_pWrtShell->EndAction( true );
48 // Register the current View at the DocShell.
49 // The view remains active at the DocShell until it will
50 // be destroyed or by Activate a new one will be set.
51 SwDocShell* pDocSh = GetDocShell();
52 if(pDocSh)
53 pDocSh->SetView(this);
54 SwModule* pSwMod = SW_MOD();
55 pSwMod->SetView(this);
57 // Document size has changed.
58 if(!bDocSzUpdated)
59 DocSzChgd(m_aDocSz);
61 // make selection visible
62 if(m_bMakeSelectionVisible)
64 m_pWrtShell->MakeSelVisible();
65 m_bMakeSelectionVisible = false;
67 m_pHRuler->SetActive();
68 m_pVRuler->SetActive();
70 if ( bMDIActivate )
72 if ( m_pShell )
74 SfxDispatcher &rDispatcher = GetDispatcher();
75 SfxShell *pTopShell = rDispatcher.GetShell( 0 );
77 // this SwView is the top-most shell on the stack
78 if ( pTopShell == this )
80 for ( sal_uInt16 i = 1; true; ++i )
82 SfxShell *pSfxShell = rDispatcher.GetShell( i );
83 // does the stack contain any shells spawned by this SwView already?
84 if ( ( dynamic_cast< const SwBaseShell *>( pSfxShell ) != nullptr
85 || dynamic_cast< const FmFormShell *>( pSfxShell ) != nullptr )
86 && ( pSfxShell->GetViewShell() == this ) )
88 // it shouldn't b/c we haven't been activated yet
89 // so assert that 'cause it'll crash during dispose at the latest
90 assert( pSfxShell && "Corrupted shell stack: dependent shell positioned below its view");
92 else
93 break;
98 m_pWrtShell->ShellGetFocus(); // Selections visible
100 if( !m_sSwViewData.isEmpty() )
102 ReadUserData(m_sSwViewData);
103 m_sSwViewData.clear();
106 AttrChangedNotify(m_pWrtShell);
108 // Initialize Fielddlg newly if necessary (e.g. for TYP_SETVAR)
109 sal_uInt16 nId = SwFieldDlgWrapper::GetChildWindowId();
110 SfxViewFrame* pVFrame = GetViewFrame();
111 SwFieldDlgWrapper *pWrp = static_cast<SwFieldDlgWrapper*>(pVFrame->GetChildWindow(nId));
112 if (pWrp)
113 pWrp->ReInitDlg(GetDocShell());
115 // Initialize RedlineDlg newly if necessary
116 nId = SwRedlineAcceptChild::GetChildWindowId();
117 SwRedlineAcceptChild *pRed = static_cast<SwRedlineAcceptChild*>(pVFrame->GetChildWindow(nId));
118 if (pRed)
119 pRed->ReInitDlg(GetDocShell());
121 // reinit IdxMarkDlg
122 nId = SwInsertIdxMarkWrapper::GetChildWindowId();
123 SwInsertIdxMarkWrapper *pIdxMrk = static_cast<SwInsertIdxMarkWrapper*>(pVFrame->GetChildWindow(nId));
124 if (pIdxMrk)
125 pIdxMrk->ReInitDlg(*m_pWrtShell);
127 // reinit AuthMarkDlg
128 nId = SwInsertAuthMarkWrapper::GetChildWindowId();
129 SwInsertAuthMarkWrapper *pAuthMrk = static_cast<SwInsertAuthMarkWrapper*>(pVFrame->
130 GetChildWindow(nId));
131 if (pAuthMrk)
132 pAuthMrk->ReInitDlg(*m_pWrtShell);
134 else
135 // At least call the Notify (as a precaution because of the SlotFilter).
136 AttrChangedNotify(m_pWrtShell);
138 SfxViewShell::Activate(bMDIActivate);
141 void SwView::Deactivate(bool bMDIActivate)
143 if( g_bFlushCharBuffer ) // Are Characters still in the input buffer?
144 GetEditWin().FlushInBuffer();
146 if( bMDIActivate )
148 m_pWrtShell->ShellLoseFocus(); // Selections invisible
150 m_pHRuler->SetActive( false );
151 m_pVRuler->SetActive( false );
153 SfxViewShell::Deactivate(bMDIActivate);
156 void SwView::MarginChanged()
158 GetWrtShell().SetBrowseBorder( GetMargin() );
161 void SwView::ExecFormatPaintbrush(SfxRequest const & rReq)
163 if(!m_pFormatClipboard)
164 return;
166 if( m_pFormatClipboard->HasContent() )
168 m_pFormatClipboard->Erase();
170 SwApplyTemplate aTemplate;
171 GetEditWin().SetApplyTemplate(aTemplate);
173 else
175 bool bPersistentCopy = false;
176 const SfxItemSet *pArgs = rReq.GetArgs();
177 if( pArgs && pArgs->Count() >= 1 )
179 bPersistentCopy = pArgs->Get(SID_FORMATPAINTBRUSH).GetValue();
182 m_pFormatClipboard->Copy( GetWrtShell(), GetPool(), bPersistentCopy );
184 SwApplyTemplate aTemplate;
185 aTemplate.m_pFormatClipboard = m_pFormatClipboard;
186 GetEditWin().SetApplyTemplate(aTemplate);
188 GetViewFrame()->GetBindings().Invalidate(SID_FORMATPAINTBRUSH);
191 void SwView::StateFormatPaintbrush(SfxItemSet &rSet)
193 if(!m_pFormatClipboard)
194 return;
196 bool bHasContent = m_pFormatClipboard && m_pFormatClipboard->HasContent();
197 if( !bHasContent &&
198 !SwFormatClipboard::CanCopyThisType( GetWrtShell().GetSelectionType())
201 rSet.DisableItem( SID_FORMATPAINTBRUSH );
203 else
204 rSet.Put(SfxBoolItem(SID_FORMATPAINTBRUSH, bHasContent));
207 void SwView::UpdateWordCount(SfxShell* pShell, sal_uInt16 nSlot)
209 SfxViewFrame* pVFrame = GetViewFrame();
210 if (pVFrame != nullptr)
212 pVFrame->ToggleChildWindow(FN_WORDCOUNT_DIALOG);
213 pShell->Invalidate(nSlot);
215 SwWordCountWrapper *pWrdCnt = static_cast<SwWordCountWrapper*>(pVFrame->GetChildWindow(SwWordCountWrapper::GetChildWindowId()));
216 if (pWrdCnt)
217 pWrdCnt->UpdateCounts();
221 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */