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