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 <SidebarTxtControl.hxx>
21 :
22 : #include <SidebarTxtControlAcc.hxx>
23 :
24 : #include <SidebarWin.hxx>
25 : #include <PostItMgr.hxx>
26 :
27 : #include <cmdid.h>
28 : #include <docvw.hrc>
29 :
30 : #include <unotools/securityoptions.hxx>
31 :
32 : #include <sfx2/viewfrm.hxx>
33 : #include <sfx2/bindings.hxx>
34 : #include <sfx2/dispatch.hxx>
35 : #include <sfx2/mnumgr.hxx>
36 :
37 : #include <vcl/svapp.hxx>
38 : #include <vcl/help.hxx>
39 : #include <vcl/layout.hxx>
40 : #include <vcl/msgbox.hxx>
41 : #include <vcl/gradient.hxx>
42 : #include <vcl/scrbar.hxx>
43 : #include <vcl/settings.hxx>
44 :
45 : #include <editeng/outliner.hxx>
46 : #include <editeng/editeng.hxx>
47 : #include <editeng/editview.hxx>
48 : #include <editeng/flditem.hxx>
49 :
50 : #include <uitool.hxx>
51 : #include <view.hxx>
52 : #include <wrtsh.hxx>
53 : #include <shellres.hxx>
54 : #include <SwRewriter.hxx>
55 :
56 : namespace sw { namespace sidebarwindows {
57 :
58 0 : SidebarTxtControl::SidebarTxtControl( SwSidebarWin& rSidebarWin,
59 : WinBits nBits,
60 : SwView& rDocView,
61 : SwPostItMgr& rPostItMgr )
62 : : Control( &rSidebarWin, nBits )
63 : , mrSidebarWin( rSidebarWin )
64 : , mrDocView( rDocView )
65 0 : , mrPostItMgr( rPostItMgr )
66 : {
67 0 : AddEventListener( LINK( &mrSidebarWin, SwSidebarWin, WindowEventListener ) );
68 0 : }
69 :
70 0 : SidebarTxtControl::~SidebarTxtControl()
71 : {
72 0 : RemoveEventListener( LINK( &mrSidebarWin, SwSidebarWin, WindowEventListener ) );
73 0 : }
74 :
75 0 : OutlinerView* SidebarTxtControl::GetTextView() const
76 : {
77 0 : return mrSidebarWin.GetOutlinerView();
78 : }
79 :
80 0 : void SidebarTxtControl::GetFocus()
81 : {
82 0 : Window::GetFocus();
83 0 : if ( !mrSidebarWin.IsMouseOver() )
84 : {
85 0 : Invalidate();
86 : }
87 0 : }
88 :
89 0 : void SidebarTxtControl::LoseFocus()
90 : {
91 : // write the visible text back into the SwField
92 0 : mrSidebarWin.UpdateData();
93 :
94 0 : Window::LoseFocus();
95 0 : if ( !mrSidebarWin.IsMouseOver() )
96 : {
97 0 : Invalidate();
98 : }
99 0 : }
100 :
101 0 : void SidebarTxtControl::RequestHelp(const HelpEvent &rEvt)
102 : {
103 0 : sal_uInt16 nResId = 0;
104 0 : switch( mrSidebarWin.GetLayoutStatus() )
105 : {
106 0 : case SwPostItHelper::INSERTED: nResId = STR_REDLINE_INSERT; break;
107 0 : case SwPostItHelper::DELETED: nResId = STR_REDLINE_DELETE; break;
108 0 : default: nResId = 0;
109 : }
110 :
111 0 : SwContentAtPos aCntntAtPos( SwContentAtPos::SW_REDLINE );
112 0 : if ( nResId &&
113 0 : mrDocView.GetWrtShell().GetContentAtPos( mrSidebarWin.GetAnchorPos(), aCntntAtPos ) )
114 : {
115 0 : OUString sTxt = SW_RESSTR( nResId ) + ": " +
116 0 : aCntntAtPos.aFnd.pRedl->GetAuthorString() + " - " +
117 0 : GetAppLangDateTimeString( aCntntAtPos.aFnd.pRedl->GetTimeStamp() );
118 0 : Help::ShowQuickHelp( this,PixelToLogic(Rectangle(rEvt.GetMousePosPixel(),Size(50,10))),sTxt);
119 0 : }
120 0 : }
121 :
122 0 : void SidebarTxtControl::Paint( const Rectangle& rRect)
123 : {
124 0 : if ( !Application::GetSettings().GetStyleSettings().GetHighContrastMode() )
125 : {
126 0 : if ( mrSidebarWin.IsMouseOverSidebarWin() ||
127 0 : HasFocus() )
128 : {
129 0 : DrawGradient( Rectangle( Point(0,0), PixelToLogic(GetSizePixel()) ),
130 : Gradient( GradientStyle_LINEAR,
131 0 : mrSidebarWin.ColorDark(),
132 0 : mrSidebarWin.ColorDark() ) );
133 : }
134 : else
135 : {
136 0 : DrawGradient( Rectangle( Point(0,0), PixelToLogic(GetSizePixel()) ),
137 : Gradient( GradientStyle_LINEAR,
138 0 : mrSidebarWin.ColorLight(),
139 0 : mrSidebarWin.ColorDark()));
140 : }
141 : }
142 :
143 0 : if ( GetTextView() )
144 : {
145 0 : GetTextView()->Paint( rRect );
146 : }
147 :
148 0 : if ( mrSidebarWin.GetLayoutStatus()==SwPostItHelper::DELETED )
149 : {
150 0 : SetLineColor(mrSidebarWin.GetChangeColor());
151 0 : DrawLine( PixelToLogic( GetPosPixel() ),
152 0 : PixelToLogic( GetPosPixel() +
153 0 : Point( GetSizePixel().Width(),
154 0 : GetSizePixel().Height() ) ) );
155 0 : DrawLine( PixelToLogic( GetPosPixel() +
156 0 : Point( GetSizePixel().Width(),0) ),
157 0 : PixelToLogic( GetPosPixel() +
158 0 : Point( 0, GetSizePixel().Height() ) ) );
159 : }
160 0 : }
161 :
162 0 : void SidebarTxtControl::KeyInput( const KeyEvent& rKeyEvt )
163 : {
164 0 : const KeyCode& rKeyCode = rKeyEvt.GetKeyCode();
165 0 : sal_uInt16 nKey = rKeyCode.GetCode();
166 0 : if ( ( rKeyCode.IsMod1() && rKeyCode.IsMod2() ) &&
167 0 : ( (nKey == KEY_PAGEUP) || (nKey == KEY_PAGEDOWN) ) )
168 : {
169 0 : mrSidebarWin.SwitchToPostIt(nKey);
170 : }
171 0 : else if ( nKey == KEY_ESCAPE ||
172 0 : ( rKeyCode.IsMod1() &&
173 0 : ( nKey == KEY_PAGEUP ||
174 : nKey == KEY_PAGEDOWN ) ) )
175 : {
176 0 : mrSidebarWin.SwitchToFieldPos();
177 : }
178 0 : else if ( nKey == KEY_INSERT )
179 : {
180 0 : if ( !rKeyCode.IsMod1() && !rKeyCode.IsMod2() )
181 : {
182 0 : mrSidebarWin.ToggleInsMode();
183 : }
184 : }
185 : else
186 : {
187 : //let's make sure we see our note
188 0 : mrPostItMgr.MakeVisible(&mrSidebarWin);
189 :
190 0 : long aOldHeight = mrSidebarWin.GetPostItTextHeight();
191 0 : bool bDone = false;
192 :
193 : /// HACK: need to switch off processing of Undo/Redo in Outliner
194 0 : if ( !( (nKey == KEY_Z || nKey == KEY_Y) && rKeyCode.IsMod1()) )
195 : {
196 0 : bool bIsProtected = mrSidebarWin.IsProtected();
197 0 : if ( !bIsProtected ||
198 0 : ( bIsProtected &&
199 0 : !mrSidebarWin.GetOutlinerView()->GetOutliner()->GetEditEngine().DoesKeyChangeText(rKeyEvt)) )
200 : {
201 0 : bDone = GetTextView() && GetTextView()->PostKeyEvent( rKeyEvt );
202 : }
203 : else
204 : {
205 : MessageDialog(this, "InfoReadonlyDialog",
206 0 : "modules/swriter/ui/inforeadonlydialog.ui").Execute();
207 : }
208 : }
209 0 : if (bDone)
210 0 : mrSidebarWin.ResizeIfNecessary( aOldHeight, mrSidebarWin.GetPostItTextHeight() );
211 : else
212 : {
213 : // write back data first when showing navigator
214 0 : if ( nKey==KEY_F5 )
215 0 : mrSidebarWin.UpdateData();
216 0 : if (!mrDocView.KeyInput(rKeyEvt))
217 0 : Window::KeyInput(rKeyEvt);
218 : }
219 : }
220 :
221 0 : mrDocView.GetViewFrame()->GetBindings().InvalidateAll(false);
222 0 : }
223 :
224 0 : void SidebarTxtControl::MouseMove( const MouseEvent& rMEvt )
225 : {
226 0 : if ( GetTextView() )
227 : {
228 0 : OutlinerView* pOutlinerView( GetTextView() );
229 0 : pOutlinerView->MouseMove( rMEvt );
230 : // mba: why does OutlinerView not handle the modifier setting?!
231 : // this forces the postit to handle *all* pointer types
232 0 : SetPointer( pOutlinerView->GetPointer( rMEvt.GetPosPixel() ) );
233 :
234 0 : const EditView& aEV = pOutlinerView->GetEditView();
235 0 : const SvxFieldItem* pItem = aEV.GetFieldUnderMousePointer();
236 0 : if ( pItem )
237 : {
238 0 : const SvxFieldData* pFld = pItem->GetField();
239 0 : const SvxURLField* pURL = PTR_CAST( SvxURLField, pFld );
240 0 : if ( pURL )
241 : {
242 0 : OUString sURL( pURL->GetURL() );
243 0 : SvtSecurityOptions aSecOpts;
244 0 : if ( aSecOpts.IsOptionSet( SvtSecurityOptions::E_CTRLCLICK_HYPERLINK) )
245 0 : sURL = SwViewShell::GetShellRes()->aLinkCtrlClick + ": " + sURL;
246 : else
247 0 : sURL = SwViewShell::GetShellRes()->aLinkClick + ": " + sURL;
248 0 : Help::ShowQuickHelp( this,PixelToLogic(Rectangle(GetPosPixel(),Size(50,10))),sURL);
249 : }
250 : }
251 : }
252 0 : }
253 :
254 0 : void SidebarTxtControl::MouseButtonDown( const MouseEvent& rMEvt )
255 : {
256 0 : if ( GetTextView() )
257 : {
258 0 : SvtSecurityOptions aSecOpts;
259 0 : bool bExecuteMod = aSecOpts.IsOptionSet( SvtSecurityOptions::E_CTRLCLICK_HYPERLINK);
260 :
261 0 : if ( !bExecuteMod || (bExecuteMod && rMEvt.GetModifier() == KEY_MOD1))
262 : {
263 0 : const EditView& aEV = GetTextView()->GetEditView();
264 0 : const SvxFieldItem* pItem = aEV.GetFieldUnderMousePointer();
265 0 : if ( pItem )
266 : {
267 0 : const SvxFieldData* pFld = pItem->GetField();
268 0 : const SvxURLField* pURL = PTR_CAST( SvxURLField, pFld );
269 0 : if ( pURL )
270 : {
271 0 : GetTextView()->MouseButtonDown( rMEvt );
272 0 : SwWrtShell &rSh = mrDocView.GetWrtShell();
273 0 : OUString sURL( pURL->GetURL() );
274 0 : OUString sTarget( pURL->GetTargetFrame() );
275 0 : ::LoadURL(rSh, sURL, URLLOAD_NOFILTER, sTarget);
276 0 : return;
277 : }
278 : }
279 0 : }
280 : }
281 :
282 0 : GrabFocus();
283 0 : if ( GetTextView() )
284 : {
285 0 : GetTextView()->MouseButtonDown( rMEvt );
286 : }
287 0 : mrDocView.GetViewFrame()->GetBindings().InvalidateAll(false);
288 : }
289 :
290 0 : void SidebarTxtControl::MouseButtonUp( const MouseEvent& rMEvt )
291 : {
292 0 : if ( GetTextView() )
293 0 : GetTextView()->MouseButtonUp( rMEvt );
294 0 : }
295 :
296 0 : IMPL_LINK( SidebarTxtControl, OnlineSpellCallback, SpellCallbackInfo*, pInfo )
297 : {
298 0 : if ( pInfo->nCommand == SPELLCMD_STARTSPELLDLG )
299 : {
300 0 : mrDocView.GetViewFrame()->GetDispatcher()->Execute( FN_SPELL_GRAMMAR_DIALOG, SFX_CALLMODE_ASYNCHRON);
301 : }
302 0 : return 0;
303 : }
304 :
305 0 : IMPL_LINK( SidebarTxtControl, Select, Menu*, pSelMenu )
306 : {
307 0 : mrSidebarWin.ExecuteCommand( pSelMenu->GetCurItemId() );
308 0 : return 0;
309 : }
310 :
311 0 : void SidebarTxtControl::Command( const CommandEvent& rCEvt )
312 : {
313 0 : if ( rCEvt.GetCommand() == COMMAND_CONTEXTMENU )
314 : {
315 0 : if ( !mrSidebarWin.IsProtected() &&
316 0 : GetTextView() &&
317 0 : GetTextView()->IsWrongSpelledWordAtPos( rCEvt.GetMousePosPixel(), true ))
318 : {
319 0 : Link aLink = LINK(this, SidebarTxtControl, OnlineSpellCallback);
320 0 : GetTextView()->ExecuteSpellPopup(rCEvt.GetMousePosPixel(),&aLink);
321 : }
322 : else
323 : {
324 0 : SfxPopupMenuManager* pMgr = mrDocView.GetViewFrame()->GetDispatcher()->Popup(0, this,&rCEvt.GetMousePosPixel());
325 0 : ((PopupMenu*)pMgr->GetSVMenu())->SetSelectHdl( LINK(this, SidebarTxtControl, Select) );
326 :
327 : {
328 0 : OUString aText = ((PopupMenu*)pMgr->GetSVMenu())->GetItemText( FN_DELETE_NOTE_AUTHOR );
329 0 : SwRewriter aRewriter;
330 0 : aRewriter.AddRule(UndoArg1, mrSidebarWin.GetAuthor());
331 0 : aText = aRewriter.Apply(aText);
332 0 : ((PopupMenu*)pMgr->GetSVMenu())->SetItemText(FN_DELETE_NOTE_AUTHOR,aText);
333 : }
334 :
335 0 : Point aPos;
336 0 : if (rCEvt.IsMouseEvent())
337 0 : aPos = rCEvt.GetMousePosPixel();
338 : else
339 : {
340 0 : const Size aSize = GetSizePixel();
341 0 : aPos = Point( aSize.getWidth()/2, aSize.getHeight()/2 );
342 : }
343 :
344 : //!! call different Execute function to get rid of the new thesaurus sub menu
345 : //!! pointer created in the call to Popup.
346 : //!! Otherwise we would have a memory leak (see also #i107205#)
347 0 : pMgr->Execute( aPos, this );
348 0 : delete pMgr;
349 : }
350 : }
351 : else
352 0 : if (rCEvt.GetCommand() == COMMAND_WHEEL)
353 : {
354 0 : if (mrSidebarWin.IsScrollbarVisible())
355 : {
356 0 : const CommandWheelData* pData = rCEvt.GetWheelData();
357 0 : if (pData->IsShift() || pData->IsMod1() || pData->IsMod2())
358 : {
359 0 : mrDocView.HandleWheelCommands(rCEvt);
360 : }
361 : else
362 : {
363 0 : HandleScrollCommand( rCEvt, 0 , mrSidebarWin.Scrollbar());
364 : }
365 : }
366 : else
367 : {
368 0 : mrDocView.HandleWheelCommands(rCEvt);
369 : }
370 : }
371 : else
372 : {
373 0 : if ( GetTextView() )
374 0 : GetTextView()->Command( rCEvt );
375 : else
376 0 : Window::Command(rCEvt);
377 : }
378 0 : }
379 :
380 0 : OUString SidebarTxtControl::GetSurroundingText() const
381 : {
382 0 : if (GetTextView())
383 0 : return GetTextView()->GetSurroundingText();
384 0 : return OUString();
385 : }
386 :
387 0 : Selection SidebarTxtControl::GetSurroundingTextSelection() const
388 : {
389 0 : if( GetTextView() )
390 0 : return GetTextView()->GetSurroundingTextSelection();
391 : else
392 0 : return Selection( 0, 0 );
393 : }
394 :
395 0 : css::uno::Reference< css::accessibility::XAccessible > SidebarTxtControl::CreateAccessible()
396 : {
397 :
398 0 : SidebarTxtControlAccessible* pAcc( new SidebarTxtControlAccessible( *this ) );
399 0 : css::uno::Reference< css::awt::XWindowPeer > xWinPeer( pAcc );
400 0 : SetWindowPeer( xWinPeer, pAcc );
401 :
402 0 : css::uno::Reference< css::accessibility::XAccessible > xAcc( xWinPeer, css::uno::UNO_QUERY );
403 0 : return xAcc;
404 : }
405 :
406 0 : } } // end of namespace sw::sidebarwindows
407 :
408 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|