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 :
21 : #include "sddll.hxx"
22 :
23 : #include <com/sun/star/beans/XMultiPropertyStates.hpp>
24 : #include <com/sun/star/frame/XController.hpp>
25 : #include <com/sun/star/frame/XModel.hpp>
26 : #include <com/sun/star/view/XSelectionSupplier.hpp>
27 : #include <com/sun/star/geometry/RealPoint2D.hpp>
28 : #include <com/sun/star/text/XText.hpp>
29 : #include <com/sun/star/document/XEventBroadcaster.hpp>
30 : #include <comphelper/string.hxx>
31 : #include <svx/svxids.hrc>
32 :
33 : #include <vcl/settings.hxx>
34 : #include <vcl/menu.hxx>
35 : #include <vcl/msgbox.hxx>
36 :
37 : #include <sal/macros.h>
38 : #include <svl/style.hxx>
39 : #include <svl/itempool.hxx>
40 : #include <unotools/useroptions.hxx>
41 : #include <unotools/syslocale.hxx>
42 : #include <unotools/saveopt.hxx>
43 :
44 : #include <tools/datetime.hxx>
45 :
46 : #include <sfx2/imagemgr.hxx>
47 : #include <sfx2/viewfrm.hxx>
48 : #include <sfx2/bindings.hxx>
49 : #include <sfx2/app.hxx>
50 : #include <sfx2/request.hxx>
51 : #include <sfx2/dispatch.hxx>
52 : #include <sfx2/objface.hxx>
53 :
54 : #include <editeng/editeng.hxx>
55 : #include <editeng/eeitem.hxx>
56 : #include <editeng/fontitem.hxx>
57 : #include <editeng/fhgtitem.hxx>
58 : #include <editeng/outlobj.hxx>
59 : #include <editeng/postitem.hxx>
60 : #include <editeng/wghtitem.hxx>
61 : #include <editeng/udlnitem.hxx>
62 : #include <editeng/crossedoutitem.hxx>
63 :
64 : #include <svx/svdetc.hxx>
65 :
66 : #include "annotationmanager.hxx"
67 : #include "annotationmanagerimpl.hxx"
68 : #include "annotationwindow.hxx"
69 : #include "annotations.hrc"
70 :
71 : #include "ToolBarManager.hxx"
72 : #include "DrawDocShell.hxx"
73 : #include "DrawViewShell.hxx"
74 : #include "DrawController.hxx"
75 : #include "glob.hrc"
76 : #include "sdresid.hxx"
77 : #include "EventMultiplexer.hxx"
78 : #include "ViewShellManager.hxx"
79 : #include "helpids.h"
80 : #include "sdpage.hxx"
81 : #include "drawdoc.hxx"
82 : #include "textapi.hxx"
83 : #include "optsitem.hxx"
84 :
85 : #include <boost/scoped_ptr.hpp>
86 :
87 : using namespace ::com::sun::star;
88 : using namespace ::com::sun::star::uno;
89 : using namespace ::com::sun::star::drawing;
90 : using namespace ::com::sun::star::document;
91 : using namespace ::com::sun::star::geometry;
92 : using namespace ::com::sun::star::container;
93 : using namespace ::com::sun::star::beans;
94 : using namespace ::com::sun::star::text;
95 : using namespace ::com::sun::star::view;
96 : using namespace ::com::sun::star::style;
97 : using namespace ::com::sun::star::frame;
98 : using namespace ::com::sun::star::lang;
99 : using namespace ::com::sun::star::ui;
100 : using namespace ::com::sun::star::task;
101 : using namespace ::com::sun::star::office;
102 :
103 : namespace sd {
104 :
105 :
106 :
107 : extern TextApiObject* getTextApiObject( const Reference< XAnnotation >& xAnnotation );
108 :
109 :
110 :
111 0 : SfxItemPool* GetAnnotationPool()
112 : {
113 : static SfxItemPool* mpAnnotationPool = 0;
114 0 : if( mpAnnotationPool == 0 )
115 : {
116 0 : mpAnnotationPool = EditEngine::CreatePool( false );
117 0 : mpAnnotationPool->SetPoolDefaultItem(SvxFontHeightItem(423,100,EE_CHAR_FONTHEIGHT));
118 :
119 0 : Font aAppFont( Application::GetSettings().GetStyleSettings().GetAppFont() );
120 0 : mpAnnotationPool->SetPoolDefaultItem(SvxFontItem(aAppFont.GetFamily(),aAppFont.GetName(),"",PITCH_DONTKNOW,RTL_TEXTENCODING_DONTKNOW,EE_CHAR_FONTINFO));
121 : }
122 :
123 0 : return mpAnnotationPool;
124 : }
125 :
126 :
127 :
128 0 : static SfxBindings* getBindings( ViewShellBase& rBase )
129 : {
130 0 : if( rBase.GetMainViewShell().get() && rBase.GetMainViewShell()->GetViewFrame() )
131 0 : return &rBase.GetMainViewShell()->GetViewFrame()->GetBindings();
132 :
133 0 : return 0;
134 : }
135 :
136 :
137 :
138 0 : static SfxDispatcher* getDispatcher( ViewShellBase& rBase )
139 : {
140 0 : if( rBase.GetMainViewShell().get() && rBase.GetMainViewShell()->GetViewFrame() )
141 0 : return rBase.GetMainViewShell()->GetViewFrame()->GetDispatcher();
142 :
143 0 : return 0;
144 : }
145 :
146 0 : com::sun::star::util::DateTime getCurrentDateTime()
147 : {
148 0 : DateTime aCurrentDate( DateTime::SYSTEM );
149 0 : return com::sun::star::util::DateTime( 0, aCurrentDate.GetSec(),
150 0 : aCurrentDate.GetMin(), aCurrentDate.GetHour(),
151 0 : aCurrentDate.GetDay(), aCurrentDate.GetMonth(),
152 0 : aCurrentDate.GetYear(), false );
153 : }
154 :
155 0 : OUString getAnnotationDateTimeString( const Reference< XAnnotation >& xAnnotation )
156 : {
157 0 : OUString sRet;
158 0 : if( xAnnotation.is() )
159 : {
160 0 : const SvtSysLocale aSysLocale;
161 0 : const LocaleDataWrapper& rLocalData = aSysLocale.GetLocaleData();
162 :
163 0 : com::sun::star::util::DateTime aDateTime( xAnnotation->getDateTime() );
164 :
165 0 : Date aSysDate( Date::SYSTEM );
166 0 : Date aDate = Date( aDateTime.Day, aDateTime.Month, aDateTime.Year );
167 0 : if (aDate==aSysDate)
168 0 : sRet = SdResId(STR_ANNOTATION_TODAY);
169 0 : else if (aDate == Date(aSysDate-1))
170 0 : sRet = SdResId(STR_ANNOTATION_YESTERDAY);
171 0 : else if (aDate.IsValidAndGregorian() )
172 0 : sRet = rLocalData.getDate(aDate);
173 :
174 0 : Time aTime( aDateTime.Hours, aDateTime.Minutes, aDateTime.Seconds, aDateTime.NanoSeconds );
175 0 : if(aTime.GetTime() != 0)
176 0 : sRet = sRet + " " + rLocalData.getTime( aTime,false );
177 : }
178 0 : return sRet;
179 : }
180 :
181 :
182 :
183 0 : AnnotationManagerImpl::AnnotationManagerImpl( ViewShellBase& rViewShellBase )
184 : : AnnotationManagerImplBase( m_aMutex )
185 : , mrBase( rViewShellBase )
186 0 : , mpDoc( rViewShellBase.GetDocument() )
187 : , mbShowAnnotations( true )
188 0 : , mnUpdateTagsEvent( 0 )
189 : {
190 0 : SdOptions* pOptions = SD_MOD()->GetSdOptions(mpDoc->GetDocumentType());
191 0 : if( pOptions )
192 0 : mbShowAnnotations = pOptions->IsShowComments() == sal_True;
193 0 : }
194 :
195 :
196 :
197 0 : void AnnotationManagerImpl::init()
198 : {
199 : // get current controller and initialize listeners
200 : try
201 : {
202 0 : addListener();
203 0 : mxView = Reference< XDrawView >::query(mrBase.GetController());
204 : }
205 0 : catch( Exception& )
206 : {
207 : OSL_FAIL( "sd::AnnotationManagerImpl::AnnotationManagerImpl(), Exception caught!" );
208 : }
209 :
210 : try
211 : {
212 0 : Reference<XEventBroadcaster> xModel (mrBase.GetDocShell()->GetModel(), UNO_QUERY_THROW );
213 0 : Reference<XEventListener> xListener( this );
214 0 : xModel->addEventListener( xListener );
215 : }
216 0 : catch( Exception& )
217 : {
218 : }
219 0 : }
220 :
221 :
222 :
223 : // WeakComponentImplHelper1
224 0 : void SAL_CALL AnnotationManagerImpl::disposing ()
225 : {
226 : try
227 : {
228 0 : Reference<XEventBroadcaster> xModel (mrBase.GetDocShell()->GetModel(), UNO_QUERY_THROW );
229 0 : Reference<XEventListener> xListener( this );
230 0 : xModel->removeEventListener( xListener );
231 : }
232 0 : catch( Exception& )
233 : {
234 : }
235 :
236 0 : removeListener();
237 0 : DisposeTags();
238 :
239 0 : if( mnUpdateTagsEvent )
240 : {
241 0 : Application::RemoveUserEvent( mnUpdateTagsEvent );
242 0 : mnUpdateTagsEvent = 0;
243 : }
244 :
245 0 : mxView.clear();
246 0 : mxCurrentPage.clear();
247 0 : }
248 :
249 :
250 :
251 : // XEventListener
252 0 : void SAL_CALL AnnotationManagerImpl::notifyEvent( const ::com::sun::star::document::EventObject& aEvent ) throw (::com::sun::star::uno::RuntimeException, std::exception)
253 : {
254 0 : if( aEvent.EventName == "OnAnnotationInserted" || aEvent.EventName == "OnAnnotationRemoved" || aEvent.EventName == "OnAnnotationChanged" )
255 : {
256 0 : UpdateTags();
257 : }
258 0 : }
259 :
260 0 : void SAL_CALL AnnotationManagerImpl::disposing( const ::com::sun::star::lang::EventObject& /*Source*/ ) throw (::com::sun::star::uno::RuntimeException, std::exception)
261 : {
262 0 : }
263 :
264 0 : void AnnotationManagerImpl::ShowAnnotations( bool bShow )
265 : {
266 : // enforce show annotations if a new annotation is inserted
267 0 : if( mbShowAnnotations != bShow )
268 : {
269 0 : mbShowAnnotations = bShow;
270 :
271 0 : SdOptions* pOptions = SD_MOD()->GetSdOptions(mpDoc->GetDocumentType());
272 0 : if( pOptions )
273 0 : pOptions->SetShowComments( mbShowAnnotations ? sal_True : sal_False );
274 :
275 0 : UpdateTags();
276 : }
277 0 : }
278 :
279 :
280 :
281 0 : void AnnotationManagerImpl::ExecuteAnnotation(SfxRequest& rReq )
282 : {
283 0 : switch( rReq.GetSlot() )
284 : {
285 : case SID_INSERT_POSTIT:
286 0 : ExecuteInsertAnnotation( rReq );
287 0 : break;
288 : case SID_DELETE_POSTIT:
289 : case SID_DELETEALL_POSTIT:
290 : case SID_DELETEALLBYAUTHOR_POSTIT:
291 0 : ExecuteDeleteAnnotation( rReq );
292 0 : break;
293 : case SID_PREVIOUS_POSTIT:
294 : case SID_NEXT_POSTIT:
295 0 : SelectNextAnnotation( rReq.GetSlot() == SID_NEXT_POSTIT );
296 0 : break;
297 : case SID_REPLYTO_POSTIT:
298 0 : ExecuteReplyToAnnotation( rReq );
299 0 : break;
300 : case SID_SHOW_POSTIT:
301 0 : ShowAnnotations( !mbShowAnnotations );
302 0 : break;
303 : }
304 0 : }
305 :
306 :
307 :
308 0 : void AnnotationManagerImpl::ExecuteInsertAnnotation(SfxRequest& /*rReq*/)
309 : {
310 0 : ShowAnnotations(true);
311 0 : InsertAnnotation();
312 0 : }
313 :
314 :
315 :
316 0 : void AnnotationManagerImpl::ExecuteDeleteAnnotation(SfxRequest& rReq)
317 : {
318 0 : ShowAnnotations( true );
319 :
320 0 : const SfxItemSet* pArgs = rReq.GetArgs();
321 :
322 0 : switch( rReq.GetSlot() )
323 : {
324 : case SID_DELETEALL_POSTIT:
325 0 : DeleteAllAnnotations();
326 0 : break;
327 : case SID_DELETEALLBYAUTHOR_POSTIT:
328 0 : if( pArgs )
329 : {
330 0 : const SfxPoolItem* pPoolItem = NULL;
331 0 : if( SFX_ITEM_SET == pArgs->GetItemState( SID_DELETEALLBYAUTHOR_POSTIT, true, &pPoolItem ) )
332 : {
333 0 : OUString sAuthor( (( const SfxStringItem* ) pPoolItem )->GetValue() );
334 0 : DeleteAnnotationsByAuthor( sAuthor );
335 : }
336 : }
337 0 : break;
338 : case SID_DELETE_POSTIT:
339 : {
340 0 : Reference< XAnnotation > xAnnotation;
341 :
342 0 : if( rReq.GetSlot() == SID_DELETE_POSTIT )
343 : {
344 0 : if( pArgs )
345 : {
346 0 : const SfxPoolItem* pPoolItem = NULL;
347 0 : if( SFX_ITEM_SET == pArgs->GetItemState( SID_DELETE_POSTIT, true, &pPoolItem ) )
348 0 : ( ( const SfxUnoAnyItem* ) pPoolItem )->GetValue() >>= xAnnotation;
349 : }
350 : }
351 :
352 0 : if( !xAnnotation.is() )
353 0 : GetSelectedAnnotation( xAnnotation );
354 :
355 0 : DeleteAnnotation( xAnnotation );
356 : }
357 0 : break;
358 : }
359 :
360 0 : UpdateTags();
361 0 : }
362 :
363 :
364 :
365 0 : void AnnotationManagerImpl::InsertAnnotation()
366 : {
367 0 : SdPage* pPage = GetCurrentPage();
368 0 : if( pPage )
369 : {
370 0 : if( mpDoc->IsUndoEnabled() )
371 0 : mpDoc->BegUndo( SD_RESSTR( STR_ANNOTATION_UNDO_INSERT ) );
372 :
373 : // find free space for new annotation
374 0 : int y = 0, x = 0;
375 :
376 0 : AnnotationVector aAnnotations( pPage->getAnnotations() );
377 0 : if( !aAnnotations.empty() )
378 : {
379 0 : const int page_width = pPage->GetSize().Width();
380 0 : const int width = 1000;
381 0 : const int height = 800;
382 0 : Rectangle aTagRect;
383 :
384 : while( true )
385 : {
386 0 : Rectangle aNewRect( x, y, x + width - 1, y + height - 1 );
387 0 : bool bFree = true;
388 :
389 0 : for( AnnotationVector::iterator iter = aAnnotations.begin(); iter != aAnnotations.end(); ++iter )
390 : {
391 0 : RealPoint2D aPoint( (*iter)->getPosition() );
392 0 : aTagRect.Left() = sal::static_int_cast< long >( aPoint.X * 100.0 );
393 0 : aTagRect.Top() = sal::static_int_cast< long >( aPoint.Y * 100.0 );
394 0 : aTagRect.Right() = aTagRect.Left() + width - 1;
395 0 : aTagRect.Bottom() = aTagRect.Top() + height - 1;
396 :
397 0 : if( aNewRect.IsOver( aTagRect ) )
398 : {
399 0 : bFree = false;
400 0 : break;
401 : }
402 : }
403 :
404 0 : if( bFree == false)
405 : {
406 0 : x += width;
407 0 : if( x > page_width )
408 : {
409 0 : x = 0;
410 0 : y += height;
411 : }
412 : }
413 : else
414 : {
415 0 : break;
416 : }
417 0 : }
418 : }
419 :
420 0 : Reference< XAnnotation > xAnnotation;
421 0 : pPage->createAnnotation( xAnnotation );
422 :
423 : // set current author to new annotation
424 0 : SvtUserOptions aUserOptions;
425 0 : xAnnotation->setAuthor( aUserOptions.GetFullName() );
426 :
427 : // set current time to new annotation
428 0 : xAnnotation->setDateTime( getCurrentDateTime() );
429 :
430 : // set position
431 0 : RealPoint2D aPos( ((double)x) / 100.0, ((double)y) / 100.0 );
432 0 : xAnnotation->setPosition( aPos );
433 :
434 0 : if( mpDoc->IsUndoEnabled() )
435 0 : mpDoc->EndUndo();
436 :
437 0 : UpdateTags(true);
438 0 : SelectAnnotation( xAnnotation, true );
439 : }
440 0 : }
441 :
442 :
443 :
444 0 : void AnnotationManagerImpl::ExecuteReplyToAnnotation( SfxRequest& rReq )
445 : {
446 0 : Reference< XAnnotation > xAnnotation;
447 0 : const SfxItemSet* pArgs = rReq.GetArgs();
448 0 : if( pArgs )
449 : {
450 0 : const SfxPoolItem* pPoolItem = NULL;
451 0 : if( SFX_ITEM_SET == pArgs->GetItemState( rReq.GetSlot(), true, &pPoolItem ) )
452 0 : ( ( const SfxUnoAnyItem* ) pPoolItem )->GetValue() >>= xAnnotation;
453 : }
454 :
455 :
456 0 : TextApiObject* pTextApi = getTextApiObject( xAnnotation );
457 0 : if( pTextApi )
458 : {
459 0 : boost::scoped_ptr< ::Outliner > pOutliner( new ::Outliner(GetAnnotationPool(),OUTLINERMODE_TEXTOBJECT) );
460 :
461 0 : mpDoc->SetCalcFieldValueHdl( pOutliner.get() );
462 0 : pOutliner->SetUpdateMode( true );
463 :
464 0 : OUString aStr(SD_RESSTR(STR_ANNOTATION_REPLY));
465 0 : OUString sAuthor( xAnnotation->getAuthor() );
466 0 : if( sAuthor.isEmpty() )
467 0 : sAuthor = SD_RESSTR( STR_ANNOTATION_NOAUTHOR );
468 :
469 0 : aStr = aStr.replaceFirst("%1", sAuthor);
470 :
471 0 : aStr += " (" + getAnnotationDateTimeString( xAnnotation ) + "): \"";
472 :
473 0 : OUString sQuote( pTextApi->GetText() );
474 :
475 0 : if( sQuote.isEmpty() )
476 0 : sQuote = "...";
477 0 : aStr += sQuote + "\"\n";
478 :
479 0 : sal_Int32 nParaCount = comphelper::string::getTokenCount(aStr, '\n');
480 0 : for( sal_Int32 nPara = 0; nPara < nParaCount; nPara++ )
481 0 : pOutliner->Insert( aStr.getToken( nPara, '\n' ), EE_PARA_APPEND, -1 );
482 :
483 0 : if( pOutliner->GetParagraphCount() > 1 )
484 : {
485 0 : SfxItemSet aAnswerSet( pOutliner->GetEmptyItemSet() );
486 0 : aAnswerSet.Put(SvxPostureItem(ITALIC_NORMAL,EE_CHAR_ITALIC));
487 :
488 0 : ESelection aSel;
489 0 : aSel.nEndPara = pOutliner->GetParagraphCount()-2;
490 0 : aSel.nEndPos = pOutliner->GetText( pOutliner->GetParagraph( aSel.nEndPara ) ).getLength();
491 :
492 0 : pOutliner->QuickSetAttribs( aAnswerSet, aSel );
493 : }
494 :
495 0 : boost::scoped_ptr< OutlinerParaObject > pOPO( pOutliner->CreateParaObject() );
496 0 : pTextApi->SetText( *pOPO.get() );
497 :
498 0 : SvtUserOptions aUserOptions;
499 0 : xAnnotation->setAuthor( aUserOptions.GetFullName() );
500 :
501 : // set current time to reply
502 0 : xAnnotation->setDateTime( getCurrentDateTime() );
503 :
504 0 : UpdateTags(true);
505 0 : SelectAnnotation( xAnnotation, true );
506 0 : }
507 0 : }
508 :
509 :
510 :
511 0 : void AnnotationManagerImpl::DeleteAnnotation( Reference< XAnnotation > xAnnotation )
512 : {
513 0 : SdPage* pPage = GetCurrentPage();
514 :
515 0 : if( xAnnotation.is() && pPage )
516 : {
517 0 : if( mpDoc->IsUndoEnabled() )
518 0 : mpDoc->BegUndo( SD_RESSTR( STR_ANNOTATION_UNDO_DELETE ) );
519 :
520 0 : pPage->removeAnnotation( xAnnotation );
521 :
522 0 : if( mpDoc->IsUndoEnabled() )
523 0 : mpDoc->EndUndo();
524 :
525 0 : UpdateTags();
526 : }
527 0 : }
528 :
529 0 : void AnnotationManagerImpl::DeleteAnnotationsByAuthor( const OUString& sAuthor )
530 : {
531 0 : if( mpDoc->IsUndoEnabled() )
532 0 : mpDoc->BegUndo( SD_RESSTR( STR_ANNOTATION_UNDO_DELETE ) );
533 :
534 0 : SdPage* pPage = 0;
535 0 : do
536 : {
537 0 : pPage = GetNextPage( pPage, true );
538 :
539 0 : if( pPage && !pPage->getAnnotations().empty() )
540 : {
541 0 : AnnotationVector aAnnotations( pPage->getAnnotations() );
542 0 : for( AnnotationVector::iterator iter = aAnnotations.begin(); iter != aAnnotations.end(); ++iter )
543 : {
544 0 : Reference< XAnnotation > xAnnotation( *iter );
545 0 : if( xAnnotation->getAuthor() == sAuthor )
546 : {
547 0 : if( mxSelectedAnnotation == xAnnotation )
548 0 : mxSelectedAnnotation.clear();
549 0 : pPage->removeAnnotation( xAnnotation );
550 : }
551 0 : }
552 : }
553 : } while( pPage );
554 :
555 0 : if( mpDoc->IsUndoEnabled() )
556 0 : mpDoc->EndUndo();
557 0 : }
558 :
559 0 : void AnnotationManagerImpl::DeleteAllAnnotations()
560 : {
561 0 : if( mpDoc->IsUndoEnabled() )
562 0 : mpDoc->BegUndo( SD_RESSTR( STR_ANNOTATION_UNDO_DELETE ) );
563 :
564 0 : SdPage* pPage = 0;
565 0 : do
566 : {
567 0 : pPage = GetNextPage( pPage, true );
568 :
569 0 : if( pPage && !pPage->getAnnotations().empty() )
570 : {
571 :
572 0 : AnnotationVector aAnnotations( pPage->getAnnotations() );
573 0 : for( AnnotationVector::iterator iter = aAnnotations.begin(); iter != aAnnotations.end(); ++iter )
574 : {
575 0 : pPage->removeAnnotation( (*iter) );
576 0 : }
577 : }
578 : }
579 : while( pPage );
580 :
581 0 : mxSelectedAnnotation.clear();
582 :
583 0 : if( mpDoc->IsUndoEnabled() )
584 0 : mpDoc->EndUndo();
585 0 : }
586 :
587 :
588 :
589 0 : void AnnotationManagerImpl::GetAnnotationState(SfxItemSet& rSet)
590 : {
591 0 : SdPage* pCurrentPage = GetCurrentPage();
592 :
593 0 : const bool bReadOnly = mrBase.GetDocShell()->IsReadOnly();
594 0 : const bool bWrongPageKind = (pCurrentPage == 0) || (pCurrentPage->GetPageKind() != PK_STANDARD);
595 :
596 0 : const SvtSaveOptions::ODFDefaultVersion nCurrentODFVersion( SvtSaveOptions().GetODFDefaultVersion() );
597 :
598 0 : if( bReadOnly || bWrongPageKind || (nCurrentODFVersion <= SvtSaveOptions::ODFVER_012) )
599 0 : rSet.DisableItem( SID_INSERT_POSTIT );
600 :
601 0 : rSet.Put(SfxBoolItem(SID_SHOW_POSTIT, mbShowAnnotations));
602 :
603 0 : Reference< XAnnotation > xAnnotation;
604 0 : GetSelectedAnnotation( xAnnotation );
605 :
606 0 : if( !xAnnotation.is() || bReadOnly )
607 0 : rSet.DisableItem( SID_DELETE_POSTIT );
608 :
609 0 : SdPage* pPage = 0;
610 :
611 0 : bool bHasAnnotations = false;
612 0 : do
613 : {
614 0 : pPage = GetNextPage( pPage, true );
615 :
616 0 : if( pPage && !pPage->getAnnotations().empty() )
617 0 : bHasAnnotations = true;
618 : }
619 0 : while( pPage && !bHasAnnotations );
620 :
621 0 : if( !bHasAnnotations || bReadOnly )
622 : {
623 0 : rSet.DisableItem( SID_DELETEALL_POSTIT );
624 : }
625 :
626 0 : if( bWrongPageKind || !bHasAnnotations )
627 : {
628 0 : rSet.DisableItem( SID_PREVIOUS_POSTIT );
629 0 : rSet.DisableItem( SID_NEXT_POSTIT );
630 0 : }
631 0 : }
632 :
633 :
634 :
635 0 : void AnnotationManagerImpl::SelectNextAnnotation(bool bForeward)
636 : {
637 0 : ShowAnnotations( true );
638 :
639 0 : Reference< XAnnotation > xCurrent;
640 0 : GetSelectedAnnotation( xCurrent );
641 0 : SdPage* pPage = GetCurrentPage();
642 0 : if( !pPage )
643 0 : return;
644 :
645 0 : AnnotationVector aAnnotations( pPage->getAnnotations() );
646 :
647 0 : if( bForeward )
648 : {
649 0 : if( xCurrent.is() )
650 : {
651 0 : for( AnnotationVector::iterator iter = aAnnotations.begin(); iter != aAnnotations.end(); ++iter )
652 : {
653 0 : if( (*iter) == xCurrent )
654 : {
655 0 : ++iter;
656 0 : if( iter != aAnnotations.end() )
657 : {
658 0 : SelectAnnotation( (*iter) );
659 0 : return;
660 : }
661 0 : break;
662 : }
663 : }
664 : }
665 0 : else if( !aAnnotations.empty() )
666 : {
667 0 : SelectAnnotation( *(aAnnotations.begin()) );
668 0 : return;
669 : }
670 : }
671 : else
672 : {
673 0 : if( xCurrent.is() )
674 : {
675 0 : for( AnnotationVector::iterator iter = aAnnotations.begin(); iter != aAnnotations.end(); ++iter )
676 : {
677 0 : if( (*iter) == xCurrent )
678 : {
679 0 : if( iter != aAnnotations.begin() )
680 : {
681 0 : --iter;
682 0 : SelectAnnotation( (*iter) );
683 0 : return;
684 : }
685 0 : break;
686 : }
687 : }
688 : }
689 0 : else if( !aAnnotations.empty() )
690 : {
691 0 : AnnotationVector::iterator iter( aAnnotations.end() );
692 0 : SelectAnnotation( *(--iter) );
693 0 : return;
694 : }
695 : }
696 :
697 0 : mxSelectedAnnotation.clear();
698 : do
699 : {
700 0 : do
701 : {
702 0 : pPage = GetNextPage( pPage, bForeward );
703 :
704 0 : if( pPage && !pPage->getAnnotations().empty() )
705 : {
706 : // switch to next/previous slide with annotations
707 0 : ::boost::shared_ptr<DrawViewShell> pDrawViewShell(::boost::dynamic_pointer_cast<DrawViewShell>(mrBase.GetMainViewShell()));
708 0 : if (pDrawViewShell.get() != NULL)
709 : {
710 0 : pDrawViewShell->ChangeEditMode(pPage->IsMasterPage() ? EM_MASTERPAGE : EM_PAGE, false);
711 0 : pDrawViewShell->SwitchPage((pPage->GetPageNum() - 1) >> 1);
712 :
713 0 : SfxDispatcher* pDispatcher = getDispatcher( mrBase );
714 0 : if( pDispatcher )
715 0 : pDispatcher->Execute( bForeward ? SID_NEXT_POSTIT : SID_PREVIOUS_POSTIT );
716 :
717 0 : return;
718 0 : }
719 : }
720 : }
721 : while( pPage );
722 :
723 : // The question text depends on the search direction.
724 0 : bool bImpress = mpDoc->GetDocumentType() == DOCUMENT_TYPE_IMPRESS;
725 : sal_uInt16 nStringId;
726 0 : if(bForeward)
727 0 : nStringId = bImpress ? STR_ANNOTATION_WRAP_FORWARD : STR_ANNOTATION_WRAP_FORWARD_DRAW;
728 : else
729 0 : nStringId = bImpress ? STR_ANNOTATION_WRAP_BACKWARD : STR_ANNOTATION_WRAP_BACKWARD_DRAW;
730 :
731 : // Pop up question box that asks the user whether to wrap arround.
732 : // The dialog is made modal with respect to the whole application.
733 0 : QueryBox aQuestionBox ( NULL, (WB_YES_NO | WB_DEF_YES), SD_RESSTR(nStringId));
734 0 : aQuestionBox.SetImage (QueryBox::GetStandardImage());
735 0 : short nBoxResult = aQuestionBox.Execute();
736 0 : if (nBoxResult != RET_YES)
737 0 : break;
738 : }
739 0 : while( true );
740 : }
741 :
742 :
743 :
744 0 : void AnnotationManagerImpl::onTagSelected( AnnotationTag& rTag )
745 : {
746 0 : mxSelectedAnnotation = rTag.GetAnnotation();
747 0 : invalidateSlots();
748 0 : }
749 :
750 :
751 :
752 0 : void AnnotationManagerImpl::onTagDeselected( AnnotationTag& rTag )
753 : {
754 0 : if( rTag.GetAnnotation() == mxSelectedAnnotation )
755 : {
756 0 : mxSelectedAnnotation.clear();
757 0 : invalidateSlots();
758 : }
759 0 : }
760 :
761 :
762 :
763 0 : void AnnotationManagerImpl::SelectAnnotation( ::com::sun::star::uno::Reference< ::com::sun::star::office::XAnnotation > xAnnotation, bool bEdit /* = sal_False */ )
764 : {
765 0 : mxSelectedAnnotation = xAnnotation;
766 :
767 0 : const AnnotationTagVector::const_iterator aEnd( maTagVector.end() );
768 0 : for( AnnotationTagVector::const_iterator iter( maTagVector.begin() );
769 : iter != aEnd; ++iter)
770 : {
771 0 : if( (*iter)->GetAnnotation() == xAnnotation )
772 : {
773 0 : SmartTagReference xTag( (*iter).get() );
774 0 : mrBase.GetMainViewShell()->GetView()->getSmartTags().select( xTag );
775 0 : (*iter)->OpenPopup( bEdit );
776 0 : break;
777 : }
778 : }
779 0 : }
780 :
781 :
782 :
783 0 : void AnnotationManagerImpl::GetSelectedAnnotation( ::com::sun::star::uno::Reference< ::com::sun::star::office::XAnnotation >& xAnnotation )
784 : {
785 0 : xAnnotation = mxSelectedAnnotation;
786 0 : }
787 :
788 0 : void AnnotationManagerImpl::invalidateSlots()
789 : {
790 0 : SfxBindings* pBindings = getBindings( mrBase );
791 0 : if( pBindings )
792 : {
793 0 : pBindings->Invalidate( SID_INSERT_POSTIT );
794 0 : pBindings->Invalidate( SID_DELETE_POSTIT );
795 0 : pBindings->Invalidate( SID_DELETEALL_POSTIT );
796 0 : pBindings->Invalidate( SID_PREVIOUS_POSTIT );
797 0 : pBindings->Invalidate( SID_NEXT_POSTIT );
798 0 : pBindings->Invalidate( SID_UNDO );
799 0 : pBindings->Invalidate( SID_REDO );
800 : }
801 0 : }
802 :
803 :
804 :
805 0 : void AnnotationManagerImpl::onSelectionChanged()
806 : {
807 0 : if( mxView.is() && mrBase.GetDrawView() ) try
808 : {
809 0 : Reference< XAnnotationAccess > xPage( mxView->getCurrentPage(), UNO_QUERY );
810 :
811 0 : if( xPage != mxCurrentPage )
812 : {
813 0 : mxCurrentPage = xPage;
814 :
815 0 : UpdateTags(true);
816 0 : }
817 : }
818 0 : catch( Exception& )
819 : {
820 : OSL_FAIL( "sd::AnnotationManagerImpl::onSelectionChanged(), exception caught!" );
821 : }
822 0 : }
823 :
824 0 : void AnnotationManagerImpl::UpdateTags( bool bSynchron )
825 : {
826 0 : if( bSynchron )
827 : {
828 0 : if( mnUpdateTagsEvent )
829 0 : Application::RemoveUserEvent( mnUpdateTagsEvent );
830 :
831 0 : UpdateTagsHdl(0);
832 : }
833 : else
834 : {
835 0 : if( !mnUpdateTagsEvent && mxView.is() )
836 0 : mnUpdateTagsEvent = Application::PostUserEvent( LINK( this, AnnotationManagerImpl, UpdateTagsHdl ) );
837 : }
838 0 : }
839 :
840 0 : IMPL_LINK_NOARG(AnnotationManagerImpl, UpdateTagsHdl)
841 : {
842 0 : mnUpdateTagsEvent = 0;
843 0 : DisposeTags();
844 :
845 0 : if( mbShowAnnotations )
846 0 : CreateTags();
847 :
848 0 : if( mrBase.GetDrawView() )
849 0 : static_cast< ::sd::View* >( mrBase.GetDrawView() )->updateHandles();
850 :
851 0 : invalidateSlots();
852 :
853 0 : return 0;
854 : }
855 :
856 0 : void AnnotationManagerImpl::CreateTags()
857 : {
858 :
859 0 : if( mxCurrentPage.is() && mpDoc ) try
860 : {
861 0 : int nIndex = 1;
862 0 : maFont = Application::GetSettings().GetStyleSettings().GetAppFont();
863 :
864 0 : rtl::Reference< AnnotationTag > xSelectedTag;
865 :
866 0 : Reference< XAnnotationEnumeration > xEnum( mxCurrentPage->createAnnotationEnumeration() );
867 0 : while( xEnum->hasMoreElements() )
868 : {
869 0 : Reference< XAnnotation > xAnnotation( xEnum->nextElement() );
870 0 : Color aColor( GetColorLight( mpDoc->GetAnnotationAuthorIndex( xAnnotation->getAuthor() ) ) );
871 0 : rtl::Reference< AnnotationTag > xTag( new AnnotationTag( *this, *mrBase.GetMainViewShell()->GetView(), xAnnotation, aColor, nIndex++, maFont ) );
872 0 : maTagVector.push_back(xTag);
873 :
874 0 : if( xAnnotation == mxSelectedAnnotation )
875 : {
876 0 : xSelectedTag = xTag;
877 : }
878 0 : }
879 :
880 0 : if( xSelectedTag.is() )
881 : {
882 0 : SmartTagReference xTag( xSelectedTag.get() );
883 0 : mrBase.GetMainViewShell()->GetView()->getSmartTags().select( xTag );
884 : }
885 : else
886 : {
887 : // no tag, no selection!
888 0 : mxSelectedAnnotation.clear();
889 0 : }
890 : }
891 0 : catch( Exception& )
892 : {
893 : OSL_FAIL( "sd::AnnotationManagerImpl::onSelectionChanged(), exception caught!" );
894 : }
895 0 : }
896 :
897 :
898 :
899 0 : void AnnotationManagerImpl::DisposeTags()
900 : {
901 0 : if( !maTagVector.empty() )
902 : {
903 0 : AnnotationTagVector::iterator iter = maTagVector.begin();
904 0 : do
905 : {
906 0 : (*iter++)->Dispose();
907 : }
908 0 : while( iter != maTagVector.end() );
909 :
910 0 : maTagVector.clear();
911 : }
912 0 : }
913 :
914 :
915 :
916 0 : void AnnotationManagerImpl::addListener()
917 : {
918 0 : Link aLink( LINK(this,AnnotationManagerImpl,EventMultiplexerListener) );
919 : mrBase.GetEventMultiplexer()->AddEventListener (
920 : aLink,
921 : tools::EventMultiplexerEvent::EID_EDIT_VIEW_SELECTION
922 : | tools::EventMultiplexerEvent::EID_CURRENT_PAGE
923 : | tools::EventMultiplexerEvent::EID_MAIN_VIEW_REMOVED
924 0 : | tools::EventMultiplexerEvent::EID_MAIN_VIEW_ADDED);
925 0 : }
926 :
927 :
928 :
929 0 : void AnnotationManagerImpl::removeListener()
930 : {
931 0 : Link aLink( LINK(this,AnnotationManagerImpl,EventMultiplexerListener) );
932 0 : mrBase.GetEventMultiplexer()->RemoveEventListener( aLink );
933 0 : }
934 :
935 :
936 :
937 0 : IMPL_LINK(AnnotationManagerImpl,EventMultiplexerListener,
938 : tools::EventMultiplexerEvent*,pEvent)
939 : {
940 0 : switch (pEvent->meEventId)
941 : {
942 : case tools::EventMultiplexerEvent::EID_CURRENT_PAGE:
943 : case tools::EventMultiplexerEvent::EID_EDIT_VIEW_SELECTION:
944 0 : onSelectionChanged();
945 0 : break;
946 :
947 : case tools::EventMultiplexerEvent::EID_MAIN_VIEW_REMOVED:
948 0 : mxView.clear();
949 0 : onSelectionChanged();
950 0 : break;
951 :
952 : case tools::EventMultiplexerEvent::EID_MAIN_VIEW_ADDED:
953 0 : mxView = Reference<XDrawView>::query( mrBase.GetController() );
954 0 : onSelectionChanged();
955 0 : break;
956 : }
957 0 : return 0;
958 : }
959 :
960 0 : void AnnotationManagerImpl::ExecuteAnnotationContextMenu( Reference< XAnnotation > xAnnotation, ::Window* pParent, const Rectangle& rContextRect, bool bButtonMenu /* = false */ )
961 : {
962 0 : SfxDispatcher* pDispatcher( getDispatcher( mrBase ) );
963 0 : if( !pDispatcher )
964 0 : return;
965 :
966 0 : const bool bReadOnly = mrBase.GetDocShell()->IsReadOnly();
967 :
968 0 : AnnotationWindow* pAnnotationWindow = bButtonMenu ? 0 : dynamic_cast< AnnotationWindow* >( pParent );
969 :
970 0 : if( bReadOnly && !pAnnotationWindow )
971 0 : return;
972 :
973 0 : boost::scoped_ptr< PopupMenu > pMenu( new PopupMenu( SdResId( pAnnotationWindow ? RID_ANNOTATION_CONTEXTMENU : RID_ANNOTATION_TAG_CONTEXTMENU ) ) );
974 :
975 0 : SvtUserOptions aUserOptions;
976 0 : OUString sCurrentAuthor( aUserOptions.GetFullName() );
977 0 : OUString sAuthor( xAnnotation->getAuthor() );
978 :
979 0 : OUString aStr( pMenu->GetItemText( SID_DELETEALLBYAUTHOR_POSTIT ) );
980 0 : OUString aReplace( sAuthor );
981 0 : if( aReplace.isEmpty() )
982 0 : aReplace = SD_RESSTR( STR_ANNOTATION_NOAUTHOR );
983 0 : aStr = aStr.replaceFirst("%1", aReplace);
984 0 : pMenu->SetItemText( SID_DELETEALLBYAUTHOR_POSTIT, aStr );
985 0 : pMenu->EnableItem( SID_REPLYTO_POSTIT, (sAuthor != sCurrentAuthor) && !bReadOnly );
986 0 : pMenu->EnableItem( SID_DELETE_POSTIT, (xAnnotation.is() && !bReadOnly) ? sal_True : sal_False );
987 0 : pMenu->EnableItem( SID_DELETEALLBYAUTHOR_POSTIT, !bReadOnly );
988 0 : pMenu->EnableItem( SID_DELETEALL_POSTIT, !bReadOnly );
989 :
990 0 : if( pAnnotationWindow )
991 : {
992 0 : if( pAnnotationWindow->IsProtected() || bReadOnly )
993 : {
994 0 : pMenu->EnableItem( SID_ATTR_CHAR_WEIGHT, false );
995 0 : pMenu->EnableItem( SID_ATTR_CHAR_POSTURE, false );
996 0 : pMenu->EnableItem( SID_ATTR_CHAR_UNDERLINE, false );
997 0 : pMenu->EnableItem( SID_ATTR_CHAR_STRIKEOUT, false );
998 0 : pMenu->EnableItem( SID_PASTE, false );
999 : }
1000 : else
1001 : {
1002 0 : SfxItemSet aSet(pAnnotationWindow->getView()->GetAttribs());
1003 :
1004 0 : if ( aSet.GetItemState( EE_CHAR_WEIGHT ) == SFX_ITEM_ON )
1005 : {
1006 0 : if( ((const SvxWeightItem&)aSet.Get( EE_CHAR_WEIGHT )).GetWeight() == WEIGHT_BOLD )
1007 0 : pMenu->CheckItem( SID_ATTR_CHAR_WEIGHT );
1008 : }
1009 :
1010 0 : if ( aSet.GetItemState( EE_CHAR_ITALIC ) == SFX_ITEM_ON )
1011 : {
1012 0 : if( ((const SvxPostureItem&)aSet.Get( EE_CHAR_ITALIC )).GetPosture() != ITALIC_NONE )
1013 0 : pMenu->CheckItem( SID_ATTR_CHAR_POSTURE );
1014 :
1015 : }
1016 0 : if ( aSet.GetItemState( EE_CHAR_UNDERLINE ) == SFX_ITEM_ON )
1017 : {
1018 0 : if( ((const SvxUnderlineItem&)aSet.Get( EE_CHAR_UNDERLINE )).GetLineStyle() != UNDERLINE_NONE )
1019 0 : pMenu->CheckItem( SID_ATTR_CHAR_UNDERLINE );
1020 : }
1021 :
1022 0 : if ( aSet.GetItemState( EE_CHAR_STRIKEOUT ) == SFX_ITEM_ON )
1023 : {
1024 0 : if( ((const SvxCrossedOutItem&)aSet.Get( EE_CHAR_STRIKEOUT )).GetStrikeout() != STRIKEOUT_NONE )
1025 0 : pMenu->CheckItem( SID_ATTR_CHAR_STRIKEOUT );
1026 : }
1027 0 : TransferableDataHelper aDataHelper( TransferableDataHelper::CreateFromSystemClipboard( pAnnotationWindow ) );
1028 0 : pMenu->EnableItem( SID_PASTE, aDataHelper.GetFormatCount() != 0 );
1029 : }
1030 :
1031 0 : pMenu->EnableItem( SID_COPY, pAnnotationWindow->getView()->HasSelection() );
1032 : }
1033 :
1034 0 : sal_uInt16 nId = 0;
1035 :
1036 : // set slot images
1037 0 : Reference< ::com::sun::star::frame::XFrame > xFrame( mrBase.GetMainViewShell()->GetViewFrame()->GetFrame().GetFrameInterface() );
1038 0 : if( xFrame.is() )
1039 : {
1040 0 : for( sal_uInt16 nPos = 0; nPos < pMenu->GetItemCount(); nPos++ )
1041 : {
1042 0 : nId = pMenu->GetItemId( nPos );
1043 0 : if( pMenu->IsItemEnabled( nId ) )
1044 : {
1045 0 : OUString sSlotURL( "slot:" );
1046 0 : sSlotURL += OUString::number( nId);
1047 :
1048 0 : Image aImage( GetImage( xFrame, sSlotURL, false ) );
1049 0 : if( !!aImage )
1050 0 : pMenu->SetItemImage( nId, aImage );
1051 : }
1052 : }
1053 : }
1054 :
1055 0 : nId = pMenu->Execute( pParent, rContextRect, POPUPMENU_EXECUTE_DOWN|POPUPMENU_NOMOUSEUPCLOSE );
1056 0 : switch( nId )
1057 : {
1058 : case SID_REPLYTO_POSTIT:
1059 : {
1060 0 : const SfxUnoAnyItem aItem( SID_REPLYTO_POSTIT, Any( xAnnotation ) );
1061 0 : pDispatcher->Execute( SID_REPLYTO_POSTIT, SFX_CALLMODE_ASYNCHRON, &aItem, 0 );
1062 0 : break;
1063 : }
1064 : case SID_DELETE_POSTIT:
1065 : {
1066 0 : const SfxUnoAnyItem aItem( SID_DELETE_POSTIT, Any( xAnnotation ) );
1067 0 : pDispatcher->Execute( SID_DELETE_POSTIT, SFX_CALLMODE_ASYNCHRON, &aItem, 0 );
1068 0 : break;
1069 : }
1070 : case SID_DELETEALLBYAUTHOR_POSTIT:
1071 : {
1072 0 : const SfxStringItem aItem( SID_DELETEALLBYAUTHOR_POSTIT, sAuthor );
1073 0 : pDispatcher->Execute( SID_DELETEALLBYAUTHOR_POSTIT, SFX_CALLMODE_ASYNCHRON, &aItem, 0 );
1074 0 : break;
1075 : }
1076 : case SID_DELETEALL_POSTIT:
1077 0 : pDispatcher->Execute( SID_DELETEALL_POSTIT );
1078 0 : break;
1079 : case SID_COPY:
1080 : case SID_PASTE:
1081 : case SID_ATTR_CHAR_WEIGHT:
1082 : case SID_ATTR_CHAR_POSTURE:
1083 : case SID_ATTR_CHAR_UNDERLINE:
1084 : case SID_ATTR_CHAR_STRIKEOUT:
1085 0 : if( pAnnotationWindow )
1086 0 : pAnnotationWindow->ExecuteSlot( nId );
1087 0 : break;
1088 0 : }
1089 : }
1090 :
1091 :
1092 :
1093 0 : Color AnnotationManagerImpl::GetColor(sal_uInt16 aAuthorIndex)
1094 : {
1095 0 : if (!Application::GetSettings().GetStyleSettings().GetHighContrastMode())
1096 : {
1097 : static const Color aArrayNormal[] = {
1098 : COL_AUTHOR1_NORMAL, COL_AUTHOR2_NORMAL, COL_AUTHOR3_NORMAL,
1099 : COL_AUTHOR4_NORMAL, COL_AUTHOR5_NORMAL, COL_AUTHOR6_NORMAL,
1100 0 : COL_AUTHOR7_NORMAL, COL_AUTHOR8_NORMAL, COL_AUTHOR9_NORMAL };
1101 :
1102 0 : return Color( aArrayNormal[ aAuthorIndex % (sizeof( aArrayNormal )/ sizeof( aArrayNormal[0] ))]);
1103 : }
1104 :
1105 0 : return Color(COL_WHITE);
1106 : }
1107 :
1108 0 : Color AnnotationManagerImpl::GetColorLight(sal_uInt16 aAuthorIndex)
1109 : {
1110 0 : if (!Application::GetSettings().GetStyleSettings().GetHighContrastMode())
1111 : {
1112 : static const Color aArrayLight[] = {
1113 : COL_AUTHOR1_LIGHT, COL_AUTHOR2_LIGHT, COL_AUTHOR3_LIGHT,
1114 : COL_AUTHOR4_LIGHT, COL_AUTHOR5_LIGHT, COL_AUTHOR6_LIGHT,
1115 0 : COL_AUTHOR7_LIGHT, COL_AUTHOR8_LIGHT, COL_AUTHOR9_LIGHT };
1116 :
1117 0 : return Color( aArrayLight[ aAuthorIndex % (sizeof( aArrayLight )/ sizeof( aArrayLight[0] ))]);
1118 : }
1119 :
1120 0 : return Color(COL_WHITE);
1121 : }
1122 :
1123 0 : Color AnnotationManagerImpl::GetColorDark(sal_uInt16 aAuthorIndex)
1124 : {
1125 0 : if (!Application::GetSettings().GetStyleSettings().GetHighContrastMode())
1126 : {
1127 : static const Color aArrayAnkor[] = {
1128 : COL_AUTHOR1_DARK, COL_AUTHOR2_DARK, COL_AUTHOR3_DARK,
1129 : COL_AUTHOR4_DARK, COL_AUTHOR5_DARK, COL_AUTHOR6_DARK,
1130 0 : COL_AUTHOR7_DARK, COL_AUTHOR8_DARK, COL_AUTHOR9_DARK };
1131 :
1132 0 : return Color( aArrayAnkor[ aAuthorIndex % (sizeof( aArrayAnkor ) / sizeof( aArrayAnkor[0] ))]);
1133 : }
1134 :
1135 0 : return Color(COL_WHITE);
1136 : }
1137 :
1138 0 : SdPage* AnnotationManagerImpl::GetNextPage( SdPage* pPage, bool bForeward )
1139 : {
1140 0 : if( pPage == 0 )
1141 0 : return bForeward ? GetFirstPage() : GetLastPage();
1142 :
1143 0 : sal_uInt16 nPageNum = (pPage->GetPageNum() - 1) >> 1;
1144 :
1145 : // first all non master pages
1146 0 : if( !pPage->IsMasterPage() )
1147 : {
1148 0 : if( bForeward )
1149 : {
1150 0 : if( nPageNum >= mpDoc->GetSdPageCount(PK_STANDARD)-1 )
1151 : {
1152 : // we reached end of draw pages, start with master pages (skip handout master for draw)
1153 0 : return mpDoc->GetMasterSdPage( (mpDoc->GetDocumentType() == DOCUMENT_TYPE_IMPRESS) ? 0 : 1, PK_STANDARD );
1154 : }
1155 0 : nPageNum++;
1156 : }
1157 : else
1158 : {
1159 0 : if( nPageNum == 0 )
1160 0 : return 0; // we are already on the first draw page, finished
1161 :
1162 0 : nPageNum--;
1163 : }
1164 0 : return mpDoc->GetSdPage(nPageNum, PK_STANDARD);
1165 : }
1166 : else
1167 : {
1168 0 : if( bForeward )
1169 : {
1170 0 : if( nPageNum >= mpDoc->GetMasterSdPageCount(PK_STANDARD)-1 )
1171 : {
1172 0 : return 0; // we reached the end, there is nothing more to see here
1173 : }
1174 0 : nPageNum++;
1175 : }
1176 : else
1177 : {
1178 0 : if( nPageNum == (mpDoc->GetDocumentType() == DOCUMENT_TYPE_IMPRESS ? 0 : 1) )
1179 : {
1180 : // we reached beginning of master pages, start with end if pages
1181 0 : return mpDoc->GetSdPage( mpDoc->GetSdPageCount(PK_STANDARD)-1, PK_STANDARD );
1182 : }
1183 :
1184 0 : nPageNum--;
1185 : }
1186 0 : return mpDoc->GetMasterSdPage(nPageNum,PK_STANDARD);
1187 : }
1188 : }
1189 :
1190 0 : SdPage* AnnotationManagerImpl::GetFirstPage()
1191 : {
1192 : // return first drawing page
1193 0 : return mpDoc->GetSdPage(0, PK_STANDARD );
1194 : }
1195 :
1196 0 : SdPage* AnnotationManagerImpl::GetLastPage()
1197 : {
1198 0 : return mpDoc->GetMasterSdPage( mpDoc->GetMasterSdPageCount(PK_STANDARD) - 1, PK_STANDARD );
1199 : }
1200 :
1201 0 : SdPage* AnnotationManagerImpl::GetCurrentPage()
1202 : {
1203 0 : return mrBase.GetMainViewShell()->getCurrentPage();
1204 : }
1205 :
1206 :
1207 :
1208 0 : AnnotationManager::AnnotationManager( ViewShellBase& rViewShellBase )
1209 0 : : mxImpl( new AnnotationManagerImpl( rViewShellBase ) )
1210 : {
1211 0 : mxImpl->init();
1212 0 : }
1213 :
1214 0 : AnnotationManager::~AnnotationManager()
1215 : {
1216 0 : mxImpl->dispose();
1217 0 : }
1218 :
1219 0 : void AnnotationManager::ExecuteAnnotation(SfxRequest& rRequest)
1220 : {
1221 0 : mxImpl->ExecuteAnnotation( rRequest );
1222 0 : }
1223 :
1224 0 : void AnnotationManager::GetAnnotationState(SfxItemSet& rItemSet)
1225 : {
1226 0 : mxImpl->GetAnnotationState(rItemSet);
1227 0 : }
1228 :
1229 0 : }
1230 :
1231 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|