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 : #define SwWebView
64 : #define Text
65 : #define TextInTable
66 : #define ListInText
67 : #define ListInTable
68 : #include <swslots.hxx>
69 :
70 184 : SFX_IMPL_NAMED_VIEWFACTORY(SwWebView, "Default")
71 : {
72 90 : SFX_VIEW_REGISTRATION(SwWebDocShell);
73 90 : }
74 :
75 1186 : SFX_IMPL_INTERFACE(SwWebView, SwView, SW_RES(RID_WEBTOOLS_TOOLBOX) )
76 :
77 90 : void SwWebView::InitInterface_Impl()
78 : {
79 90 : GetStaticInterface()->RegisterChildWindow(SvxSearchDialogWrapper::GetChildWindowId());
80 90 : GetStaticInterface()->RegisterChildWindow(SfxInfoBarContainerChild::GetChildWindowId());
81 :
82 : GetStaticInterface()->RegisterObjectBar(SFX_OBJECTBAR_TOOLS|SFX_VISIBILITY_STANDARD|SFX_VISIBILITY_SERVER,
83 90 : SW_RES(RID_WEBTOOLS_TOOLBOX) );
84 90 : }
85 :
86 11082 : TYPEINIT1(SwWebView,SwView)
87 :
88 4 : SwWebView::SwWebView(SfxViewFrame* _pFrame, SfxViewShell* _pShell) :
89 4 : SwView(_pFrame, _pShell)
90 : {
91 4 : }
92 :
93 8 : SwWebView::~SwWebView()
94 : {
95 8 : }
96 :
97 8 : void SwWebView::SelectShell()
98 : {
99 : #if HAVE_FEATURE_DESKTOP
100 : // Decision whether UpdateTable must be called
101 8 : bool bUpdateTable = false;
102 8 : const SwFrmFmt* pCurTableFmt = GetWrtShell().GetTableFmt();
103 8 : if(pCurTableFmt && pCurTableFmt != GetLastTblFrmFmt())
104 : {
105 0 : bUpdateTable = true; // can only be executed later
106 : }
107 8 : SetLastTblFrmFmt(pCurTableFmt);
108 : //SEL_TBL and SEL_TBL_CELLS can be ored!
109 8 : int nNewSelectionType = (GetWrtShell().GetSelectionType()
110 8 : & ~nsSelectionType::SEL_TBL_CELLS);
111 :
112 8 : int _nSelectionType = GetSelectionType();
113 8 : if ( nNewSelectionType == _nSelectionType )
114 : {
115 4 : GetViewFrame()->GetBindings().InvalidateAll( false );
116 8 : if ( _nSelectionType & nsSelectionType::SEL_OLE ||
117 4 : _nSelectionType & nsSelectionType::SEL_GRF )
118 : //The verb may of course change for graphics and OLE!
119 0 : ImpSetVerb( nNewSelectionType );
120 : }
121 : else
122 : {
123 4 : SfxDispatcher &rDispatcher = *GetViewFrame()->GetDispatcher();
124 4 : SwToolbarConfigItem *pBarCfg = SW_MOD()->GetWebToolbarConfig();
125 :
126 4 : if( GetCurShell() )
127 : {
128 0 : rDispatcher.Flush(); // really delete all cached shells
129 :
130 : //Additional to the old selection remember which toolbar was visible.
131 0 : sal_Int32 nId = rDispatcher.GetObjectBarId( SFX_OBJECTBAR_OBJECT );
132 0 : if ( nId )
133 0 : pBarCfg->SetTopToolbar( _nSelectionType, nId );
134 :
135 : SfxShell *pSfxShell;
136 : sal_uInt16 i;
137 0 : for ( i = 0; true; ++i )
138 : {
139 0 : pSfxShell = rDispatcher.GetShell( i );
140 0 : if ( !( pSfxShell->ISA( SwBaseShell ) ||
141 0 : pSfxShell->ISA( SwDrawTextShell ) || pSfxShell->ISA( SwAnnotationShell ) ) )
142 0 : break;
143 : }
144 0 : if (i)
145 : {
146 0 : pSfxShell = rDispatcher.GetShell( --i );
147 : OSL_ENSURE( pSfxShell, "My Shell ist lost in space" );
148 0 : rDispatcher.Pop( *pSfxShell, SFX_SHELL_POP_UNTIL | SFX_SHELL_POP_DELETE);
149 0 : }
150 : }
151 :
152 4 : bool bInitFormShell = false;
153 4 : if( !GetFormShell() )
154 : {
155 4 : bInitFormShell = true;
156 4 : SetFormShell( new FmFormShell( this ) );
157 4 : rDispatcher.Push( *GetFormShell() );
158 : }
159 :
160 4 : bool bSetExtInpCntxt = false;
161 4 : _nSelectionType = nNewSelectionType;
162 4 : SetSelectionType( _nSelectionType );
163 : ShellModes eShellMode;
164 :
165 4 : if ( _nSelectionType & nsSelectionType::SEL_OLE )
166 : {
167 0 : eShellMode = SHELL_MODE_OBJECT;
168 0 : SetShell( new SwWebOleShell( *this ));
169 0 : rDispatcher.Push( *GetCurShell() );
170 : }
171 4 : else if ( _nSelectionType & nsSelectionType::SEL_FRM
172 4 : || _nSelectionType & nsSelectionType::SEL_GRF)
173 : {
174 0 : eShellMode = SHELL_MODE_FRAME;
175 0 : SetShell( new SwWebFrameShell( *this ));
176 0 : rDispatcher.Push( *GetCurShell() );
177 0 : if(_nSelectionType & nsSelectionType::SEL_GRF )
178 : {
179 0 : eShellMode = SHELL_MODE_GRAPHIC;
180 0 : SetShell( new SwWebGrfShell( *this ));
181 0 : rDispatcher.Push( *GetCurShell() );
182 : }
183 : }
184 4 : else if ( _nSelectionType & nsSelectionType::SEL_FRM )
185 : {
186 0 : eShellMode = SHELL_MODE_FRAME;
187 0 : SetShell( new SwWebFrameShell( *this ));
188 0 : rDispatcher.Push( *GetCurShell() );
189 : }
190 4 : else if ( _nSelectionType & nsSelectionType::SEL_DRW )
191 : {
192 0 : eShellMode = SHELL_MODE_DRAW;
193 0 : SetShell( new svx::ExtrusionBar( this ) );
194 0 : rDispatcher.Push( *GetCurShell() );
195 :
196 0 : SetShell( new svx::FontworkBar( this ) );
197 0 : rDispatcher.Push( *GetCurShell() );
198 :
199 0 : SetShell( new SwDrawShell( *this ));
200 0 : rDispatcher.Push( *GetCurShell() );
201 0 : if ( _nSelectionType & nsSelectionType::SEL_BEZ )
202 : {
203 0 : eShellMode = SHELL_MODE_BEZIER;
204 0 : SetShell( new SwBezierShell( *this ));
205 0 : rDispatcher.Push( *GetCurShell() );
206 : }
207 :
208 : }
209 4 : else if ( _nSelectionType & nsSelectionType::SEL_DRW_FORM )
210 : {
211 0 : eShellMode = SHELL_MODE_DRAW_FORM;
212 0 : SetShell( new SwWebDrawFormShell( *this ));
213 :
214 0 : rDispatcher.Push( *GetCurShell() );
215 : }
216 4 : else if ( _nSelectionType & nsSelectionType::SEL_DRW_TXT )
217 : {
218 0 : eShellMode = SHELL_MODE_DRAWTEXT;
219 0 : rDispatcher.Push( *(new SwBaseShell( *this )) );
220 0 : SetShell( new SwDrawTextShell( *this ));
221 0 : rDispatcher.Push( *GetCurShell() );
222 : }
223 4 : else if ( _nSelectionType & nsSelectionType::SEL_POSTIT )
224 : {
225 0 : eShellMode = SHELL_MODE_POSTIT;
226 0 : SetShell( new SwAnnotationShell( *this ) );
227 0 : rDispatcher.Push( *GetCurShell() );
228 : }
229 : else
230 : {
231 4 : bSetExtInpCntxt = true;
232 4 : eShellMode = SHELL_MODE_TEXT;
233 4 : if ( _nSelectionType & nsSelectionType::SEL_NUM )
234 : {
235 0 : eShellMode = SHELL_MODE_LIST_TEXT;
236 0 : SetShell( new SwWebListShell( *this ));
237 0 : rDispatcher.Push( *GetCurShell() );
238 : }
239 4 : SetShell( new SwWebTextShell(*this));
240 4 : rDispatcher.Push( *GetCurShell() );
241 4 : if ( _nSelectionType & nsSelectionType::SEL_TBL )
242 : {
243 : eShellMode = eShellMode == SHELL_MODE_LIST_TEXT ? SHELL_MODE_TABLE_LIST_TEXT
244 0 : : SHELL_MODE_TABLE_TEXT;
245 0 : SetShell( new SwWebTableShell( *this ));
246 0 : rDispatcher.Push( *GetCurShell() );
247 : }
248 : }
249 4 : ImpSetVerb( _nSelectionType );
250 4 : GetViewImpl()->SetShellMode(eShellMode);
251 :
252 4 : if( !GetDocShell()->IsReadOnly() )
253 : {
254 4 : if( bSetExtInpCntxt && GetWrtShell().HasReadonlySel() )
255 0 : bSetExtInpCntxt = false;
256 :
257 4 : InputContext aCntxt( GetEditWin().GetInputContext() );
258 : aCntxt.SetOptions( bSetExtInpCntxt
259 4 : ? (aCntxt.GetOptions() |
260 : ( INPUTCONTEXT_TEXT |
261 : INPUTCONTEXT_EXTTEXTINPUT ))
262 0 : : (aCntxt.GetOptions() & ~
263 : ( INPUTCONTEXT_TEXT |
264 8 : INPUTCONTEXT_EXTTEXTINPUT )) );
265 4 : GetEditWin().SetInputContext( aCntxt );
266 : }
267 :
268 : //Additional to the selection enable the toolbar, which was
269 : //activated last time
270 : //Before must be a Flush(), but concerns according to MBA not the
271 : //user interface and is not a performance issue.
272 : // TODO/LATER: maybe now the Flush() command is superfluous?!
273 4 : rDispatcher.Flush();
274 :
275 4 : Point aPnt = GetEditWin().GetPointerPosPixel();
276 4 : aPnt = GetEditWin().PixelToLogic(aPnt);
277 4 : GetEditWin().UpdatePointer(aPnt);
278 :
279 4 : if ( bInitFormShell && GetWrtShell().GetDrawView() )
280 12 : GetFormShell()->SetView( PTR_CAST( FmFormView,
281 12 : GetWrtShell().GetDrawView()));
282 :
283 : }
284 8 : GetViewImpl()->GetUNOObject_Impl()->NotifySelChanged();
285 :
286 : //Opportune time for the communication with OLE objects?
287 8 : if ( GetDocShell()->GetDoc()->IsOLEPrtNotifyPending() )
288 0 : GetDocShell()->GetDoc()->PrtOLENotify( false );
289 :
290 : //now the table update
291 8 : if(bUpdateTable)
292 0 : GetWrtShell().UpdateTable();
293 : #endif
294 278 : }
295 :
296 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|