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 <config_features.h>
21 :
22 : #include <sfx2/msg.hxx>
23 : #include <svl/srchitem.hxx>
24 : #include <sfx2/dispatch.hxx>
25 : #include <sfx2/infobar.hxx>
26 : #include <sfx2/templdlg.hxx>
27 : #include <svx/srchdlg.hxx>
28 : #include <basic/sbxobj.hxx>
29 : #include <uivwimp.hxx>
30 : #include <svx/fmshell.hxx>
31 : #include <svx/extrusionbar.hxx>
32 : #include <svx/fontworkbar.hxx>
33 :
34 : #include <sfx2/objface.hxx>
35 : #include <swmodule.hxx>
36 : #include <unotxvw.hxx>
37 : #include <swtypes.hxx>
38 : #include <cmdid.h>
39 : #include <globals.hrc>
40 : #include <wrtsh.hxx>
41 : #include <edtwin.hxx>
42 : #include <wgrfsh.hxx>
43 : #include <wfrmsh.hxx>
44 : #include <wolesh.hxx>
45 : #include <wtabsh.hxx>
46 : #include <wlistsh.hxx>
47 : #include <wformsh.hxx>
48 : #include <wtextsh.hxx>
49 : #include <barcfg.hxx>
50 : #include <doc.hxx>
51 :
52 : // TECHNICALLY not possible !!
53 : #include <beziersh.hxx>
54 : #include <drawsh.hxx>
55 : #include <drwtxtsh.hxx>
56 : #include <annotsh.hxx>
57 :
58 : #include <wview.hxx>
59 : #include <wdocsh.hxx>
60 : #include <web.hrc>
61 : #include <shells.hrc>
62 :
63 : #include <sfx2/request.hxx>
64 : // needed for -fsanitize=function visibility of typeinfo for functions of
65 : // type void(SfxShell*,SfxRequest&) defined in swslots.hxx
66 : #define SwWebView
67 : #define Text
68 : #define TextInTable
69 : #define ListInText
70 : #define ListInTable
71 : #include <swslots.hxx>
72 :
73 120 : SFX_IMPL_NAMED_VIEWFACTORY(SwWebView, "Default")
74 : {
75 59 : SFX_VIEW_REGISTRATION(SwWebDocShell);
76 59 : }
77 :
78 673 : SFX_IMPL_INTERFACE(SwWebView, SwView)
79 :
80 59 : void SwWebView::InitInterface_Impl()
81 : {
82 59 : GetStaticInterface()->RegisterChildWindow(SvxSearchDialogWrapper::GetChildWindowId());
83 59 : GetStaticInterface()->RegisterChildWindow(SfxInfoBarContainerChild::GetChildWindowId());
84 :
85 : GetStaticInterface()->RegisterObjectBar(SFX_OBJECTBAR_TOOLS|SFX_VISIBILITY_STANDARD|SFX_VISIBILITY_SERVER,
86 59 : RID_WEBTOOLS_TOOLBOX);
87 59 : }
88 :
89 8852 : TYPEINIT1(SwWebView,SwView)
90 :
91 2 : SwWebView::SwWebView(SfxViewFrame* _pFrame, SfxViewShell* _pShell) :
92 2 : SwView(_pFrame, _pShell)
93 : {
94 2 : }
95 :
96 4 : SwWebView::~SwWebView()
97 : {
98 4 : }
99 :
100 4 : void SwWebView::SelectShell()
101 : {
102 : #if HAVE_FEATURE_DESKTOP
103 : // Decision whether UpdateTable must be called
104 4 : bool bUpdateTable = false;
105 4 : const SwFrameFormat* pCurTableFormat = GetWrtShell().GetTableFormat();
106 4 : if(pCurTableFormat && pCurTableFormat != GetLastTableFrameFormat())
107 : {
108 0 : bUpdateTable = true; // can only be executed later
109 : }
110 4 : SetLastTableFrameFormat(pCurTableFormat);
111 : //SEL_TBL and SEL_TBL_CELLS can be ored!
112 4 : int nNewSelectionType = (GetWrtShell().GetSelectionType()
113 4 : & ~nsSelectionType::SEL_TBL_CELLS);
114 :
115 4 : int _nSelectionType = GetSelectionType();
116 4 : if ( nNewSelectionType == _nSelectionType )
117 : {
118 2 : GetViewFrame()->GetBindings().InvalidateAll( false );
119 4 : if ( _nSelectionType & nsSelectionType::SEL_OLE ||
120 2 : _nSelectionType & nsSelectionType::SEL_GRF )
121 : //The verb may of course change for graphics and OLE!
122 0 : ImpSetVerb( nNewSelectionType );
123 : }
124 : else
125 : {
126 2 : SfxDispatcher &rDispatcher = *GetViewFrame()->GetDispatcher();
127 2 : SwToolbarConfigItem *pBarCfg = SW_MOD()->GetWebToolbarConfig();
128 :
129 2 : if( GetCurShell() )
130 : {
131 0 : rDispatcher.Flush(); // really delete all cached shells
132 :
133 : //Additional to the old selection remember which toolbar was visible.
134 0 : sal_Int32 nId = rDispatcher.GetObjectBarId( SFX_OBJECTBAR_OBJECT );
135 0 : if ( nId )
136 0 : pBarCfg->SetTopToolbar( _nSelectionType, nId );
137 :
138 : SfxShell *pSfxShell;
139 : sal_uInt16 i;
140 0 : for ( i = 0; true; ++i )
141 : {
142 0 : pSfxShell = rDispatcher.GetShell( i );
143 0 : if ( !( pSfxShell->ISA( SwBaseShell ) ||
144 0 : pSfxShell->ISA( SwDrawTextShell ) || pSfxShell->ISA( SwAnnotationShell ) ) )
145 0 : break;
146 : }
147 0 : if (i)
148 : {
149 0 : pSfxShell = rDispatcher.GetShell( --i );
150 : OSL_ENSURE( pSfxShell, "My Shell ist lost in space" );
151 0 : rDispatcher.Pop( *pSfxShell, SfxDispatcherPopFlags::POP_UNTIL | SfxDispatcherPopFlags::POP_DELETE);
152 0 : }
153 : }
154 :
155 2 : bool bInitFormShell = false;
156 2 : if( !GetFormShell() )
157 : {
158 2 : bInitFormShell = true;
159 2 : SetFormShell( new FmFormShell( this ) );
160 2 : rDispatcher.Push( *GetFormShell() );
161 : }
162 :
163 2 : bool bSetExtInpCntxt = false;
164 2 : _nSelectionType = nNewSelectionType;
165 2 : SetSelectionType( _nSelectionType );
166 : ShellModes eShellMode;
167 :
168 2 : if ( _nSelectionType & nsSelectionType::SEL_OLE )
169 : {
170 0 : eShellMode = SHELL_MODE_OBJECT;
171 0 : SetShell( new SwWebOleShell( *this ));
172 0 : rDispatcher.Push( *GetCurShell() );
173 : }
174 2 : else if ( _nSelectionType & nsSelectionType::SEL_FRM
175 2 : || _nSelectionType & nsSelectionType::SEL_GRF)
176 : {
177 0 : eShellMode = SHELL_MODE_FRAME;
178 0 : SetShell( new SwWebFrameShell( *this ));
179 0 : rDispatcher.Push( *GetCurShell() );
180 0 : if(_nSelectionType & nsSelectionType::SEL_GRF )
181 : {
182 0 : eShellMode = SHELL_MODE_GRAPHIC;
183 0 : SetShell( new SwWebGrfShell( *this ));
184 0 : rDispatcher.Push( *GetCurShell() );
185 : }
186 : }
187 2 : else if ( _nSelectionType & nsSelectionType::SEL_FRM )
188 : {
189 0 : eShellMode = SHELL_MODE_FRAME;
190 0 : SetShell( new SwWebFrameShell( *this ));
191 0 : rDispatcher.Push( *GetCurShell() );
192 : }
193 2 : else if ( _nSelectionType & nsSelectionType::SEL_DRW )
194 : {
195 0 : eShellMode = SHELL_MODE_DRAW;
196 0 : SetShell( new svx::ExtrusionBar( this ) );
197 0 : rDispatcher.Push( *GetCurShell() );
198 :
199 0 : SetShell( new svx::FontworkBar( this ) );
200 0 : rDispatcher.Push( *GetCurShell() );
201 :
202 0 : SetShell( new SwDrawShell( *this ));
203 0 : rDispatcher.Push( *GetCurShell() );
204 0 : if ( _nSelectionType & nsSelectionType::SEL_BEZ )
205 : {
206 0 : eShellMode = SHELL_MODE_BEZIER;
207 0 : SetShell( new SwBezierShell( *this ));
208 0 : rDispatcher.Push( *GetCurShell() );
209 : }
210 :
211 : }
212 2 : else if ( _nSelectionType & nsSelectionType::SEL_DRW_FORM )
213 : {
214 0 : eShellMode = SHELL_MODE_DRAW_FORM;
215 0 : SetShell( new SwWebDrawFormShell( *this ));
216 :
217 0 : rDispatcher.Push( *GetCurShell() );
218 : }
219 2 : else if ( _nSelectionType & nsSelectionType::SEL_DRW_TXT )
220 : {
221 0 : eShellMode = SHELL_MODE_DRAWTEXT;
222 0 : rDispatcher.Push( *(new SwBaseShell( *this )) );
223 0 : SetShell( new SwDrawTextShell( *this ));
224 0 : rDispatcher.Push( *GetCurShell() );
225 : }
226 2 : else if ( _nSelectionType & nsSelectionType::SEL_POSTIT )
227 : {
228 0 : eShellMode = SHELL_MODE_POSTIT;
229 0 : SetShell( new SwAnnotationShell( *this ) );
230 0 : rDispatcher.Push( *GetCurShell() );
231 : }
232 : else
233 : {
234 2 : bSetExtInpCntxt = true;
235 2 : eShellMode = SHELL_MODE_TEXT;
236 2 : if ( _nSelectionType & nsSelectionType::SEL_NUM )
237 : {
238 0 : eShellMode = SHELL_MODE_LIST_TEXT;
239 0 : SetShell( new SwWebListShell( *this ));
240 0 : rDispatcher.Push( *GetCurShell() );
241 : }
242 2 : SetShell( new SwWebTextShell(*this));
243 2 : rDispatcher.Push( *GetCurShell() );
244 2 : if ( _nSelectionType & nsSelectionType::SEL_TBL )
245 : {
246 : eShellMode = eShellMode == SHELL_MODE_LIST_TEXT ? SHELL_MODE_TABLE_LIST_TEXT
247 0 : : SHELL_MODE_TABLE_TEXT;
248 0 : SetShell( new SwWebTableShell( *this ));
249 0 : rDispatcher.Push( *GetCurShell() );
250 : }
251 : }
252 2 : ImpSetVerb( _nSelectionType );
253 2 : GetViewImpl()->SetShellMode(eShellMode);
254 :
255 2 : if( !GetDocShell()->IsReadOnly() )
256 : {
257 2 : if( bSetExtInpCntxt && GetWrtShell().HasReadonlySel() )
258 0 : bSetExtInpCntxt = false;
259 :
260 2 : InputContext aCntxt( GetEditWin().GetInputContext() );
261 : aCntxt.SetOptions( bSetExtInpCntxt
262 : ? (aCntxt.GetOptions() |
263 : ( InputContextFlags::Text |
264 2 : InputContextFlags::ExtText ))
265 : : (aCntxt.GetOptions() & ~
266 2 : InputContextFlags( InputContextFlags::Text |
267 6 : InputContextFlags::ExtText )) );
268 2 : GetEditWin().SetInputContext( aCntxt );
269 : }
270 :
271 : //Additional to the selection enable the toolbar, which was
272 : //activated last time
273 : //Before must be a Flush(), but concerns according to MBA not the
274 : //user interface and is not a performance issue.
275 : // TODO/LATER: maybe now the Flush() command is superfluous?!
276 2 : rDispatcher.Flush();
277 :
278 2 : Point aPnt = GetEditWin().GetPointerPosPixel();
279 2 : aPnt = GetEditWin().PixelToLogic(aPnt);
280 2 : GetEditWin().UpdatePointer(aPnt);
281 :
282 2 : if ( bInitFormShell && GetWrtShell().GetDrawView() )
283 6 : GetFormShell()->SetView( PTR_CAST( FmFormView,
284 6 : GetWrtShell().GetDrawView()));
285 :
286 : }
287 4 : GetViewImpl()->GetUNOObject_Impl()->NotifySelChanged();
288 :
289 : //Opportune time for the communication with OLE objects?
290 4 : if ( GetDocShell()->GetDoc()->IsOLEPrtNotifyPending() )
291 0 : GetDocShell()->GetDoc()->PrtOLENotify( false );
292 :
293 : //now the table update
294 4 : if(bUpdateTable)
295 0 : GetWrtShell().UpdateTable();
296 : #endif
297 181 : }
298 :
299 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|