2000-09-18 23:08:29 +00:00
|
|
|
|
/*************************************************************************
|
|
|
|
|
*
|
2008-04-10 12:57:46 +00:00
|
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 23:08:29 +00:00
|
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 23:08:29 +00:00
|
|
|
|
*
|
2008-04-10 12:57:46 +00:00
|
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 23:08:29 +00:00
|
|
|
|
*
|
2008-04-10 12:57:46 +00:00
|
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 23:08:29 +00:00
|
|
|
|
*
|
2008-04-10 12:57:46 +00:00
|
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
|
* only, as published by the Free Software Foundation.
|
2000-09-18 23:08:29 +00:00
|
|
|
|
*
|
2008-04-10 12:57:46 +00:00
|
|
|
|
* OpenOffice.org 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 version 3 for more details
|
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2000-09-18 23:08:29 +00:00
|
|
|
|
*
|
2008-04-10 12:57:46 +00:00
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
|
* for a copy of the LGPLv3 License.
|
2000-09-18 23:08:29 +00:00
|
|
|
|
*
|
|
|
|
|
************************************************************************/
|
|
|
|
|
|
2006-09-16 20:12:20 +00:00
|
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
|
#include "precompiled_sw.hxx"
|
|
|
|
|
|
2000-09-18 23:08:29 +00:00
|
|
|
|
|
|
|
|
|
#include "editsh.hxx"
|
|
|
|
|
#include "doc.hxx"
|
|
|
|
|
#include <docary.hxx>
|
|
|
|
|
#include <fmtfld.hxx>
|
|
|
|
|
#include <txtfld.hxx>
|
|
|
|
|
#include "edimp.hxx"
|
|
|
|
|
#include "expfld.hxx"
|
|
|
|
|
#include "pam.hxx"
|
|
|
|
|
#include "docfld.hxx"
|
|
|
|
|
#include "ndtxt.hxx"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------
|
|
|
|
|
Beschreibung: Sortieren der Input-Eintraege
|
|
|
|
|
--------------------------------------------------------------------*/
|
|
|
|
|
|
2007-09-27 07:49:36 +00:00
|
|
|
|
SwInputFieldList::SwInputFieldList( SwEditShell* pShell, BOOL bBuildTmpLst )
|
2000-09-18 23:08:29 +00:00
|
|
|
|
: 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();
|
|
|
|
|
|
2003-06-30 14:51:01 +00:00
|
|
|
|
if( RES_SETEXPFLD == nType || RES_INPUTFLD == nType || RES_DROPDOWN == nType )
|
2000-09-18 23:08:29 +00:00
|
|
|
|
{
|
|
|
|
|
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
|
2003-06-30 14:51:01 +00:00
|
|
|
|
// and DropDown fields
|
2000-09-18 23:08:29 +00:00
|
|
|
|
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<EFBFBD>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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|