1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove 29*cdf0e10cSrcweir #include "precompiled_sc.hxx" 30*cdf0e10cSrcweir 31*cdf0e10cSrcweir 32*cdf0e10cSrcweir #include <vcl/msgbox.hxx> 33*cdf0e10cSrcweir #include <unotools/localedatawrapper.hxx> 34*cdf0e10cSrcweir 35*cdf0e10cSrcweir #include "redcom.hxx" 36*cdf0e10cSrcweir #include "docsh.hxx" 37*cdf0e10cSrcweir #include "tabvwsh.hxx" 38*cdf0e10cSrcweir #include <svx/svxdlg.hxx> //CHINA001 39*cdf0e10cSrcweir #include <svx/dialogs.hrc> //CHINA001 40*cdf0e10cSrcweir //------------------------------------------------------------------------ 41*cdf0e10cSrcweir 42*cdf0e10cSrcweir ScRedComDialog::ScRedComDialog( Window* pParent, const SfxItemSet& rCoreSet, 43*cdf0e10cSrcweir ScDocShell *pShell,ScChangeAction *pAction,sal_Bool bPrevNext) 44*cdf0e10cSrcweir { 45*cdf0e10cSrcweir //CHINA001 pDlg = new SvxPostItDialog(pParent,rCoreSet,bPrevNext,sal_True); 46*cdf0e10cSrcweir SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create(); 47*cdf0e10cSrcweir if(pFact) 48*cdf0e10cSrcweir { 49*cdf0e10cSrcweir pDlg = pFact->CreateSvxPostItDialog( pParent, rCoreSet, bPrevNext, sal_True ); 50*cdf0e10cSrcweir DBG_ASSERT(pDlg, "Dialogdiet fail!");//CHINA001 51*cdf0e10cSrcweir pDocShell=pShell; 52*cdf0e10cSrcweir pDlg->DontChangeAuthor(); 53*cdf0e10cSrcweir pDlg->HideAuthor(); 54*cdf0e10cSrcweir 55*cdf0e10cSrcweir pDlg->SetPrevHdl(LINK( this, ScRedComDialog, PrevHdl)); 56*cdf0e10cSrcweir pDlg->SetNextHdl(LINK( this, ScRedComDialog, NextHdl)); 57*cdf0e10cSrcweir 58*cdf0e10cSrcweir ReInit(pAction); 59*cdf0e10cSrcweir } 60*cdf0e10cSrcweir } 61*cdf0e10cSrcweir 62*cdf0e10cSrcweir ScRedComDialog::~ScRedComDialog() 63*cdf0e10cSrcweir { 64*cdf0e10cSrcweir delete pDlg; 65*cdf0e10cSrcweir } 66*cdf0e10cSrcweir 67*cdf0e10cSrcweir ScChangeAction *ScRedComDialog::FindPrev(ScChangeAction *pAction) 68*cdf0e10cSrcweir { 69*cdf0e10cSrcweir if(pAction!=NULL && pDocShell !=NULL) 70*cdf0e10cSrcweir { 71*cdf0e10cSrcweir ScDocument* pDoc = pDocShell->GetDocument(); 72*cdf0e10cSrcweir ScChangeViewSettings* pSettings = pDoc->GetChangeViewSettings(); 73*cdf0e10cSrcweir 74*cdf0e10cSrcweir pAction=pAction->GetPrev(); 75*cdf0e10cSrcweir 76*cdf0e10cSrcweir while(pAction!=NULL) 77*cdf0e10cSrcweir { 78*cdf0e10cSrcweir if( pAction->GetState()==SC_CAS_VIRGIN && 79*cdf0e10cSrcweir pAction->IsDialogRoot() && 80*cdf0e10cSrcweir ScViewUtil::IsActionShown(*pAction,*pSettings,*pDoc)) break; 81*cdf0e10cSrcweir 82*cdf0e10cSrcweir pAction=pAction->GetPrev(); 83*cdf0e10cSrcweir } 84*cdf0e10cSrcweir } 85*cdf0e10cSrcweir return pAction; 86*cdf0e10cSrcweir } 87*cdf0e10cSrcweir 88*cdf0e10cSrcweir ScChangeAction *ScRedComDialog::FindNext(ScChangeAction *pAction) 89*cdf0e10cSrcweir { 90*cdf0e10cSrcweir if(pAction!=NULL && pDocShell !=NULL) 91*cdf0e10cSrcweir { 92*cdf0e10cSrcweir ScDocument* pDoc = pDocShell->GetDocument(); 93*cdf0e10cSrcweir ScChangeViewSettings* pSettings = pDoc->GetChangeViewSettings(); 94*cdf0e10cSrcweir 95*cdf0e10cSrcweir pAction=pAction->GetNext(); 96*cdf0e10cSrcweir 97*cdf0e10cSrcweir while(pAction!=NULL) 98*cdf0e10cSrcweir { 99*cdf0e10cSrcweir if( pAction->GetState()==SC_CAS_VIRGIN && 100*cdf0e10cSrcweir pAction->IsDialogRoot() && 101*cdf0e10cSrcweir ScViewUtil::IsActionShown(*pAction,*pSettings,*pDoc)) break; 102*cdf0e10cSrcweir 103*cdf0e10cSrcweir pAction=pAction->GetNext(); 104*cdf0e10cSrcweir } 105*cdf0e10cSrcweir } 106*cdf0e10cSrcweir return pAction; 107*cdf0e10cSrcweir } 108*cdf0e10cSrcweir 109*cdf0e10cSrcweir void ScRedComDialog::ReInit(ScChangeAction *pAction) 110*cdf0e10cSrcweir { 111*cdf0e10cSrcweir pChangeAction=pAction; 112*cdf0e10cSrcweir if(pChangeAction!=NULL && pDocShell !=NULL) 113*cdf0e10cSrcweir { 114*cdf0e10cSrcweir String aTitle; 115*cdf0e10cSrcweir pChangeAction->GetDescription( aTitle, pDocShell->GetDocument()); 116*cdf0e10cSrcweir pDlg->SetText(aTitle); 117*cdf0e10cSrcweir aComment=pChangeAction->GetComment(); 118*cdf0e10cSrcweir 119*cdf0e10cSrcweir sal_Bool bNext=FindNext(pChangeAction)!=NULL; 120*cdf0e10cSrcweir sal_Bool bPrev=FindPrev(pChangeAction)!=NULL; 121*cdf0e10cSrcweir pDlg->EnableTravel(bNext,bPrev); 122*cdf0e10cSrcweir 123*cdf0e10cSrcweir String aAuthor = pChangeAction->GetUser(); 124*cdf0e10cSrcweir 125*cdf0e10cSrcweir DateTime aDT = pChangeAction->GetDateTime(); 126*cdf0e10cSrcweir String aDate = ScGlobal::pLocaleData->getDate( aDT ); 127*cdf0e10cSrcweir aDate += ' '; 128*cdf0e10cSrcweir aDate += ScGlobal::pLocaleData->getTime( aDT, sal_False, sal_False ); 129*cdf0e10cSrcweir 130*cdf0e10cSrcweir pDlg->ShowLastAuthor(aAuthor, aDate); 131*cdf0e10cSrcweir pDlg->SetNote(aComment); 132*cdf0e10cSrcweir } 133*cdf0e10cSrcweir } 134*cdf0e10cSrcweir 135*cdf0e10cSrcweir short ScRedComDialog::Execute() 136*cdf0e10cSrcweir { 137*cdf0e10cSrcweir short nRet=pDlg->Execute(); 138*cdf0e10cSrcweir 139*cdf0e10cSrcweir if(nRet== RET_OK ) 140*cdf0e10cSrcweir { 141*cdf0e10cSrcweir if ( pDocShell!=NULL && pDlg->GetNote() != aComment ) 142*cdf0e10cSrcweir pDocShell->SetChangeComment( pChangeAction, pDlg->GetNote()); 143*cdf0e10cSrcweir } 144*cdf0e10cSrcweir 145*cdf0e10cSrcweir return nRet; 146*cdf0e10cSrcweir } 147*cdf0e10cSrcweir 148*cdf0e10cSrcweir void ScRedComDialog::SelectCell() 149*cdf0e10cSrcweir { 150*cdf0e10cSrcweir if(pChangeAction!=NULL) 151*cdf0e10cSrcweir { 152*cdf0e10cSrcweir const ScChangeAction* pAction=pChangeAction; 153*cdf0e10cSrcweir const ScBigRange& rRange = pAction->GetBigRange(); 154*cdf0e10cSrcweir 155*cdf0e10cSrcweir if(rRange.IsValid(pDocShell->GetDocument())) 156*cdf0e10cSrcweir { 157*cdf0e10cSrcweir ScViewData* pViewData=pDocShell->GetViewData(); 158*cdf0e10cSrcweir ScRange aRef=rRange.MakeRange(); 159*cdf0e10cSrcweir ScTabView* pTabView=pViewData->GetView(); 160*cdf0e10cSrcweir pTabView->MarkRange(aRef); 161*cdf0e10cSrcweir } 162*cdf0e10cSrcweir } 163*cdf0e10cSrcweir } 164*cdf0e10cSrcweir 165*cdf0e10cSrcweir IMPL_LINK(ScRedComDialog, PrevHdl, AbstractSvxPostItDialog*, pDlgP ) 166*cdf0e10cSrcweir { 167*cdf0e10cSrcweir if (pDocShell!=NULL && pDlgP->GetNote() != aComment ) 168*cdf0e10cSrcweir pDocShell->SetChangeComment( pChangeAction, pDlgP->GetNote()); 169*cdf0e10cSrcweir 170*cdf0e10cSrcweir ReInit(FindPrev(pChangeAction)); 171*cdf0e10cSrcweir SelectCell(); 172*cdf0e10cSrcweir 173*cdf0e10cSrcweir return 0; 174*cdf0e10cSrcweir } 175*cdf0e10cSrcweir 176*cdf0e10cSrcweir IMPL_LINK(ScRedComDialog, NextHdl, AbstractSvxPostItDialog*, pDlgP ) 177*cdf0e10cSrcweir { 178*cdf0e10cSrcweir if ( pDocShell!=NULL && pDlgP->GetNote() != aComment ) 179*cdf0e10cSrcweir pDocShell->SetChangeComment( pChangeAction, pDlgP->GetNote()); 180*cdf0e10cSrcweir 181*cdf0e10cSrcweir ReInit(FindNext(pChangeAction)); 182*cdf0e10cSrcweir SelectCell(); 183*cdf0e10cSrcweir 184*cdf0e10cSrcweir return 0; 185*cdf0e10cSrcweir } 186*cdf0e10cSrcweir 187