LCOV - code coverage report
Current view: top level - sw/source/uibase/shells - textfld.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 27 494 5.5 %
Date: 2015-06-13 12:38:46 Functions: 3 10 30.0 %
Legend: Lines: hit not hit

          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 <chrdlgmodes.hxx>
      21             : #include <crsskip.hxx>
      22             : #include <hintids.hxx>
      23             : #include <SidebarWin.hxx>
      24             : #include <IDocumentFieldsAccess.hxx>
      25             : #include <editeng/eeitem.hxx>
      26             : #include <editeng/kernitem.hxx>
      27             : #include <editeng/outliner.hxx>
      28             : #include <sfx2/lnkbase.hxx>
      29             : #include <fmtfld.hxx>
      30             : #include <vcl/msgbox.hxx>
      31             : #include <svl/itempool.hxx>
      32             : #include <unotools/useroptions.hxx>
      33             : #include <svl/whiter.hxx>
      34             : #include <svl/eitem.hxx>
      35             : #include <svl/macitem.hxx>
      36             : #include <sfx2/viewfrm.hxx>
      37             : #include <sfx2/request.hxx>
      38             : #include <svx/postattr.hxx>
      39             : #include <svx/hlnkitem.hxx>
      40             : #include <svx/svxdlg.hxx>
      41             : #include <sfx2/linkmgr.hxx>
      42             : #include <unotools/localedatawrapper.hxx>
      43             : #include <sfx2/dispatch.hxx>
      44             : #include <fmtinfmt.hxx>
      45             : #include <fldwrap.hxx>
      46             : #include <redline.hxx>
      47             : #include <view.hxx>
      48             : #include <viewopt.hxx>
      49             : #include <wrtsh.hxx>
      50             : #include <basesh.hxx>
      51             : #include <flddat.hxx>
      52             : #include <numrule.hxx>
      53             : #include <textsh.hxx>
      54             : #include <docsh.hxx>
      55             : #include <docufld.hxx>
      56             : #include <usrfld.hxx>
      57             : #include <ddefld.hxx>
      58             : #include <expfld.hxx>
      59             : #include <fldmgr.hxx>
      60             : #include <uitool.hxx>
      61             : #include <cmdid.h>
      62             : #include <shells.hrc>
      63             : #include <sfx2/app.hxx>
      64             : #include <svx/dialogs.hrc>
      65             : #include "swabstdlg.hxx"
      66             : #include "dialog.hrc"
      67             : #include <fldui.hrc>
      68             : #include <doc.hxx>
      69             : #include <app.hrc>
      70             : #include <edtwin.hxx>
      71             : #include <PostItMgr.hxx>
      72             : #include <calbck.hxx>
      73             : #include <boost/scoped_ptr.hpp>
      74             : 
      75             : using namespace nsSwDocInfoSubType;
      76             : 
      77             : extern bool g_bNoInterrupt;       // in swmodule.cxx
      78             : 
      79           0 : static OUString lcl_BuildTitleWithRedline( const SwRangeRedline *pRedline )
      80             : {
      81           0 :     const OUString sTitle(SW_RESSTR(STR_REDLINE_COMMENT));
      82             : 
      83           0 :     sal_uInt16 nResId = 0;
      84           0 :     switch( pRedline->GetType() )
      85             :     {
      86             :         case nsRedlineType_t::REDLINE_INSERT:
      87           0 :             nResId = STR_REDLINE_INSERTED;
      88           0 :             break;
      89             :         case nsRedlineType_t::REDLINE_DELETE:
      90           0 :             nResId = STR_REDLINE_DELETED;
      91           0 :             break;
      92             :         case nsRedlineType_t::REDLINE_FORMAT:
      93             :         case nsRedlineType_t::REDLINE_PARAGRAPH_FORMAT:
      94           0 :             nResId = STR_REDLINE_FORMATED;
      95           0 :             break;
      96             :         case nsRedlineType_t::REDLINE_TABLE:
      97           0 :             nResId = STR_REDLINE_TABLECHG;
      98           0 :             break;
      99             :         case nsRedlineType_t::REDLINE_FMTCOLL:
     100           0 :             nResId = STR_REDLINE_FMTCOLLSET;
     101           0 :             break;
     102             :         default:
     103           0 :             return sTitle;
     104             :     }
     105             : 
     106           0 :     return sTitle + SW_RESSTR( nResId );
     107             : }
     108             : 
     109           0 : void SwTextShell::ExecField(SfxRequest &rReq)
     110             : {
     111           0 :     SwWrtShell& rSh = GetShell();
     112           0 :     const SfxPoolItem* pItem = 0;
     113             : 
     114           0 :     sal_uInt16 nSlot = rReq.GetSlot();
     115           0 :     const SfxItemSet* pArgs = rReq.GetArgs();
     116           0 :     if(pArgs)
     117           0 :         pArgs->GetItemState(GetPool().GetWhich(nSlot), false, &pItem);
     118             : 
     119           0 :     vcl::Window *pMDI = &GetView().GetViewFrame()->GetWindow();
     120           0 :     bool bMore = false;
     121           0 :     bool bIsText = true;
     122           0 :     sal_uInt16 nInsertType = 0;
     123           0 :     sal_uInt16 nInsertSubType = 0;
     124           0 :     sal_uLong nInsertFormat = 0;
     125             : 
     126           0 :     switch(nSlot)
     127             :     {
     128             :         case FN_EDIT_FIELD:
     129             :         {
     130           0 :             SwField* pField = rSh.GetCurField();
     131           0 :             if( pField )
     132             :             {
     133           0 :                 switch ( pField->GetTypeId() )
     134             :                 {
     135             :                     case TYP_DDEFLD:
     136             :                     {
     137           0 :                         ::sfx2::SvBaseLink& rLink = static_cast<SwDDEFieldType*>(pField->GetTyp())->
     138           0 :                                                 GetBaseLink();
     139           0 :                         if(rLink.IsVisible())
     140             :                         {
     141           0 :                             SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
     142           0 :                             boost::scoped_ptr<SfxAbstractLinksDialog> pDlg(pFact->CreateLinksDialog( pMDI, &rSh.GetLinkManager(), false, &rLink ));
     143           0 :                             if ( pDlg )
     144             :                             {
     145           0 :                                 pDlg->Execute();
     146           0 :                             }
     147             :                         }
     148           0 :                         break;
     149             :                     }
     150             :                     default:
     151             :                     {
     152           0 :                         SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create();
     153             :                         assert(pFact && "SwAbstractDialogFactory fail!");
     154             : 
     155           0 :                         boost::scoped_ptr<SfxAbstractDialog> pDlg(pFact->CreateSwFieldEditDlg( GetView(),RC_DLG_SWFLDEDITDLG ));
     156             :                         assert(pDlg && "Dialog creation failed!");
     157           0 :                         pDlg->Execute();
     158             :                     }
     159             :                 }
     160             :             }
     161           0 :             break;
     162             :         }
     163             :         case FN_EXECUTE_MACROFIELD:
     164             :         {
     165           0 :             SwField* pField = rSh.GetCurField();
     166           0 :             if(pField && pField->GetTyp()->Which() == RES_MACROFLD)
     167             :             {
     168             : 
     169           0 :                 const OUString& rMacro = static_cast<SwMacroField*>(pField)->GetMacro();
     170           0 :                 sal_Int32 nPos = rMacro.indexOf('.');
     171           0 :                 if(nPos != -1)
     172             :                 {
     173           0 :                     SvxMacro aMacro( rMacro.copy(nPos + 1), rMacro.copy(0,nPos), STARBASIC );
     174           0 :                     rSh.ExecMacro(aMacro);
     175           0 :                 }
     176             :             }
     177             :         }
     178           0 :         break;
     179             : 
     180             :         case FN_GOTO_NEXT_INPUTFLD:
     181             :         case FN_GOTO_PREV_INPUTFLD:
     182             :             {
     183           0 :                 bool bRet = false;
     184           0 :                 SwFieldType* pField = rSh.GetFieldType( 0, RES_INPUTFLD );
     185           0 :                 const bool bAddSetExpressionFields = !( rSh.GetViewOptions()->IsReadonly() );
     186           0 :                 if ( pField != NULL
     187           0 :                      && rSh.MoveFieldType(
     188             :                             pField,
     189             :                             FN_GOTO_NEXT_INPUTFLD == nSlot,
     190             :                             USHRT_MAX,
     191           0 :                             bAddSetExpressionFields ) )
     192             :                 {
     193           0 :                     rSh.ClearMark();
     194           0 :                     if ( dynamic_cast<SwInputField*>(rSh.GetCurField( true )) != NULL )
     195             :                     {
     196           0 :                         rSh.SttSelect();
     197             :                         rSh.SelectText(
     198           0 :                             SwCrsrShell::StartOfInputFieldAtPos( *(rSh.GetCrsr()->Start()) ) + 1,
     199           0 :                             SwCrsrShell::EndOfInputFieldAtPos( *(rSh.GetCrsr()->Start()) ) - 1 );
     200             :                     }
     201             :                     else
     202             :                     {
     203           0 :                         rSh.StartInputFieldDlg( rSh.GetCurField( true ), false );
     204             :                     }
     205           0 :                     bRet = true;
     206             :                 }
     207             : 
     208           0 :                 rReq.SetReturnValue( SfxBoolItem( nSlot, bRet ));
     209             :             }
     210           0 :             break;
     211             : 
     212             :         default:
     213           0 :             bMore = true;
     214             :     }
     215           0 :     if(bMore)
     216             :     {
     217             :         // Here come the slots with FieldMgr.
     218           0 :         SwFieldMgr aFieldMgr(GetShellPtr());
     219           0 :         switch(nSlot)
     220             :         {
     221             :             case FN_INSERT_DBFIELD:
     222             :             {
     223           0 :                 bool bRes = false;
     224           0 :                 if( pItem )
     225             :                 {
     226           0 :                     sal_uLong  nFormat = 0;
     227           0 :                     sal_uInt16 nType = 0;
     228           0 :                     OUString aPar1 = static_cast<const SfxStringItem *>(pItem)->GetValue();
     229           0 :                     OUString aPar2;
     230           0 :                     sal_Int32 nCommand = 0;
     231             : 
     232           0 :                     if( SfxItemState::SET == pArgs->GetItemState( FN_PARAM_FIELD_TYPE,
     233           0 :                                                                 false, &pItem ))
     234           0 :                         nType = static_cast<const SfxUInt16Item *>(pItem)->GetValue();
     235           0 :                     aPar1 += OUString(DB_DELIM);
     236           0 :                     if( SfxItemState::SET == pArgs->GetItemState(
     237           0 :                                         FN_PARAM_1, false, &pItem ))
     238             :                     {
     239           0 :                         aPar1 += static_cast<const SfxStringItem *>(pItem)->GetValue();
     240             :                     }
     241           0 :                     if( SfxItemState::SET == pArgs->GetItemState(
     242           0 :                                         FN_PARAM_3, false, &pItem ))
     243           0 :                         nCommand = static_cast<const SfxInt32Item*>(pItem)->GetValue();
     244           0 :                     aPar1 += OUString(DB_DELIM);
     245           0 :                     aPar1 += OUString::number(nCommand);
     246           0 :                     aPar1 += OUString(DB_DELIM);
     247           0 :                     if( SfxItemState::SET == pArgs->GetItemState(
     248           0 :                                         FN_PARAM_2, false, &pItem ))
     249             :                     {
     250           0 :                         aPar1 += static_cast<const SfxStringItem *>(pItem)->GetValue();
     251             :                     }
     252           0 :                     if( SfxItemState::SET == pArgs->GetItemState(
     253           0 :                                         FN_PARAM_FIELD_CONTENT, false, &pItem ))
     254           0 :                         aPar2 = static_cast<const SfxStringItem *>(pItem)->GetValue();
     255           0 :                     if( SfxItemState::SET == pArgs->GetItemState(
     256           0 :                                         FN_PARAM_FIELD_FORMAT, false, &pItem ))
     257           0 :                         nFormat = static_cast<const SfxUInt32Item *>(pItem)->GetValue();
     258             :                     OSL_FAIL("Command is not yet used");
     259           0 :                     sal_Unicode cSeparator = ' ';
     260           0 :                     SwInsertField_Data aData(nType, 0, aPar1, aPar2, nFormat, GetShellPtr(), cSeparator );
     261           0 :                     bRes = aFieldMgr.InsertField(aData);
     262             :                 }
     263           0 :                 rReq.SetReturnValue(SfxBoolItem( nSlot, bRes ));
     264             :             }
     265           0 :             break;
     266             :             case FN_INSERT_FIELD_CTRL:
     267             :             case FN_INSERT_FIELD:
     268             :             {
     269           0 :                 bool bRes = false;
     270           0 :                 if( pItem && nSlot != FN_INSERT_FIELD_CTRL)
     271             :                 {
     272           0 :                     sal_uLong  nFormat = 0;
     273           0 :                     sal_uInt16 nType = 0;
     274           0 :                     sal_uInt16 nSubType = 0;
     275           0 :                     OUString aPar1 = static_cast<const SfxStringItem *>(pItem)->GetValue();
     276           0 :                     OUString aPar2;
     277           0 :                     sal_Unicode cSeparator = ' ';
     278             : 
     279           0 :                     if( SfxItemState::SET == pArgs->GetItemState( FN_PARAM_FIELD_TYPE,
     280           0 :                                                                 false, &pItem ))
     281           0 :                         nType = static_cast<const SfxUInt16Item *>(pItem)->GetValue();
     282           0 :                     if( SfxItemState::SET == pArgs->GetItemState( FN_PARAM_FIELD_SUBTYPE,
     283           0 :                                                                 false, &pItem ))
     284           0 :                         nSubType = static_cast<const SfxUInt16Item *>(pItem)->GetValue();
     285           0 :                     if( SfxItemState::SET == pArgs->GetItemState(
     286           0 :                                         FN_PARAM_FIELD_CONTENT, false, &pItem ))
     287           0 :                         aPar2 = static_cast<const SfxStringItem *>(pItem)->GetValue();
     288           0 :                     if( SfxItemState::SET == pArgs->GetItemState(
     289           0 :                                         FN_PARAM_FIELD_FORMAT, false, &pItem ))
     290           0 :                         nFormat = static_cast<const SfxUInt32Item *>(pItem)->GetValue();
     291           0 :                     if( SfxItemState::SET == pArgs->GetItemState(
     292           0 :                                         FN_PARAM_3, false, &pItem ))
     293             :                     {
     294           0 :                         OUString sTmp = static_cast<const SfxStringItem *>(pItem)->GetValue();
     295           0 :                         if(!sTmp.isEmpty())
     296           0 :                             cSeparator = sTmp[0];
     297             :                     }
     298           0 :                     SwInsertField_Data aData(nType, nSubType, aPar1, aPar2, nFormat, GetShellPtr(), cSeparator );
     299           0 :                     bRes = aFieldMgr.InsertField( aData );
     300             :                 }
     301             :                 else
     302             :                         //#i5788# prevent closing of the field dialog while a modal dialog ( Input field dialog ) is active
     303           0 :                         if(!GetView().GetViewFrame()->IsInModalMode())
     304             :                 {
     305           0 :                     SfxViewFrame* pVFrame = GetView().GetViewFrame();
     306           0 :                     pVFrame->ToggleChildWindow(FN_INSERT_FIELD);
     307           0 :                     bRes = pVFrame->GetChildWindow( nSlot ) != 0;
     308           0 :                     Invalidate(rReq.GetSlot());
     309           0 :                     Invalidate(FN_INSERT_FIELD_CTRL);
     310           0 :                     rReq.Ignore();
     311             :                 }
     312           0 :                 rReq.SetReturnValue(SfxBoolItem( nSlot, bRes ));
     313             :             }
     314           0 :             break;
     315             : 
     316             :             case FN_INSERT_REF_FIELD:
     317             :             {
     318           0 :                 SfxViewFrame* pVFrame = GetView().GetViewFrame();
     319           0 :                 if (!pVFrame->HasChildWindow(FN_INSERT_FIELD))
     320           0 :                     pVFrame->ToggleChildWindow(FN_INSERT_FIELD);    // Show dialog
     321             : 
     322             :                 // Switch Fielddlg at a new TabPage
     323           0 :                 sal_uInt16 nId = SwFieldDlgWrapper::GetChildWindowId();
     324           0 :                 SwFieldDlgWrapper *pWrp = static_cast<SwFieldDlgWrapper*>(pVFrame->GetChildWindow(nId));
     325           0 :                 if (pWrp)
     326           0 :                     pWrp->ShowReferencePage();
     327           0 :                 rReq.Ignore();
     328             :             }
     329           0 :             break;
     330             :             case FN_DELETE_COMMENT:
     331           0 :                 if ( GetView().GetPostItMgr() &&
     332           0 :                      GetView().GetPostItMgr()->HasActiveSidebarWin() )
     333             :                 {
     334           0 :                     GetView().GetPostItMgr()->DeleteActiveSidebarWin();
     335             :                 }
     336           0 :             break;
     337             :             case FN_DELETE_ALL_NOTES:
     338           0 :                 if ( GetView().GetPostItMgr() )
     339           0 :                     GetView().GetPostItMgr()->Delete();
     340           0 :             break;
     341             :             case FN_FORMAT_ALL_NOTES:
     342             :             {
     343           0 :                 SwPostItMgr* pPostItMgr = GetView().GetPostItMgr();
     344           0 :                 if (pPostItMgr)
     345           0 :                     pPostItMgr->ExecuteFormatAllDialog(GetView());
     346             :             }
     347           0 :             break;
     348             :             case FN_DELETE_NOTE_AUTHOR:
     349             :             {
     350           0 :                 SFX_REQUEST_ARG( rReq, pNoteItem, SfxStringItem, nSlot, false);
     351           0 :                 if ( pNoteItem && GetView().GetPostItMgr() )
     352           0 :                     GetView().GetPostItMgr()->Delete( pNoteItem->GetValue() );
     353             :             }
     354           0 :             break;
     355             :             case FN_HIDE_NOTE:
     356           0 :                 if ( GetView().GetPostItMgr() &&
     357           0 :                      GetView().GetPostItMgr()->HasActiveSidebarWin() )
     358             :                 {
     359           0 :                     GetView().GetPostItMgr()->HideActiveSidebarWin();
     360             :                 }
     361           0 :             break;
     362             :             case FN_HIDE_ALL_NOTES:
     363           0 :                 if ( GetView().GetPostItMgr() )
     364           0 :                     GetView().GetPostItMgr()->Hide();
     365           0 :             break;
     366             :             case FN_HIDE_NOTE_AUTHOR:
     367             :             {
     368           0 :                 SFX_REQUEST_ARG( rReq, pNoteItem, SfxStringItem, nSlot, false);
     369           0 :                 if ( pNoteItem && GetView().GetPostItMgr() )
     370           0 :                     GetView().GetPostItMgr()->Hide( pNoteItem->GetValue() );
     371             :             }
     372           0 :             break;
     373             :             case FN_POSTIT:
     374             :             {
     375           0 :                 SwPostItField* pPostIt = dynamic_cast<SwPostItField*>(aFieldMgr.GetCurField());
     376           0 :                 bool bNew = !(pPostIt && pPostIt->GetTyp()->Which() == RES_POSTITFLD);
     377           0 :                 if (bNew || GetView().GetPostItMgr()->IsAnswer())
     378             :                 {
     379           0 :                     SFX_REQUEST_ARG( rReq, pAuthorItem, SvxPostItAuthorItem, SID_ATTR_POSTIT_AUTHOR, false );
     380           0 :                     OUString sAuthor;
     381           0 :                     if ( pAuthorItem )
     382           0 :                         sAuthor = pAuthorItem->GetValue();
     383             :                     else
     384             :                     {
     385           0 :                         SvtUserOptions aUserOpt;
     386           0 :                         if( (sAuthor = aUserOpt.GetFullName()).isEmpty())
     387           0 :                             if( (sAuthor = aUserOpt.GetID()).isEmpty() )
     388           0 :                                 sAuthor = SW_RES( STR_REDLINE_UNKNOWN_AUTHOR );
     389             :                     }
     390             : 
     391           0 :                     SFX_REQUEST_ARG( rReq, pTextItem, SvxPostItTextItem, SID_ATTR_POSTIT_TEXT, false );
     392           0 :                     OUString sText;
     393           0 :                     if ( pTextItem )
     394           0 :                         sText = pTextItem->GetValue();
     395             : 
     396           0 :                     if ( rSh.HasSelection() && !rSh.IsTableMode() )
     397             :                     {
     398           0 :                         rSh.KillPams();
     399             :                     }
     400             : 
     401             :                     // #i120513# Inserting a comment into an autocompletion crashes
     402             :                     // --> suggestion has to be removed before
     403           0 :                     GetView().GetEditWin().StopQuickHelp();
     404             : 
     405           0 :                     SwInsertField_Data aData(TYP_POSTITFLD, 0, sAuthor, sText, 0);
     406           0 :                     aFieldMgr.InsertField( aData );
     407             : 
     408           0 :                     rSh.Push();
     409           0 :                     rSh.SwCrsrShell::Left(1, CRSR_SKIP_CHARS, false);
     410           0 :                     pPostIt = static_cast<SwPostItField*>(aFieldMgr.GetCurField());
     411           0 :                     rSh.Pop(false); // Restore cursor position
     412             :                 }
     413             : 
     414           0 :                 if (pPostIt)
     415             :                 {
     416           0 :                     SwFieldType* pType = rSh.GetDoc()->getIDocumentFieldsAccess().GetFieldType(RES_POSTITFLD, OUString(), false);
     417           0 :                     SwIterator<SwFormatField,SwFieldType> aIter( *pType );
     418           0 :                     SwFormatField* pSwFormatField = aIter.First();
     419           0 :                     while( pSwFormatField )
     420             :                     {
     421           0 :                         if ( pSwFormatField->GetField() == pPostIt )
     422             :                         {
     423           0 :                             pSwFormatField->Broadcast( SwFormatFieldHint( 0, SwFormatFieldHintWhich::FOCUS, &GetView() ) );
     424           0 :                             break;
     425             :                         }
     426           0 :                         pSwFormatField = aIter.Next();
     427           0 :                     }
     428             :                 }
     429             :             }
     430           0 :             break;
     431             :             case FN_REDLINE_COMMENT:
     432             :             {
     433             :                 /*  this code can be used once we want redline comments in the margin, all other stuff can
     434             :                     then be deleted
     435             :                 String sComment;
     436             :                 const SwRangeRedline *pRedline = rSh.GetCurrRedline();
     437             : 
     438             :                 if (pRedline)
     439             :                 {
     440             :                     sComment = pRedline->GetComment();
     441             :                     if ( !sComment.Len() )
     442             :                         GetView().GetDocShell()->Broadcast(SwRedlineHint(pRedline,SWREDLINE_INSERTED));
     443             :                     const_cast<SwRangeRedline*>(pRedline)->Broadcast(SwRedlineHint(pRedline,SWREDLINE_FOCUS,&GetView()));
     444             :                 }
     445             :                 */
     446             : 
     447           0 :                 const SwRangeRedline *pRedline = rSh.GetCurrRedline();
     448             : 
     449           0 :                 if (pRedline)
     450             :                 {
     451           0 :                     OUString sComment = convertLineEnd(pRedline->GetComment(), GetSystemLineEnd());
     452             : 
     453           0 :                     bool bTravel = false;
     454             : 
     455           0 :                     SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
     456             :                     assert(pFact && "Dialog creation failed!");
     457           0 :                     ::DialogGetRanges fnGetRange = pFact->GetDialogGetRangesFunc();
     458             :                     assert(fnGetRange && "Dialog creation failed! GetRanges()");
     459           0 :                     SfxItemSet aSet(GetPool(), fnGetRange());
     460           0 :                     aSet.Put(SvxPostItTextItem(sComment, SID_ATTR_POSTIT_TEXT));
     461           0 :                     aSet.Put(SvxPostItAuthorItem(pRedline->GetAuthorString(), SID_ATTR_POSTIT_AUTHOR));
     462             : 
     463             :                     aSet.Put( SvxPostItDateItem( GetAppLangDateTimeString(
     464           0 :                                 pRedline->GetRedlineData().GetTimeStamp() ),
     465           0 :                                 SID_ATTR_POSTIT_DATE ));
     466             : 
     467             :                     // Traveling only if more than one field.
     468           0 :                     rSh.StartAction();
     469             : 
     470           0 :                     rSh.Push();
     471           0 :                     const SwRangeRedline *pActRed = rSh.SelPrevRedline();
     472             : 
     473           0 :                     if (pActRed == pRedline)
     474             :                     {   // New cursor is at the beginning of the current redlines.
     475           0 :                         rSh.Pop();  // Throw old cursor away
     476           0 :                         rSh.Push();
     477           0 :                         pActRed = rSh.SelPrevRedline();
     478             :                     }
     479             : 
     480           0 :                     bool bPrev = pActRed != 0;
     481           0 :                     rSh.Pop(false);
     482           0 :                     rSh.EndAction();
     483             : 
     484           0 :                     rSh.ClearMark();
     485           0 :                     rSh.SelNextRedline();   // Select current redline.
     486             : 
     487           0 :                     rSh.StartAction();
     488           0 :                     rSh.Push();
     489           0 :                     pActRed = rSh.SelNextRedline();
     490           0 :                     bool bNext = pActRed != 0;
     491           0 :                     rSh.Pop(false); // Restore cursor position
     492             : 
     493           0 :                     if( rSh.IsCrsrPtAtEnd() )
     494           0 :                         rSh.SwapPam();
     495             : 
     496           0 :                     rSh.EndAction();
     497             : 
     498           0 :                     bTravel |= bNext || bPrev;
     499             : 
     500           0 :                     SvxAbstractDialogFactory* pFact2 = SvxAbstractDialogFactory::Create();
     501             :                     assert(pFact2 && "Dialog creation failed!");
     502           0 :                     boost::scoped_ptr<AbstractSvxPostItDialog> pDlg(pFact2->CreateSvxPostItDialog( pMDI, aSet, bTravel ));
     503             :                     assert(pDlg && "Dialog creation failed!");
     504           0 :                     pDlg->HideAuthor();
     505             : 
     506           0 :                     pDlg->SetText(lcl_BuildTitleWithRedline(pRedline));
     507             : 
     508           0 :                     if (bTravel)
     509             :                     {
     510           0 :                         pDlg->EnableTravel(bNext, bPrev);
     511           0 :                         pDlg->SetPrevHdl(LINK(this, SwTextShell, RedlinePrevHdl));
     512           0 :                         pDlg->SetNextHdl(LINK(this, SwTextShell, RedlineNextHdl));
     513             :                     }
     514             : 
     515           0 :                     SwViewShell::SetCareWin(pDlg->GetWindow());
     516           0 :                     g_bNoInterrupt = true;
     517             : 
     518           0 :                     if ( pDlg->Execute() == RET_OK )
     519             :                     {
     520           0 :                         const SfxItemSet* pOutSet = pDlg->GetOutputItemSet();
     521           0 :                         OUString sMsg(static_cast<const SvxPostItTextItem&>(pOutSet->Get(SID_ATTR_POSTIT_TEXT)).GetValue());
     522             : 
     523             :                         // Insert or change a comment
     524           0 :                         rSh.SetRedlineComment(sMsg);
     525             :                     }
     526             : 
     527           0 :                     pDlg.reset();
     528           0 :                     SwViewShell::SetCareWin(NULL);
     529           0 :                     g_bNoInterrupt = false;
     530           0 :                     rSh.ClearMark();
     531           0 :                     GetView().AttrChangedNotify(GetShellPtr());
     532             :                 }
     533             :             }
     534           0 :             break;
     535             : 
     536             :             case FN_JAVAEDIT:
     537             :             {
     538           0 :                 OUString aType, aText;
     539           0 :                 bool bIsUrl=false;
     540           0 :                 bool bNew=false;
     541           0 :                 bool bUpdate = false;
     542           0 :                 SwFieldMgr aMgr;
     543           0 :                 if ( pItem )
     544             :                 {
     545           0 :                     aText = static_cast<const SfxStringItem*>(pItem)->GetValue();
     546           0 :                     SFX_REQUEST_ARG( rReq, pType, SfxStringItem, FN_PARAM_2 , false );
     547           0 :                     SFX_REQUEST_ARG( rReq, pIsUrl, SfxBoolItem, FN_PARAM_1 , false );
     548           0 :                     if ( pType )
     549           0 :                         aType = pType->GetValue();
     550           0 :                     if ( pIsUrl )
     551           0 :                         bIsUrl = pIsUrl->GetValue();
     552             : 
     553           0 :                     SwScriptField* pField = static_cast<SwScriptField*>(aMgr.GetCurField());
     554           0 :                     bNew = !pField || !(pField->GetTyp()->Which() == RES_SCRIPTFLD);
     555           0 :                     bUpdate = pField && ( bIsUrl != (bool)pField->GetFormat() || pField->GetPar2() != aType || pField->GetPar1() != aText );
     556             :                 }
     557             :                 else
     558             :                 {
     559           0 :                     SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create();
     560             :                     assert(pFact && "Dialog creation failed!");
     561           0 :                     boost::scoped_ptr<AbstractJavaEditDialog> pDlg(pFact->CreateJavaEditDialog(pMDI, &rSh));
     562             :                     assert(pDlg && "Dialog creation failed!");
     563           0 :                     if ( pDlg->Execute() )
     564             :                     {
     565           0 :                         aType = pDlg->GetScriptType();
     566           0 :                         aText = pDlg->GetScriptText();
     567           0 :                         bIsUrl = pDlg->IsUrl();
     568           0 :                         bNew = pDlg->IsNew();
     569           0 :                         bUpdate = pDlg->IsUpdate();
     570           0 :                         rReq.AppendItem( SfxStringItem( FN_JAVAEDIT, aText ) );
     571           0 :                         rReq.AppendItem( SfxStringItem( FN_PARAM_2, aType ) );
     572           0 :                         rReq.AppendItem( SfxBoolItem( FN_PARAM_1, bIsUrl ) );
     573           0 :                     }
     574             :                 }
     575             : 
     576           0 :                 if( bNew )
     577             :                 {
     578           0 :                     SwInsertField_Data aData(TYP_SCRIPTFLD, 0, aType, aText, bIsUrl ? 1 : 0);
     579           0 :                     aMgr.InsertField(aData);
     580           0 :                     rReq.Done();
     581             :                 }
     582           0 :                 else if( bUpdate )
     583             :                 {
     584           0 :                     aMgr.UpdateCurField( bIsUrl ? 1 : 0, aType, aText );
     585           0 :                     rSh.SetUndoNoResetModified();
     586           0 :                     rReq.Done();
     587             :                 }
     588             :                 else
     589           0 :                     rReq.Ignore();
     590             :             }
     591           0 :             break;
     592             : 
     593             :             case FN_INSERT_FLD_DATE    :
     594           0 :                 nInsertType = TYP_DATEFLD;
     595           0 :                 bIsText = false;
     596           0 :                 goto FIELD_INSERT;
     597             :             case FN_INSERT_FLD_TIME    :
     598           0 :                 nInsertType = TYP_TIMEFLD;
     599           0 :                 bIsText = false;
     600           0 :                 goto FIELD_INSERT;
     601             :             case FN_INSERT_FLD_PGNUMBER:
     602           0 :                 nInsertType = TYP_PAGENUMBERFLD;
     603           0 :                 nInsertFormat = SVX_NUM_PAGEDESC; // Like page template
     604           0 :                 bIsText = false;
     605           0 :                 goto FIELD_INSERT;
     606             :             case FN_INSERT_FLD_PGCOUNT :
     607           0 :                 nInsertType = TYP_DOCSTATFLD;
     608           0 :                 nInsertSubType = 0;
     609           0 :                 bIsText = false;
     610           0 :                 nInsertFormat = SVX_NUM_PAGEDESC;
     611           0 :                 goto FIELD_INSERT;
     612             :             case FN_INSERT_FLD_TOPIC   :
     613           0 :                 nInsertType = TYP_DOCINFOFLD;
     614           0 :                 nInsertSubType = DI_THEMA;
     615           0 :                 goto FIELD_INSERT;
     616             :             case FN_INSERT_FLD_TITLE   :
     617           0 :                 nInsertType = TYP_DOCINFOFLD;
     618           0 :                 nInsertSubType = DI_TITEL;
     619           0 :                 goto FIELD_INSERT;
     620             :             case FN_INSERT_FLD_AUTHOR  :
     621           0 :                 nInsertType = TYP_DOCINFOFLD;
     622           0 :                 nInsertSubType = DI_CREATE|DI_SUB_AUTHOR;
     623             : 
     624             : FIELD_INSERT:
     625             :             {
     626             :                 //format conversion should only be done for number formatter formats
     627           0 :                 if(!nInsertFormat)
     628           0 :                     nInsertFormat = aFieldMgr.GetDefaultFormat(nInsertType, bIsText, rSh.GetNumberFormatter());
     629             :                 SwInsertField_Data aData(nInsertType, nInsertSubType,
     630           0 :                                     OUString(), OUString(), nInsertFormat);
     631           0 :                 aFieldMgr.InsertField(aData);
     632           0 :                 rReq.Done();
     633             :             }
     634           0 :             break;
     635             :             default:
     636             :                 OSL_FAIL("wrong dispatcher");
     637           0 :                 return;
     638           0 :         }
     639             :     }
     640             : }
     641             : 
     642        1371 : void SwTextShell::StateField( SfxItemSet &rSet )
     643             : {
     644        1371 :     SwWrtShell& rSh = GetShell();
     645        1371 :     SfxWhichIter aIter( rSet );
     646        1371 :     const SwField* pField = 0;
     647        1371 :     bool bGetField = false;
     648        1371 :     sal_uInt16 nWhich = aIter.FirstWhich();
     649             : 
     650        4827 :     while (nWhich)
     651             :     {
     652        2085 :         switch (nWhich)
     653             :         {
     654             :         case FN_DELETE_COMMENT:
     655             :         case FN_DELETE_NOTE_AUTHOR:
     656             :         case FN_DELETE_ALL_NOTES:
     657             :         case FN_FORMAT_ALL_NOTES:
     658             :         case FN_HIDE_NOTE:
     659             :         case FN_HIDE_NOTE_AUTHOR:
     660             :         case FN_HIDE_ALL_NOTES:
     661             :             {
     662           0 :                 SwPostItMgr* pPostItMgr = GetView().GetPostItMgr();
     663           0 :                 if ( !pPostItMgr )
     664           0 :                     rSet.InvalidateItem( nWhich );
     665           0 :                 else if ( !pPostItMgr->HasActiveSidebarWin() )
     666             :                 {
     667           0 :                     rSet.InvalidateItem( FN_DELETE_COMMENT );
     668           0 :                     rSet.InvalidateItem( FN_HIDE_NOTE );
     669             :                 }
     670             :             }
     671           0 :             break;
     672             : 
     673             :         case FN_EDIT_FIELD:
     674             :             {
     675           0 :                 if( !bGetField )
     676             :                 {
     677           0 :                     pField = rSh.GetCurField();
     678           0 :                     bGetField = true;
     679             :                 }
     680             : 
     681           0 :                 sal_uInt16 nTempWhich = pField ? pField->GetTyp()->Which() : USHRT_MAX;
     682           0 :                 if( USHRT_MAX == nTempWhich ||
     683           0 :                     RES_POSTITFLD == nTempWhich ||
     684           0 :                     RES_SCRIPTFLD == nTempWhich ||
     685             :                     RES_AUTHORITY == nTempWhich )
     686           0 :                     rSet.DisableItem( nWhich );
     687           0 :                 else if( RES_DDEFLD == nTempWhich &&
     688           0 :                     !static_cast<SwDDEFieldType*>(pField->GetTyp())->GetBaseLink().IsVisible())
     689             :                 {
     690             :                     // nested links cannot be edited
     691           0 :                     rSet.DisableItem( nWhich );
     692             :                 }
     693             :             }
     694           0 :             break;
     695             : 
     696             :         case FN_EXECUTE_MACROFIELD:
     697             :             {
     698           0 :                 if(!bGetField)
     699             :                 {
     700           0 :                     pField = rSh.GetCurField();
     701           0 :                     bGetField = true;
     702             :                 }
     703           0 :                 if(!pField || pField->GetTyp()->Which() != RES_MACROFLD)
     704           0 :                     rSet.DisableItem(nWhich);
     705             :             }
     706           0 :             break;
     707             : 
     708             :         case FN_INSERT_FIELD:
     709             :             {
     710           0 :                 if ( rSh.CrsrInsideInputField() )
     711             :                 {
     712           0 :                     rSet.DisableItem(nWhich);
     713             :                 }
     714             :                 else
     715             :                 {
     716           0 :                     SfxViewFrame* pVFrame = GetView().GetViewFrame();
     717             :                     //#i5788# prevent closing of the field dialog while a modal dialog ( Input field dialog ) is active
     718           0 :                     if(!pVFrame->IsInModalMode() &&
     719           0 :                         pVFrame->KnowsChildWindow(FN_INSERT_FIELD) && !pVFrame->HasChildWindow(FN_INSERT_FIELD_DATA_ONLY) )
     720           0 :                         rSet.Put(SfxBoolItem( FN_INSERT_FIELD, pVFrame->HasChildWindow(nWhich)));
     721             :                     else
     722           0 :                         rSet.DisableItem(FN_INSERT_FIELD);
     723             :                 }
     724             :             }
     725           0 :             break;
     726             : 
     727             :         case FN_INSERT_REF_FIELD:
     728             :             {
     729         694 :                 SfxViewFrame* pVFrame = GetView().GetViewFrame();
     730        1388 :                 if ( !pVFrame->KnowsChildWindow(FN_INSERT_FIELD)
     731         694 :                      || rSh.CrsrInsideInputField() )
     732             :                 {
     733           0 :                     rSet.DisableItem(FN_INSERT_REF_FIELD);
     734             :                 }
     735             :             }
     736         694 :             break;
     737             : 
     738             :         case FN_INSERT_FIELD_CTRL:
     739         695 :                 if ( rSh.CrsrInsideInputField() )
     740             :                 {
     741           0 :                     rSet.DisableItem(nWhich);
     742             :                 }
     743             :                 else
     744             :                 {
     745         695 :                     rSet.Put(SfxBoolItem( nWhich, GetView().GetViewFrame()->HasChildWindow(FN_INSERT_FIELD)));
     746             :                 }
     747         695 :             break;
     748             : 
     749             :         case FN_REDLINE_COMMENT:
     750           0 :             if (!rSh.GetCurrRedline())
     751           0 :                 rSet.DisableItem(nWhich);
     752           0 :             break;
     753             : 
     754             :         case FN_POSTIT :
     755             :         case FN_JAVAEDIT :
     756             :             {
     757         696 :                 bool bCurField = false;
     758         696 :                 pField = rSh.GetCurField();
     759         696 :                 if(nWhich == FN_POSTIT)
     760         695 :                     bCurField = pField && pField->GetTyp()->Which() == RES_POSTITFLD;
     761             :                 else
     762           1 :                     bCurField = pField && pField->GetTyp()->Which() == RES_SCRIPTFLD;
     763             : 
     764         696 :                 if( !bCurField && rSh.IsReadOnlyAvailable() && rSh.HasReadonlySel() )
     765             :                 {
     766           0 :                     rSet.DisableItem(nWhich);
     767             :                 }
     768         696 :                 else if ( rSh.CrsrInsideInputField() )
     769             :                 {
     770           0 :                     rSet.DisableItem(nWhich);
     771             :                 }
     772             :             }
     773             : 
     774         696 :             break;
     775             : 
     776             :         case FN_INSERT_FLD_AUTHOR:
     777             :         case FN_INSERT_FLD_DATE:
     778             :         case FN_INSERT_FLD_PGCOUNT:
     779             :         case FN_INSERT_FLD_PGNUMBER:
     780             :         case FN_INSERT_FLD_TIME:
     781             :         case FN_INSERT_FLD_TITLE:
     782             :         case FN_INSERT_FLD_TOPIC:
     783             :         case FN_INSERT_DBFIELD:
     784           0 :             if ( rSh.CrsrInsideInputField() )
     785             :             {
     786           0 :                 rSet.DisableItem(nWhich);
     787             :             }
     788           0 :             break;
     789             : 
     790             :         }
     791        2085 :         nWhich = aIter.NextWhich();
     792        1371 :     }
     793        1371 : }
     794             : 
     795           0 : void SwTextShell::InsertHyperlink(const SvxHyperlinkItem& rHlnkItem)
     796             : {
     797           0 :     const OUString& rName   = rHlnkItem.GetName();
     798           0 :     const OUString& rURL    = rHlnkItem.GetURL();
     799           0 :     const OUString& rTarget = rHlnkItem.GetTargetFrame();
     800           0 :     sal_uInt16 nType =  (sal_uInt16)rHlnkItem.GetInsertMode();
     801           0 :     nType &= ~HLINK_HTMLMODE;
     802           0 :     const SvxMacroTableDtor* pMacroTable = rHlnkItem.GetMacroTable();
     803             : 
     804           0 :     SwWrtShell& rSh = GetShell();
     805             : 
     806           0 :     if( rSh.GetSelectionType() & nsSelectionType::SEL_TXT )
     807             :     {
     808           0 :         rSh.StartAction();
     809           0 :         SfxItemSet aSet(GetPool(), RES_TXTATR_INETFMT, RES_TXTATR_INETFMT);
     810           0 :         rSh.GetCurAttr( aSet );
     811             : 
     812             :         const SfxPoolItem* pItem;
     813           0 :         if(SfxItemState::SET == aSet.GetItemState(RES_TXTATR_INETFMT, false, &pItem))
     814             :         {
     815             :             // Select links
     816           0 :             rSh.SwCrsrShell::SelectTextAttr(RES_TXTATR_INETFMT, false);
     817             :         }
     818           0 :         switch (nType)
     819             :         {
     820             :         case HLINK_DEFAULT:
     821             :         case HLINK_FIELD:
     822             :             {
     823           0 :                 SwFormatINetFormat aINetFormat( rURL, rTarget );
     824           0 :                 aINetFormat.SetName(rHlnkItem.GetIntName());
     825           0 :                 if(pMacroTable)
     826             :                 {
     827           0 :                     const SvxMacro *pMacro = pMacroTable->Get( SFX_EVENT_MOUSEOVER_OBJECT );
     828           0 :                     if( pMacro )
     829           0 :                         aINetFormat.SetMacro(SFX_EVENT_MOUSEOVER_OBJECT, *pMacro);
     830           0 :                     pMacro = pMacroTable->Get( SFX_EVENT_MOUSECLICK_OBJECT );
     831           0 :                     if( pMacro )
     832           0 :                         aINetFormat.SetMacro(SFX_EVENT_MOUSECLICK_OBJECT, *pMacro);
     833           0 :                     pMacro = pMacroTable->Get( SFX_EVENT_MOUSEOUT_OBJECT );
     834           0 :                     if( pMacro )
     835           0 :                         aINetFormat.SetMacro(SFX_EVENT_MOUSEOUT_OBJECT, *pMacro);
     836             :                 }
     837           0 :                 rSh.SttSelect();
     838           0 :                 rSh.InsertURL( aINetFormat, rName, true );
     839           0 :                 rSh.EndSelect();
     840             :             }
     841           0 :             break;
     842             : 
     843             :         case HLINK_BUTTON:
     844           0 :             bool bSel = rSh.HasSelection();
     845           0 :             if(bSel)
     846           0 :                 rSh.DelRight();
     847           0 :             InsertURLButton( rURL, rTarget, rName );
     848           0 :             rSh.EnterStdMode();
     849           0 :             break;
     850             :         }
     851           0 :         rSh.EndAction();
     852             :     }
     853           0 : }
     854             : 
     855           0 : IMPL_LINK( SwTextShell, RedlineNextHdl, AbstractSvxPostItDialog *, pBtn )
     856             : {
     857           0 :     SwWrtShell* pSh = GetShellPtr();
     858           0 :     AbstractSvxPostItDialog *pDlg = pBtn;
     859             : 
     860             :     // Insert or change a comment.
     861           0 :     pSh->SetRedlineComment(pDlg->GetNote());
     862             : 
     863           0 :     const SwRangeRedline *pRedline = pSh->GetCurrRedline();
     864             : 
     865           0 :     if (pRedline)
     866             :     {
     867             :         // Traveling only if more than one field.
     868           0 :         if( !pSh->IsCrsrPtAtEnd() )
     869           0 :             pSh->SwapPam(); // Move the cursor behind the Redline.
     870             : 
     871           0 :         pSh->Push();
     872           0 :         const SwRangeRedline *pActRed = pSh->SelNextRedline();
     873           0 :         pSh->Pop(pActRed != 0);
     874             : 
     875           0 :         bool bEnable = false;
     876             : 
     877           0 :         if (pActRed)
     878             :         {
     879           0 :             pSh->StartAction();
     880           0 :             pSh->Push();
     881           0 :             bEnable = pSh->SelNextRedline() != 0;
     882           0 :             pSh->Pop(false);
     883           0 :             pSh->EndAction();
     884             :         }
     885             : 
     886           0 :         pDlg->EnableTravel(bEnable, true);
     887             : 
     888           0 :         if( pSh->IsCrsrPtAtEnd() )
     889           0 :             pSh->SwapPam();
     890             : 
     891           0 :         pRedline = pSh->GetCurrRedline();
     892           0 :         OUString sComment = convertLineEnd(pRedline->GetComment(), GetSystemLineEnd());
     893             : 
     894           0 :         pDlg->SetNote(sComment);
     895             :         pDlg->ShowLastAuthor( pRedline->GetAuthorString(),
     896             :                     GetAppLangDateTimeString(
     897           0 :                                 pRedline->GetRedlineData().GetTimeStamp() ));
     898             : 
     899           0 :         pDlg->SetText(lcl_BuildTitleWithRedline(pRedline));
     900             :     }
     901             : 
     902           0 :     return 0;
     903             : }
     904             : 
     905           0 : IMPL_LINK( SwTextShell, RedlinePrevHdl, AbstractSvxPostItDialog *, pBtn )
     906             : {
     907           0 :     SwWrtShell* pSh = GetShellPtr();
     908           0 :     AbstractSvxPostItDialog *pDlg = pBtn;
     909             : 
     910             :     // Insert or change a comment.
     911           0 :     pSh->SetRedlineComment(pDlg->GetNote());
     912             : 
     913           0 :     const SwRangeRedline *pRedline = pSh->GetCurrRedline();
     914             : 
     915           0 :     if (pRedline)
     916             :     {
     917             :         // Traveling only if more than one field.
     918           0 :         pSh->Push();
     919           0 :         const SwRangeRedline *pActRed = pSh->SelPrevRedline();
     920           0 :         pSh->Pop(pActRed != 0);
     921             : 
     922           0 :         bool bEnable = false;
     923             : 
     924           0 :         if (pActRed)
     925             :         {
     926           0 :             pSh->StartAction();
     927           0 :             pSh->Push();
     928           0 :             bEnable = pSh->SelPrevRedline() != 0;
     929           0 :             pSh->Pop(false);
     930           0 :             pSh->EndAction();
     931             :         }
     932             : 
     933           0 :         pDlg->EnableTravel(true, bEnable);
     934             : 
     935           0 :         pRedline = pSh->GetCurrRedline();
     936           0 :         OUString sComment = convertLineEnd(pRedline->GetComment(), GetSystemLineEnd());
     937             : 
     938           0 :         pDlg->SetNote(sComment);
     939             :         pDlg->ShowLastAuthor(pRedline->GetAuthorString(),
     940             :                 GetAppLangDateTimeString(
     941           0 :                                 pRedline->GetRedlineData().GetTimeStamp() ));
     942             : 
     943           0 :         pDlg->SetText(lcl_BuildTitleWithRedline(pRedline));
     944             :     }
     945             : 
     946           0 :     return 0;
     947         177 : }
     948             : 
     949             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11