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 <sfx2/msg.hxx>
21 : #include <svl/srchitem.hxx>
22 : #include <sfx2/dispatch.hxx>
23 : #include <sfx2/infobar.hxx>
24 : #include <sfx2/templdlg.hxx>
25 : #include <svx/srchdlg.hxx>
26 : #include <basic/sbxobj.hxx>
27 : #include <uivwimp.hxx>
28 : #include <svx/fmshell.hxx>
29 : #include <svx/extrusionbar.hxx>
30 : #include <svx/fontworkbar.hxx>
31 :
32 : #include <sfx2/objface.hxx>
33 : #include <swmodule.hxx>
34 : #include <unotxvw.hxx>
35 : #include <swtypes.hxx>
36 : #include <cmdid.h>
37 : #include <globals.hrc>
38 : #include <wrtsh.hxx>
39 : #include <edtwin.hxx>
40 : #include <wgrfsh.hxx>
41 : #include <wfrmsh.hxx>
42 : #include <wolesh.hxx>
43 : #include <wtabsh.hxx>
44 : #include <wlistsh.hxx>
45 : #include <wformsh.hxx>
46 : #include <wtextsh.hxx>
47 : #include <barcfg.hxx>
48 : #include <doc.hxx>
49 :
50 : // EIGENTLICH nicht moeglich !!
51 : #include <beziersh.hxx>
52 : #include <drawsh.hxx>
53 : #include <drwtxtsh.hxx>
54 : #include <annotsh.hxx>
55 :
56 : #include <wview.hxx>
57 : #include <wdocsh.hxx>
58 : #include <web.hrc>
59 : #include <shells.hrc>
60 :
61 : #define SwWebView
62 : #define Frames
63 : #define Graphics
64 : #define OLEObjects
65 : #define Controls
66 : #define Text
67 : #define Frame
68 : #define Graphic
69 : #define Object
70 : #define Draw
71 : #define DrawText
72 : #define TextInTable
73 : #define ListInText
74 : #define ListInTable
75 : #define Page
76 : #include <swslots.hxx>
77 :
78 :
79 20 : SFX_IMPL_NAMED_VIEWFACTORY(SwWebView, "Default")
80 : {
81 10 : SFX_VIEW_REGISTRATION(SwWebDocShell);
82 10 : }
83 :
84 70 : SFX_IMPL_INTERFACE( SwWebView, SwView, SW_RES(RID_WEBTOOLS_TOOLBOX) )
85 : {
86 10 : SFX_CHILDWINDOW_REGISTRATION(SfxTemplateDialogWrapper::GetChildWindowId());
87 10 : SFX_CHILDWINDOW_REGISTRATION(SvxSearchDialogWrapper::GetChildWindowId());
88 10 : SFX_CHILDWINDOW_REGISTRATION(SfxInfoBarContainerChild::GetChildWindowId());
89 20 : SFX_OBJECTBAR_REGISTRATION( SFX_OBJECTBAR_TOOLS|
90 : SFX_VISIBILITY_STANDARD|SFX_VISIBILITY_SERVER,
91 10 : SW_RES(RID_WEBTOOLS_TOOLBOX) );
92 10 : }
93 :
94 861 : TYPEINIT1(SwWebView,SwView)
95 :
96 0 : SwWebView::SwWebView(SfxViewFrame* _pFrame, SfxViewShell* _pShell) :
97 0 : SwView(_pFrame, _pShell)
98 : {
99 0 : }
100 :
101 0 : SwWebView::~SwWebView()
102 : {
103 0 : }
104 :
105 0 : void SwWebView::SelectShell()
106 : {
107 : // Entscheidung, ob UpdateTable gerufen werden muss
108 0 : sal_Bool bUpdateTable = sal_False;
109 0 : const SwFrmFmt* pCurTableFmt = GetWrtShell().GetTableFmt();
110 0 : if(pCurTableFmt && pCurTableFmt != GetLastTblFrmFmt())
111 : {
112 0 : bUpdateTable = sal_True; // kann erst spaeter ausgefuehrt werden
113 : }
114 0 : SetLastTblFrmFmt(pCurTableFmt);
115 : //SEL_TBL und SEL_TBL_CELLS koennen verodert sein!
116 0 : int nNewSelectionType = (GetWrtShell().GetSelectionType()
117 0 : & ~nsSelectionType::SEL_TBL_CELLS);
118 :
119 0 : int _nSelectionType = GetSelectionType();
120 0 : if ( nNewSelectionType == _nSelectionType )
121 : {
122 0 : GetViewFrame()->GetBindings().InvalidateAll( sal_False );
123 0 : if ( _nSelectionType & nsSelectionType::SEL_OLE ||
124 : _nSelectionType & nsSelectionType::SEL_GRF )
125 : //Fuer Grafiken und OLE kann sich natuerlich das Verb aendern!
126 0 : ImpSetVerb( nNewSelectionType );
127 : }
128 : else
129 : {
130 0 : SfxDispatcher &rDispatcher = *GetViewFrame()->GetDispatcher();
131 0 : SwToolbarConfigItem *pBarCfg = SW_MOD()->GetWebToolbarConfig();
132 :
133 0 : if( GetCurShell() )
134 : {
135 0 : rDispatcher.Flush(); // alle gecachten Shells wirklich loeschen
136 :
137 : //Zur alten Selektion merken welche Toolbar sichtbar war
138 0 : sal_Int32 nId = rDispatcher.GetObjectBarId( SFX_OBJECTBAR_OBJECT );
139 0 : if ( nId )
140 0 : pBarCfg->SetTopToolbar( _nSelectionType, nId );
141 :
142 : SfxShell *pSfxShell;
143 : sal_uInt16 i;
144 0 : for ( i = 0; sal_True; ++i )
145 : {
146 0 : pSfxShell = rDispatcher.GetShell( i );
147 0 : if ( !( pSfxShell->ISA( SwBaseShell ) ||
148 0 : pSfxShell->ISA( SwDrawTextShell ) || pSfxShell->ISA( SwAnnotationShell ) ) )
149 0 : break;
150 : }
151 0 : pSfxShell = rDispatcher.GetShell( --i );
152 : OSL_ENSURE( pSfxShell, "My Shell ist lost in space" );
153 0 : rDispatcher.Pop( *pSfxShell, SFX_SHELL_POP_UNTIL | SFX_SHELL_POP_DELETE);
154 : }
155 :
156 0 : sal_Bool bInitFormShell = sal_False;
157 0 : if( !GetFormShell() )
158 : {
159 0 : bInitFormShell = sal_True;
160 0 : SetFormShell( new FmFormShell( this ) );
161 0 : rDispatcher.Push( *GetFormShell() );
162 : }
163 :
164 0 : sal_Bool bSetExtInpCntxt = sal_False;
165 0 : _nSelectionType = nNewSelectionType;
166 0 : SetSelectionType( _nSelectionType );
167 : ShellModes eShellMode;
168 :
169 0 : if ( _nSelectionType & nsSelectionType::SEL_OLE )
170 : {
171 0 : eShellMode = SHELL_MODE_OBJECT;
172 0 : SetShell( new SwWebOleShell( *this ));
173 0 : rDispatcher.Push( *GetCurShell() );
174 : }
175 0 : else if ( _nSelectionType & nsSelectionType::SEL_FRM
176 : || _nSelectionType & nsSelectionType::SEL_GRF)
177 : {
178 0 : eShellMode = SHELL_MODE_FRAME;
179 0 : SetShell( new SwWebFrameShell( *this ));
180 0 : rDispatcher.Push( *GetCurShell() );
181 0 : if(_nSelectionType & nsSelectionType::SEL_GRF )
182 : {
183 0 : eShellMode = SHELL_MODE_GRAPHIC;
184 0 : SetShell( new SwWebGrfShell( *this ));
185 0 : rDispatcher.Push( *GetCurShell() );
186 : }
187 : }
188 0 : else if ( _nSelectionType & nsSelectionType::SEL_FRM )
189 : {
190 0 : eShellMode = SHELL_MODE_FRAME;
191 0 : SetShell( new SwWebFrameShell( *this ));
192 0 : rDispatcher.Push( *GetCurShell() );
193 : }
194 0 : else if ( _nSelectionType & nsSelectionType::SEL_DRW )
195 : {
196 0 : eShellMode = SHELL_MODE_DRAW;
197 0 : SetShell( new svx::ExtrusionBar( this ) );
198 0 : rDispatcher.Push( *GetCurShell() );
199 :
200 0 : SetShell( new svx::FontworkBar( this ) );
201 0 : rDispatcher.Push( *GetCurShell() );
202 :
203 0 : SetShell( new SwDrawShell( *this ));
204 0 : rDispatcher.Push( *GetCurShell() );
205 0 : if ( _nSelectionType & nsSelectionType::SEL_BEZ )
206 : {
207 0 : eShellMode = SHELL_MODE_BEZIER;
208 0 : SetShell( new SwBezierShell( *this ));
209 0 : rDispatcher.Push( *GetCurShell() );
210 : }
211 :
212 : }
213 0 : else if ( _nSelectionType & nsSelectionType::SEL_DRW_FORM )
214 : {
215 0 : eShellMode = SHELL_MODE_DRAW_FORM;
216 0 : SetShell( new SwWebDrawFormShell( *this ));
217 :
218 0 : rDispatcher.Push( *GetCurShell() );
219 : }
220 0 : else if ( _nSelectionType & nsSelectionType::SEL_DRW_TXT )
221 : {
222 0 : eShellMode = SHELL_MODE_DRAWTEXT;
223 0 : rDispatcher.Push( *(new SwBaseShell( *this )) );
224 0 : SetShell( new SwDrawTextShell( *this ));
225 0 : rDispatcher.Push( *GetCurShell() );
226 : }
227 0 : else if ( _nSelectionType & nsSelectionType::SEL_POSTIT )
228 : {
229 0 : eShellMode = SHELL_MODE_POSTIT;
230 0 : SetShell( new SwAnnotationShell( *this ) );
231 0 : rDispatcher.Push( *GetCurShell() );
232 : }
233 : else
234 : {
235 0 : bSetExtInpCntxt = sal_True;
236 0 : eShellMode = SHELL_MODE_TEXT;
237 0 : if ( _nSelectionType & nsSelectionType::SEL_NUM )
238 : {
239 0 : eShellMode = SHELL_MODE_LIST_TEXT;
240 0 : SetShell( new SwWebListShell( *this ));
241 0 : rDispatcher.Push( *GetCurShell() );
242 : }
243 0 : SetShell( new SwWebTextShell(*this));
244 0 : rDispatcher.Push( *GetCurShell() );
245 0 : if ( _nSelectionType & nsSelectionType::SEL_TBL )
246 : {
247 : eShellMode = eShellMode == SHELL_MODE_LIST_TEXT ? SHELL_MODE_TABLE_LIST_TEXT
248 0 : : SHELL_MODE_TABLE_TEXT;
249 0 : SetShell( new SwWebTableShell( *this ));
250 0 : rDispatcher.Push( *GetCurShell() );
251 : }
252 : }
253 0 : ImpSetVerb( _nSelectionType );
254 0 : GetViewImpl()->SetShellMode(eShellMode);
255 :
256 0 : if( !GetDocShell()->IsReadOnly() )
257 : {
258 0 : if( bSetExtInpCntxt && GetWrtShell().HasReadonlySel() )
259 0 : bSetExtInpCntxt = sal_False;
260 :
261 0 : InputContext aCntxt( GetEditWin().GetInputContext() );
262 : aCntxt.SetOptions( bSetExtInpCntxt
263 0 : ? (aCntxt.GetOptions() |
264 : ( INPUTCONTEXT_TEXT |
265 : INPUTCONTEXT_EXTTEXTINPUT ))
266 0 : : (aCntxt.GetOptions() & ~
267 : ( INPUTCONTEXT_TEXT |
268 0 : INPUTCONTEXT_EXTTEXTINPUT )) );
269 0 : GetEditWin().SetInputContext( aCntxt );
270 : }
271 :
272 : //Zur neuen Selektion die Toolbar aktivieren, die auch beim letzten Mal
273 : //aktiviert war
274 : //Vorher muss ein Flush() sein, betrifft aber lt. MBA nicht das UI und ist
275 : //kein Performance-Problem
276 : // TODO/LATER: maybe now the Flush() command is superfluous?!
277 0 : rDispatcher.Flush();
278 :
279 0 : Point aPnt = GetEditWin().GetPointerPosPixel();
280 0 : aPnt = GetEditWin().PixelToLogic(aPnt);
281 0 : GetEditWin().UpdatePointer(aPnt);
282 :
283 0 : if ( bInitFormShell && GetWrtShell().GetDrawView() )
284 0 : GetFormShell()->SetView( PTR_CAST( FmFormView,
285 0 : GetWrtShell().GetDrawView()));
286 :
287 :
288 : }
289 0 : GetViewImpl()->GetUNOObject_Impl()->NotifySelChanged();
290 :
291 : //Guenstiger Zeitpunkt fuer die Kommunikation mit OLE-Objekten?
292 0 : if ( GetDocShell()->GetDoc()->IsOLEPrtNotifyPending() )
293 0 : GetDocShell()->GetDoc()->PrtOLENotify( sal_False );
294 :
295 : //jetzt das Tabellen-Update
296 0 : if(bUpdateTable)
297 0 : GetWrtShell().UpdateTable();
298 0 : }
299 :
300 :
301 :
302 :
303 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|