LCOV - code coverage report
Current view: top level - sw/source/uibase/shells - textfld.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 29 487 6.0 %
Date: 2014-11-03 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 <switerator.hxx>
      73             : #include <boost/scoped_ptr.hpp>
      74             : 
      75             : using namespace nsSwDocInfoSubType;
      76             : 
      77             : extern bool bNoInterrupt;       // in mainwn.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* pFld = rSh.GetCurFld();
     131           0 :             if( pFld )
     132             :             {
     133           0 :                 switch ( pFld->GetTypeId() )
     134             :                 {
     135             :                     case TYP_DDEFLD:
     136             :                     {
     137           0 :                         ::sfx2::SvBaseLink& rLink = ((SwDDEFieldType*)pFld->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->CreateSwFldEditDlg( 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* pFld = rSh.GetCurFld();
     166           0 :             if(pFld && pFld->GetTyp()->Which() == RES_MACROFLD)
     167             :             {
     168             : 
     169           0 :                 const OUString& rMacro = ((SwMacroField*)pFld)->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* pFld = rSh.GetFldType( 0, RES_INPUTFLD );
     185           0 :                 const bool bAddSetExpressionFlds = !( rSh.GetViewOptions()->IsReadonly() );
     186           0 :                 if ( pFld != NULL
     187           0 :                      && rSh.MoveFldType(
     188             :                             pFld,
     189             :                             FN_GOTO_NEXT_INPUTFLD == nSlot,
     190             :                             USHRT_MAX,
     191           0 :                             bAddSetExpressionFlds ) )
     192             :                 {
     193           0 :                     rSh.ClearMark();
     194           0 :                     if ( dynamic_cast<SwInputField*>(rSh.GetCurFld( true )) != NULL )
     195             :                     {
     196           0 :                         rSh.SttSelect();
     197             :                         rSh.SelectTxt(
     198           0 :                             rSh.StartOfInputFldAtPos( *(rSh.GetCrsr()->Start()) ) + 1,
     199           0 :                             rSh.EndOfInputFldAtPos( *(rSh.GetCrsr()->Start()) ) - 1 );
     200             :                     }
     201             :                     else
     202             :                     {
     203           0 :                         rSh.StartInputFldDlg( rSh.GetCurFld( 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 FldMgr.
     218           0 :         SwFldMgr aFldMgr(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 = ((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 = ((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 += ((SfxStringItem *)pItem)->GetValue();
     240             :                     }
     241           0 :                     if( SfxItemState::SET == pArgs->GetItemState(
     242           0 :                                         FN_PARAM_3, false, &pItem ))
     243           0 :                         nCommand = ((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 += ((SfxStringItem *)pItem)->GetValue();
     251             :                     }
     252           0 :                     if( SfxItemState::SET == pArgs->GetItemState(
     253           0 :                                         FN_PARAM_FIELD_CONTENT, false, &pItem ))
     254           0 :                         aPar2 = ((SfxStringItem *)pItem)->GetValue();
     255           0 :                     if( SfxItemState::SET == pArgs->GetItemState(
     256           0 :                                         FN_PARAM_FIELD_FORMAT, false, &pItem ))
     257           0 :                         nFormat = ((SfxUInt32Item *)pItem)->GetValue();
     258             :                     OSL_FAIL("Command is not yet used");
     259           0 :                     sal_Unicode cSeparator = ' ';
     260           0 :                     SwInsertFld_Data aData(nType, 0, aPar1, aPar2, nFormat, GetShellPtr(), cSeparator );
     261           0 :                     bRes = aFldMgr.InsertFld(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 = ((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 = ((SfxUInt16Item *)pItem)->GetValue();
     282           0 :                     if( SfxItemState::SET == pArgs->GetItemState( FN_PARAM_FIELD_SUBTYPE,
     283           0 :                                                                 false, &pItem ))
     284           0 :                         nSubType = ((SfxUInt16Item *)pItem)->GetValue();
     285           0 :                     if( SfxItemState::SET == pArgs->GetItemState(
     286           0 :                                         FN_PARAM_FIELD_CONTENT, false, &pItem ))
     287           0 :                         aPar2 = ((SfxStringItem *)pItem)->GetValue();
     288           0 :                     if( SfxItemState::SET == pArgs->GetItemState(
     289           0 :                                         FN_PARAM_FIELD_FORMAT, false, &pItem ))
     290           0 :                         nFormat = ((SfxUInt32Item *)pItem)->GetValue();
     291           0 :                     if( SfxItemState::SET == pArgs->GetItemState(
     292           0 :                                         FN_PARAM_3, false, &pItem ))
     293             :                     {
     294           0 :                         OUString sTmp = ((SfxStringItem *)pItem)->GetValue();
     295           0 :                         if(!sTmp.isEmpty())
     296           0 :                             cSeparator = sTmp[0];
     297             :                     }
     298           0 :                     SwInsertFld_Data aData(nType, nSubType, aPar1, aPar2, nFormat, GetShellPtr(), cSeparator );
     299           0 :                     bRes = aFldMgr.InsertFld( 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 Flddlg at a new TabPage
     323           0 :                 sal_uInt16 nId = SwFldDlgWrapper::GetChildWindowId();
     324           0 :                 SwFldDlgWrapper *pWrp = (SwFldDlgWrapper*)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*>(aFldMgr.GetCurFld());
     376           0 :                 bool bNew = !(pPostIt && pPostIt->GetTyp()->Which() == RES_POSTITFLD);
     377           0 :                 if (bNew || GetView().GetPostItMgr()->IsAnswer())
     378             :                 {
     379           0 :                     SvtUserOptions aUserOpt;
     380           0 :                     OUString sAuthor;
     381           0 :                     if( (sAuthor = aUserOpt.GetFullName()).isEmpty())
     382           0 :                         if( (sAuthor = aUserOpt.GetID()).isEmpty() )
     383           0 :                             sAuthor = SW_RES( STR_REDLINE_UNKNOWN_AUTHOR );
     384             : 
     385           0 :                     if ( rSh.HasSelection() && !rSh.IsTableMode() )
     386             :                     {
     387           0 :                         rSh.KillPams();
     388             :                     }
     389             : 
     390             :                     // #i120513# Inserting a comment into an autocompletion crashes
     391             :                     // --> suggestion has to be removed before
     392           0 :                     GetView().GetEditWin().StopQuickHelp();
     393             : 
     394           0 :                     SwInsertFld_Data aData(TYP_POSTITFLD, 0, sAuthor, OUString(), 0);
     395           0 :                     aFldMgr.InsertFld( aData );
     396             : 
     397           0 :                     rSh.Push();
     398           0 :                     rSh.SwCrsrShell::Left(1, CRSR_SKIP_CHARS, false);
     399           0 :                     pPostIt = (SwPostItField*)aFldMgr.GetCurFld();
     400           0 :                     rSh.Pop(false); // Restore cursor position
     401             :                  }
     402             : 
     403           0 :                 if (pPostIt)
     404             :                 {
     405           0 :                     SwFieldType* pType = rSh.GetDoc()->getIDocumentFieldsAccess().GetFldType(RES_POSTITFLD, OUString(), false);
     406           0 :                     SwIterator<SwFmtFld,SwFieldType> aIter( *pType );
     407           0 :                     SwFmtFld* pSwFmtFld = aIter.First();
     408           0 :                     while( pSwFmtFld )
     409             :                     {
     410           0 :                         if ( pSwFmtFld->GetField() == pPostIt )
     411             :                         {
     412           0 :                             pSwFmtFld->Broadcast( SwFmtFldHint( 0, SwFmtFldHintWhich::FOCUS, &GetView() ) );
     413           0 :                             break;
     414             :                         }
     415           0 :                         pSwFmtFld = aIter.Next();
     416           0 :                     }
     417             :                 }
     418             :             }
     419           0 :             break;
     420             :             case FN_REDLINE_COMMENT:
     421             :             {
     422             :                 /*  this code can be used once we want redline comments in the margin, all other stuff can
     423             :                     then be deleted
     424             :                 String sComment;
     425             :                 const SwRangeRedline *pRedline = rSh.GetCurrRedline();
     426             : 
     427             :                 if (pRedline)
     428             :                 {
     429             :                     sComment = pRedline->GetComment();
     430             :                     if ( !sComment.Len() )
     431             :                         GetView().GetDocShell()->Broadcast(SwRedlineHint(pRedline,SWREDLINE_INSERTED));
     432             :                     const_cast<SwRangeRedline*>(pRedline)->Broadcast(SwRedlineHint(pRedline,SWREDLINE_FOCUS,&GetView()));
     433             :                 }
     434             :                 */
     435             : 
     436           0 :                 const SwRangeRedline *pRedline = rSh.GetCurrRedline();
     437             : 
     438           0 :                 if (pRedline)
     439             :                 {
     440           0 :                     OUString sComment = convertLineEnd(pRedline->GetComment(), GetSystemLineEnd());
     441             : 
     442           0 :                     bool bTravel = false;
     443             : 
     444           0 :                     SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
     445             :                     assert(pFact && "Dialog creation failed!");
     446           0 :                     ::DialogGetRanges fnGetRange = pFact->GetDialogGetRangesFunc();
     447             :                     assert(fnGetRange && "Dialog creation failed! GetRanges()");
     448           0 :                     SfxItemSet aSet(GetPool(), fnGetRange());
     449           0 :                     aSet.Put(SvxPostItTextItem(sComment, SID_ATTR_POSTIT_TEXT));
     450           0 :                     aSet.Put(SvxPostItAuthorItem(pRedline->GetAuthorString(), SID_ATTR_POSTIT_AUTHOR));
     451             : 
     452             :                     aSet.Put( SvxPostItDateItem( GetAppLangDateTimeString(
     453           0 :                                 pRedline->GetRedlineData().GetTimeStamp() ),
     454           0 :                                 SID_ATTR_POSTIT_DATE ));
     455             : 
     456             :                     // Traveling only if more than one field.
     457           0 :                     rSh.StartAction();
     458             : 
     459           0 :                     rSh.Push();
     460           0 :                     const SwRangeRedline *pActRed = rSh.SelPrevRedline();
     461             : 
     462           0 :                     if (pActRed == pRedline)
     463             :                     {   // New cursor is at the beginning of the current redlines.
     464           0 :                         rSh.Pop();  // Throw old cursor away
     465           0 :                         rSh.Push();
     466           0 :                         pActRed = rSh.SelPrevRedline();
     467             :                     }
     468             : 
     469           0 :                     bool bPrev = pActRed != 0;
     470           0 :                     rSh.Pop(false);
     471           0 :                     rSh.EndAction();
     472             : 
     473           0 :                     rSh.ClearMark();
     474           0 :                     rSh.SelNextRedline();   // Select current redline.
     475             : 
     476           0 :                     rSh.StartAction();
     477           0 :                     rSh.Push();
     478           0 :                     pActRed = rSh.SelNextRedline();
     479           0 :                     bool bNext = pActRed != 0;
     480           0 :                     rSh.Pop(false); // Restore cursor position
     481             : 
     482           0 :                     if( rSh.IsCrsrPtAtEnd() )
     483           0 :                         rSh.SwapPam();
     484             : 
     485           0 :                     rSh.EndAction();
     486             : 
     487           0 :                     bTravel |= bNext || bPrev;
     488             : 
     489           0 :                     SvxAbstractDialogFactory* pFact2 = SvxAbstractDialogFactory::Create();
     490             :                     assert(pFact2 && "Dialog creation failed!");
     491           0 :                     boost::scoped_ptr<AbstractSvxPostItDialog> pDlg(pFact2->CreateSvxPostItDialog( pMDI, aSet, bTravel ));
     492             :                     assert(pDlg && "Dialog creation failed!");
     493           0 :                     pDlg->HideAuthor();
     494             : 
     495           0 :                     pDlg->SetText(lcl_BuildTitleWithRedline(pRedline));
     496             : 
     497           0 :                     if (bTravel)
     498             :                     {
     499           0 :                         pDlg->EnableTravel(bNext, bPrev);
     500           0 :                         pDlg->SetPrevHdl(LINK(this, SwTextShell, RedlinePrevHdl));
     501           0 :                         pDlg->SetNextHdl(LINK(this, SwTextShell, RedlineNextHdl));
     502             :                     }
     503             : 
     504           0 :                     SwViewShell::SetCareWin(pDlg->GetWindow());
     505           0 :                     bNoInterrupt = true;
     506             : 
     507           0 :                     if ( pDlg->Execute() == RET_OK )
     508             :                     {
     509           0 :                         const SfxItemSet* pOutSet = pDlg->GetOutputItemSet();
     510           0 :                         OUString sMsg(((const SvxPostItTextItem&)pOutSet->Get(SID_ATTR_POSTIT_TEXT)).GetValue());
     511             : 
     512             :                         // Insert or change a comment
     513           0 :                         rSh.SetRedlineComment(sMsg);
     514             :                     }
     515             : 
     516           0 :                     pDlg.reset();
     517           0 :                     SwViewShell::SetCareWin(NULL);
     518           0 :                     bNoInterrupt = false;
     519           0 :                     rSh.ClearMark();
     520           0 :                     GetView().AttrChangedNotify(GetShellPtr());
     521             :                 }
     522             :             }
     523           0 :             break;
     524             : 
     525             :             case FN_JAVAEDIT:
     526             :             {
     527           0 :                 OUString aType, aText;
     528           0 :                 bool bIsUrl=false;
     529           0 :                 bool bNew=false;
     530           0 :                 bool bUpdate = false;
     531           0 :                 SwFldMgr aMgr;
     532           0 :                 if ( pItem )
     533             :                 {
     534           0 :                     aText = ((SfxStringItem*)pItem)->GetValue();
     535           0 :                     SFX_REQUEST_ARG( rReq, pType, SfxStringItem, FN_PARAM_2 , false );
     536           0 :                     SFX_REQUEST_ARG( rReq, pIsUrl, SfxBoolItem, FN_PARAM_1 , false );
     537           0 :                     if ( pType )
     538           0 :                         aType = pType->GetValue();
     539           0 :                     if ( pIsUrl )
     540           0 :                         bIsUrl = pIsUrl->GetValue();
     541             : 
     542           0 :                     SwScriptField* pFld = (SwScriptField*)aMgr.GetCurFld();
     543           0 :                     bNew = !pFld || !(pFld->GetTyp()->Which() == RES_SCRIPTFLD);
     544           0 :                     bUpdate = pFld && ( bIsUrl != (bool)pFld->GetFormat() || pFld->GetPar2() != aType || pFld->GetPar1() != aText );
     545             :                 }
     546             :                 else
     547             :                 {
     548           0 :                     SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create();
     549             :                     assert(pFact && "Dialog creation failed!");
     550           0 :                     boost::scoped_ptr<AbstractJavaEditDialog> pDlg(pFact->CreateJavaEditDialog(pMDI, &rSh));
     551             :                     assert(pDlg && "Dialog creation failed!");
     552           0 :                     if ( pDlg->Execute() )
     553             :                     {
     554           0 :                         aType = pDlg->GetScriptType();
     555           0 :                         aText = pDlg->GetScriptText();
     556           0 :                         bIsUrl = pDlg->IsUrl();
     557           0 :                         bNew = pDlg->IsNew();
     558           0 :                         bUpdate = pDlg->IsUpdate();
     559           0 :                         rReq.AppendItem( SfxStringItem( FN_JAVAEDIT, aText ) );
     560           0 :                         rReq.AppendItem( SfxStringItem( FN_PARAM_2, aType ) );
     561           0 :                         rReq.AppendItem( SfxBoolItem( FN_PARAM_1, bIsUrl ) );
     562           0 :                     }
     563             :                 }
     564             : 
     565           0 :                 if( bNew )
     566             :                 {
     567           0 :                     SwInsertFld_Data aData(TYP_SCRIPTFLD, 0, aType, aText, bIsUrl ? 1 : 0);
     568           0 :                     aMgr.InsertFld(aData);
     569           0 :                     rReq.Done();
     570             :                 }
     571           0 :                 else if( bUpdate )
     572             :                 {
     573           0 :                     aMgr.UpdateCurFld( bIsUrl ? 1 : 0, aType, aText );
     574           0 :                     rSh.SetUndoNoResetModified();
     575           0 :                     rReq.Done();
     576             :                 }
     577             :                 else
     578           0 :                     rReq.Ignore();
     579             :             }
     580           0 :             break;
     581             : 
     582             :             case FN_INSERT_FLD_DATE    :
     583           0 :                 nInsertType = TYP_DATEFLD;
     584           0 :                 bIsText = false;
     585           0 :                 goto FIELD_INSERT;
     586             :             case FN_INSERT_FLD_TIME    :
     587           0 :                 nInsertType = TYP_TIMEFLD;
     588           0 :                 bIsText = false;
     589           0 :                 goto FIELD_INSERT;
     590             :             case FN_INSERT_FLD_PGNUMBER:
     591           0 :                 nInsertType = TYP_PAGENUMBERFLD;
     592           0 :                 nInsertFormat = SVX_NUM_PAGEDESC; // Like page template
     593           0 :                 bIsText = false;
     594           0 :                 goto FIELD_INSERT;
     595             :             case FN_INSERT_FLD_PGCOUNT :
     596           0 :                 nInsertType = TYP_DOCSTATFLD;
     597           0 :                 nInsertSubType = 0;
     598           0 :                 bIsText = false;
     599           0 :                 nInsertFormat = SVX_NUM_PAGEDESC;
     600           0 :                 goto FIELD_INSERT;
     601             :             case FN_INSERT_FLD_TOPIC   :
     602           0 :                 nInsertType = TYP_DOCINFOFLD;
     603           0 :                 nInsertSubType = DI_THEMA;
     604           0 :                 goto FIELD_INSERT;
     605             :             case FN_INSERT_FLD_TITLE   :
     606           0 :                 nInsertType = TYP_DOCINFOFLD;
     607           0 :                 nInsertSubType = DI_TITEL;
     608           0 :                 goto FIELD_INSERT;
     609             :             case FN_INSERT_FLD_AUTHOR  :
     610           0 :                 nInsertType = TYP_DOCINFOFLD;
     611           0 :                 nInsertSubType = DI_CREATE|DI_SUB_AUTHOR;
     612             : 
     613             : FIELD_INSERT:
     614             :             {
     615             :                 //format conversion should only be done for number formatter formats
     616           0 :                 if(!nInsertFormat)
     617           0 :                     nInsertFormat = aFldMgr.GetDefaultFormat(nInsertType, bIsText, rSh.GetNumberFormatter());
     618             :                 SwInsertFld_Data aData(nInsertType, nInsertSubType,
     619           0 :                                     OUString(), OUString(), nInsertFormat);
     620           0 :                 aFldMgr.InsertFld(aData);
     621           0 :                 rReq.Done();
     622             :             }
     623           0 :             break;
     624             :             default:
     625             :                 OSL_FAIL("wrong dispatcher");
     626           0 :                 return;
     627           0 :         }
     628             :     }
     629             : }
     630             : 
     631        1613 : void SwTextShell::StateField( SfxItemSet &rSet )
     632             : {
     633        1613 :     SwWrtShell& rSh = GetShell();
     634        1613 :     SfxWhichIter aIter( rSet );
     635        1613 :     const SwField* pField = 0;
     636        1613 :     int bGetField = sal_False;
     637        1613 :     sal_uInt16 nWhich = aIter.FirstWhich();
     638             : 
     639        5018 :     while (nWhich)
     640             :     {
     641        1792 :         switch (nWhich)
     642             :         {
     643             :         case FN_DELETE_COMMENT:
     644             :         case FN_DELETE_NOTE_AUTHOR:
     645             :         case FN_DELETE_ALL_NOTES:
     646             :         case FN_FORMAT_ALL_NOTES:
     647             :         case FN_HIDE_NOTE:
     648             :         case FN_HIDE_NOTE_AUTHOR:
     649             :         case FN_HIDE_ALL_NOTES:
     650             :             {
     651           0 :                 SwPostItMgr* pPostItMgr = GetView().GetPostItMgr();
     652           0 :                 if ( !pPostItMgr )
     653           0 :                     rSet.InvalidateItem( nWhich );
     654           0 :                 else if ( !pPostItMgr->HasActiveSidebarWin() )
     655             :                 {
     656           0 :                     rSet.InvalidateItem( FN_DELETE_COMMENT );
     657           0 :                     rSet.InvalidateItem( FN_HIDE_NOTE );
     658             :                 }
     659             :             }
     660           0 :             break;
     661             : 
     662             :         case FN_EDIT_FIELD:
     663             :             {
     664          18 :                 if( !bGetField )
     665             :                 {
     666          18 :                     pField = rSh.GetCurFld();
     667          18 :                     bGetField = sal_True;
     668             :                 }
     669             : 
     670          18 :                 sal_uInt16 nTempWhich = pField ? pField->GetTyp()->Which() : USHRT_MAX;
     671          18 :                 if( USHRT_MAX == nTempWhich ||
     672           0 :                     RES_POSTITFLD == nTempWhich ||
     673           0 :                     RES_SCRIPTFLD == nTempWhich ||
     674             :                     RES_AUTHORITY == nTempWhich )
     675          18 :                     rSet.DisableItem( nWhich );
     676           0 :                 else if( RES_DDEFLD == nTempWhich &&
     677           0 :                     !((SwDDEFieldType*)pField->GetTyp())->GetBaseLink().IsVisible())
     678             :                 {
     679             :                     // nested links cannot be edited
     680           0 :                     rSet.DisableItem( nWhich );
     681             :                 }
     682             :             }
     683          18 :             break;
     684             : 
     685             :         case FN_EXECUTE_MACROFIELD:
     686             :             {
     687           0 :                 if(!bGetField)
     688             :                 {
     689           0 :                     pField = rSh.GetCurFld();
     690           0 :                     bGetField = sal_True;
     691             :                 }
     692           0 :                 if(!pField || pField->GetTyp()->Which() != RES_MACROFLD)
     693           0 :                     rSet.DisableItem(nWhich);
     694             :             }
     695           0 :             break;
     696             : 
     697             :         case FN_INSERT_FIELD:
     698             :             {
     699           0 :                 if ( rSh.CrsrInsideInputFld() )
     700             :                 {
     701           0 :                     rSet.DisableItem(nWhich);
     702             :                 }
     703             :                 else
     704             :                 {
     705           0 :                     SfxViewFrame* pVFrame = GetView().GetViewFrame();
     706             :                     //#i5788# prevent closing of the field dialog while a modal dialog ( Input field dialog ) is active
     707           0 :                     if(!pVFrame->IsInModalMode() &&
     708           0 :                         pVFrame->KnowsChildWindow(FN_INSERT_FIELD) && !pVFrame->HasChildWindow(FN_INSERT_FIELD_DATA_ONLY) )
     709           0 :                         rSet.Put(SfxBoolItem( FN_INSERT_FIELD, pVFrame->HasChildWindow(nWhich)));
     710             :                     else
     711           0 :                         rSet.DisableItem(FN_INSERT_FIELD);
     712             :                 }
     713             :             }
     714           0 :             break;
     715             : 
     716             :         case FN_INSERT_REF_FIELD:
     717             :             {
     718           0 :                 SfxViewFrame* pVFrame = GetView().GetViewFrame();
     719           0 :                 if ( !pVFrame->KnowsChildWindow(FN_INSERT_FIELD)
     720           0 :                      || rSh.CrsrInsideInputFld() )
     721             :                 {
     722           0 :                     rSet.DisableItem(FN_INSERT_REF_FIELD);
     723             :                 }
     724             :             }
     725           0 :             break;
     726             : 
     727             :         case FN_INSERT_FIELD_CTRL:
     728         887 :                 if ( rSh.CrsrInsideInputFld() )
     729             :                 {
     730           0 :                     rSet.DisableItem(nWhich);
     731             :                 }
     732             :                 else
     733             :                 {
     734         887 :                     rSet.Put(SfxBoolItem( nWhich, GetView().GetViewFrame()->HasChildWindow(FN_INSERT_FIELD)));
     735             :                 }
     736         887 :             break;
     737             : 
     738             :         case FN_REDLINE_COMMENT:
     739           0 :             if (!rSh.GetCurrRedline())
     740           0 :                 rSet.DisableItem(nWhich);
     741           0 :             break;
     742             : 
     743             :         case FN_POSTIT :
     744             :         case FN_JAVAEDIT :
     745             :             {
     746         887 :                 bool bCurField = false;
     747         887 :                 pField = rSh.GetCurFld();
     748         887 :                 if(nWhich == FN_POSTIT)
     749         887 :                     bCurField = pField && pField->GetTyp()->Which() == RES_POSTITFLD;
     750             :                 else
     751           0 :                     bCurField = pField && pField->GetTyp()->Which() == RES_SCRIPTFLD;
     752             : 
     753         887 :                 if( !bCurField && rSh.IsReadOnlyAvailable() && rSh.HasReadonlySel() )
     754             :                 {
     755           0 :                     rSet.DisableItem(nWhich);
     756             :                 }
     757         887 :                 else if ( rSh.CrsrInsideInputFld() )
     758             :                 {
     759           0 :                     rSet.DisableItem(nWhich);
     760             :                 }
     761             :             }
     762             : 
     763         887 :             break;
     764             : 
     765             :         case FN_INSERT_FLD_AUTHOR:
     766             :         case FN_INSERT_FLD_DATE:
     767             :         case FN_INSERT_FLD_PGCOUNT:
     768             :         case FN_INSERT_FLD_PGNUMBER:
     769             :         case FN_INSERT_FLD_TIME:
     770             :         case FN_INSERT_FLD_TITLE:
     771             :         case FN_INSERT_FLD_TOPIC:
     772             :         case FN_INSERT_DBFIELD:
     773           0 :             if ( rSh.CrsrInsideInputFld() )
     774             :             {
     775           0 :                 rSet.DisableItem(nWhich);
     776             :             }
     777           0 :             break;
     778             : 
     779             :         }
     780        1792 :         nWhich = aIter.NextWhich();
     781        1613 :     }
     782        1613 : }
     783             : 
     784           0 : void SwTextShell::InsertHyperlink(const SvxHyperlinkItem& rHlnkItem)
     785             : {
     786           0 :     const OUString& rName   = rHlnkItem.GetName();
     787           0 :     const OUString& rURL    = rHlnkItem.GetURL();
     788           0 :     const OUString& rTarget = rHlnkItem.GetTargetFrame();
     789           0 :     sal_uInt16 nType =  (sal_uInt16)rHlnkItem.GetInsertMode();
     790           0 :     nType &= ~HLINK_HTMLMODE;
     791           0 :     const SvxMacroTableDtor* pMacroTbl = rHlnkItem.GetMacroTbl();
     792             : 
     793           0 :     SwWrtShell& rSh = GetShell();
     794             : 
     795           0 :     if( rSh.GetSelectionType() & nsSelectionType::SEL_TXT )
     796             :     {
     797           0 :         rSh.StartAction();
     798           0 :         SfxItemSet aSet(GetPool(), RES_TXTATR_INETFMT, RES_TXTATR_INETFMT);
     799           0 :         rSh.GetCurAttr( aSet );
     800             : 
     801             :         const SfxPoolItem* pItem;
     802           0 :         if(SfxItemState::SET == aSet.GetItemState(RES_TXTATR_INETFMT, false, &pItem))
     803             :         {
     804             :             // Select links
     805           0 :             rSh.SwCrsrShell::SelectTxtAttr(RES_TXTATR_INETFMT, false);
     806             :         }
     807           0 :         switch (nType)
     808             :         {
     809             :         case HLINK_DEFAULT:
     810             :         case HLINK_FIELD:
     811             :             {
     812           0 :                 SwFmtINetFmt aINetFmt( rURL, rTarget );
     813           0 :                 aINetFmt.SetName(rHlnkItem.GetIntName());
     814           0 :                 if(pMacroTbl)
     815             :                 {
     816           0 :                     const SvxMacro *pMacro = pMacroTbl->Get( SFX_EVENT_MOUSEOVER_OBJECT );
     817           0 :                     if( pMacro )
     818           0 :                         aINetFmt.SetMacro(SFX_EVENT_MOUSEOVER_OBJECT, *pMacro);
     819           0 :                     pMacro = pMacroTbl->Get( SFX_EVENT_MOUSECLICK_OBJECT );
     820           0 :                     if( pMacro )
     821           0 :                         aINetFmt.SetMacro(SFX_EVENT_MOUSECLICK_OBJECT, *pMacro);
     822           0 :                     pMacro = pMacroTbl->Get( SFX_EVENT_MOUSEOUT_OBJECT );
     823           0 :                     if( pMacro )
     824           0 :                         aINetFmt.SetMacro(SFX_EVENT_MOUSEOUT_OBJECT, *pMacro);
     825             :                 }
     826           0 :                 rSh.SttSelect();
     827           0 :                 rSh.InsertURL( aINetFmt, rName, true );
     828           0 :                 rSh.EndSelect();
     829             :             }
     830           0 :             break;
     831             : 
     832             :         case HLINK_BUTTON:
     833           0 :             bool bSel = rSh.HasSelection();
     834           0 :             if(bSel)
     835           0 :                 rSh.DelRight();
     836           0 :             InsertURLButton( rURL, rTarget, rName );
     837           0 :             rSh.EnterStdMode();
     838           0 :             break;
     839             :         }
     840           0 :         rSh.EndAction();
     841             :     }
     842           0 : }
     843             : 
     844           0 : IMPL_LINK( SwTextShell, RedlineNextHdl, AbstractSvxPostItDialog *, pBtn )
     845             : {
     846           0 :     SwWrtShell* pSh = GetShellPtr();
     847           0 :     AbstractSvxPostItDialog *pDlg = (AbstractSvxPostItDialog*)pBtn;
     848             : 
     849             :     // Insert or change a comment.
     850           0 :     pSh->SetRedlineComment(pDlg->GetNote());
     851             : 
     852           0 :     const SwRangeRedline *pRedline = pSh->GetCurrRedline();
     853             : 
     854           0 :     if (pRedline)
     855             :     {
     856             :         // Traveling only if more than one field.
     857           0 :         if( !pSh->IsCrsrPtAtEnd() )
     858           0 :             pSh->SwapPam(); // Move the cursor behind the Redline.
     859             : 
     860           0 :         pSh->Push();
     861           0 :         const SwRangeRedline *pActRed = pSh->SelNextRedline();
     862           0 :         pSh->Pop(pActRed != 0);
     863             : 
     864           0 :         bool bEnable = false;
     865             : 
     866           0 :         if (pActRed)
     867             :         {
     868           0 :             pSh->StartAction();
     869           0 :             pSh->Push();
     870           0 :             bEnable = pSh->SelNextRedline() != 0;
     871           0 :             pSh->Pop(false);
     872           0 :             pSh->EndAction();
     873             :         }
     874             : 
     875           0 :         pDlg->EnableTravel(bEnable, true);
     876             : 
     877           0 :         if( pSh->IsCrsrPtAtEnd() )
     878           0 :             pSh->SwapPam();
     879             : 
     880           0 :         pRedline = pSh->GetCurrRedline();
     881           0 :         OUString sComment = convertLineEnd(pRedline->GetComment(), GetSystemLineEnd());
     882             : 
     883           0 :         pDlg->SetNote(sComment);
     884             :         pDlg->ShowLastAuthor( pRedline->GetAuthorString(),
     885             :                     GetAppLangDateTimeString(
     886           0 :                                 pRedline->GetRedlineData().GetTimeStamp() ));
     887             : 
     888           0 :         pDlg->SetText(lcl_BuildTitleWithRedline(pRedline));
     889             :     }
     890             : 
     891           0 :     return 0;
     892             : }
     893             : 
     894           0 : IMPL_LINK( SwTextShell, RedlinePrevHdl, AbstractSvxPostItDialog *, pBtn )
     895             : {
     896           0 :     SwWrtShell* pSh = GetShellPtr();
     897           0 :     AbstractSvxPostItDialog *pDlg = (AbstractSvxPostItDialog*)pBtn;
     898             : 
     899             :     // Insert or change a comment.
     900           0 :     pSh->SetRedlineComment(pDlg->GetNote());
     901             : 
     902           0 :     const SwRangeRedline *pRedline = pSh->GetCurrRedline();
     903             : 
     904           0 :     if (pRedline)
     905             :     {
     906             :         // Traveling only if more than one field.
     907           0 :         pSh->Push();
     908           0 :         const SwRangeRedline *pActRed = pSh->SelPrevRedline();
     909           0 :         pSh->Pop(pActRed != 0);
     910             : 
     911           0 :         bool bEnable = false;
     912             : 
     913           0 :         if (pActRed)
     914             :         {
     915           0 :             pSh->StartAction();
     916           0 :             pSh->Push();
     917           0 :             bEnable = pSh->SelPrevRedline() != 0;
     918           0 :             pSh->Pop(false);
     919           0 :             pSh->EndAction();
     920             :         }
     921             : 
     922           0 :         pDlg->EnableTravel(true, bEnable);
     923             : 
     924           0 :         pRedline = pSh->GetCurrRedline();
     925           0 :         OUString sComment = convertLineEnd(pRedline->GetComment(), GetSystemLineEnd());
     926             : 
     927           0 :         pDlg->SetNote(sComment);
     928             :         pDlg->ShowLastAuthor(pRedline->GetAuthorString(),
     929             :                 GetAppLangDateTimeString(
     930           0 :                                 pRedline->GetRedlineData().GetTimeStamp() ));
     931             : 
     932           0 :         pDlg->SetText(lcl_BuildTitleWithRedline(pRedline));
     933             :     }
     934             : 
     935           0 :     return 0;
     936         270 : }
     937             : 
     938             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10