/************************************************************************* * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: fldlst.cxx,v $ * * $Revision: 1.7 $ * * last change: $Author: hr $ $Date: 2007-09-27 08:49:36 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. * * * GNU Lesser General Public License Version 2.1 * ============================================= * Copyright 2005 by Sun Microsystems, Inc. * 901 San Antonio Road, Palo Alto, CA 94303, USA * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_sw.hxx" #include "editsh.hxx" #include "doc.hxx" #ifndef _DOCARY_HXX #include #endif #ifndef _FMTFLD_HXX //autogen #include #endif #ifndef _TXTFLD_HXX //autogen #include #endif #include "edimp.hxx" #include "expfld.hxx" #include "pam.hxx" #include "docfld.hxx" #include "ndtxt.hxx" /*-------------------------------------------------------------------- Beschreibung: Sortieren der Input-Eintraege --------------------------------------------------------------------*/ SwInputFieldList::SwInputFieldList( SwEditShell* pShell, BOOL bBuildTmpLst ) : pSh(pShell) { // Hier die Liste aller Eingabefelder sortiert erstellen pSrtLst = new _SetGetExpFlds(); const SwFldTypes& rFldTypes = *pSh->GetDoc()->GetFldTypes(); const USHORT nSize = rFldTypes.Count(); // Alle Typen abklappern for(USHORT i=0; i < nSize; ++i) { SwFieldType* pFldType = (SwFieldType*)rFldTypes[ i ]; USHORT nType = pFldType->Which(); if( RES_SETEXPFLD == nType || RES_INPUTFLD == nType || RES_DROPDOWN == nType ) { SwClientIter aIter( *pFldType ); for( SwFmtFld* pFld = (SwFmtFld*)aIter.First( TYPE(SwFmtFld) ); pFld; pFld = (SwFmtFld*)aIter.Next() ) { const SwTxtFld* pTxtFld = pFld->GetTxtFld(); // nur InputFields und interaktive SetExpFlds bearbeiten // and DropDown fields if( !pTxtFld || ( RES_SETEXPFLD == nType && !((SwSetExpField*)pFld->GetFld())->GetInputFlag())) continue; const SwTxtNode& rTxtNode = pTxtFld->GetTxtNode(); if( rTxtNode.GetNodes().IsDocNodes() ) { if( bBuildTmpLst ) { VoidPtr pTmp = (VoidPtr)pTxtFld; aTmpLst.Insert( pTmp, aTmpLst.Count() ); } else { SwNodeIndex aIdx( rTxtNode ); _SetGetExpFld* pNew = new _SetGetExpFld(aIdx, pTxtFld ); pSrtLst->Insert( pNew ); } } } } } } SwInputFieldList::~SwInputFieldList() { delete pSrtLst; } /*-------------------------------------------------------------------- Beschreibung: Felder aus der Liste in sortierter Reihenfolge --------------------------------------------------------------------*/ USHORT SwInputFieldList::Count() const { return pSrtLst->Count(); } SwField* SwInputFieldList::GetField(USHORT nId) { const SwTxtFld* pTxtFld = (*pSrtLst)[ nId ]->GetFld(); ASSERT( pTxtFld, "kein TextFld" ); return (SwField*)pTxtFld->GetFld().GetFld(); } /*-------------------------------------------------------------------- Beschreibung: Cursor sichern --------------------------------------------------------------------*/ void SwInputFieldList::PushCrsr() { pSh->Push(); pSh->ClearMark(); } void SwInputFieldList::PopCrsr() { pSh->Pop(FALSE); } /*-------------------------------------------------------------------- Beschreibung: Position eines Feldes ansteuern --------------------------------------------------------------------*/ void SwInputFieldList::GotoFieldPos(USHORT nId) { pSh->StartAllAction(); (*pSrtLst)[ nId ]->GetPosOfContent( *pSh->GetCrsr()->GetPoint() ); pSh->EndAllAction(); } // vergleiche TmpLst mit akt Feldern. Alle neue kommen in die SortLst // damit sie geupdatet werden koennen. Returnt die Anzahl. // (Fuer Textbausteine: nur seine Input-Felder aktualisieren) USHORT SwInputFieldList::BuildSortLst() { const SwFldTypes& rFldTypes = *pSh->GetDoc()->GetFldTypes(); USHORT nSize = rFldTypes.Count(); // Alle Typen abklappern for( USHORT i = 0; i < nSize; ++i ) { SwFieldType* pFldType = (SwFieldType*)rFldTypes[ i ]; USHORT nType = pFldType->Which(); if( RES_SETEXPFLD == nType || RES_INPUTFLD == nType ) { SwClientIter aIter( *pFldType ); for( SwFmtFld* pFld = (SwFmtFld*)aIter.First( TYPE(SwFmtFld) ); pFld; pFld = (SwFmtFld*)aIter.Next() ) { const SwTxtFld* pTxtFld = pFld->GetTxtFld(); // nur InputFields und interaktive SetExpFlds bearbeiten if( !pTxtFld || ( RES_SETEXPFLD == nType && !((SwSetExpField*)pFld->GetFld())->GetInputFlag())) continue; const SwTxtNode& rTxtNode = pTxtFld->GetTxtNode(); if( rTxtNode.GetNodes().IsDocNodes() ) { VoidPtr pTmp = (VoidPtr)pTxtFld; // nicht in der TempListe vorhanden, also in die SortListe // aufnehemen USHORT nFndPos = aTmpLst.GetPos( pTmp ); if( USHRT_MAX == nFndPos ) { SwNodeIndex aIdx( rTxtNode ); _SetGetExpFld* pNew = new _SetGetExpFld(aIdx, pTxtFld ); pSrtLst->Insert( pNew ); } else aTmpLst.Remove( nFndPos ); } } } } // die Pointer werden nicht mehr gebraucht aTmpLst.Remove( 0, aTmpLst.Count() ); return pSrtLst->Count(); } /*-------------------------------------------------------------------- Beschreibung: Alle Felder auáerhalb von Selektionen aus Liste entfernen --------------------------------------------------------------------*/ void SwInputFieldList::RemoveUnselectedFlds() { _SetGetExpFlds* pNewLst = new _SetGetExpFlds(); FOREACHPAM_START(pSh) { for (USHORT i = 0; i < Count();) { _SetGetExpFld* pFld = (*pSrtLst)[i]; SwPosition aPos(*PCURCRSR->GetPoint()); pFld->GetPos( aPos ); if (aPos >= *PCURCRSR->Start() && aPos < *PCURCRSR->End()) { // Feld innerhalb der Selektion pNewLst->Insert( (*pSrtLst)[i] ); pSrtLst->Remove(i, 1); } else i++; } } FOREACHPAM_END() delete pSrtLst; pSrtLst = pNewLst; }