Files
libreoffice/sw/source/ui/uiview/viewdlg2.cxx

244 lines
7.4 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2000-09-18 16:15:01 +00:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2000-09-18 16:15:01 +00:00
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
2000-09-18 16:15:01 +00:00
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 16:15:01 +00:00
*
* This file is part of OpenOffice.org.
2000-09-18 16:15:01 +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 16:15:01 +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 16:15:01 +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 16:15:01 +00:00
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_sw.hxx"
2000-09-18 16:15:01 +00:00
#include <sfx2/request.hxx>
#include <sfx2/viewfrm.hxx>
#include <fldmgr.hxx>
#include <expfld.hxx>
#include <modcfg.hxx>
#include <tools/shl.hxx>
2000-09-18 16:15:01 +00:00
#include "swmodule.hxx"
#include "view.hxx"
#include "wview.hxx"
#include "wrtsh.hxx"
#include "cmdid.h"
#include "caption.hxx"
#include "poolfmt.hxx"
#include "edtwin.hxx"
#include <SwStyleNameMapper.hxx>
2000-09-18 16:15:01 +00:00
#include "swabstdlg.hxx"
#include "frmui.hrc"
#include "misc.hrc"
2000-09-18 16:15:01 +00:00
#include "view.hrc"
extern String* pOldGrfCat;
extern String* pOldTabCat;
extern String* pOldFrmCat;
extern String* pOldDrwCat;
/* -----------------06.11.98 13:45-------------------
*
* --------------------------------------------------*/
void SwView::ExecDlgExt(SfxRequest &rReq)
{
Window *pMDI = &GetViewFrame()->GetWindow();
switch ( rReq.GetSlot() )
{
case FN_INSERT_CAPTION:
{
SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create();
DBG_ASSERT(pFact, "SwAbstractDialogFactory fail!");
VclAbstractDialog* pDialog = pFact->CreateSwCaptionDialog( pMDI, *this, DLG_CAPTION );
DBG_ASSERT(pDialog, "Dialogdiet fail!");
if ( pDialog )
{
pDialog->Execute();
delete pDialog;
}
2000-09-18 16:15:01 +00:00
break;
}
case FN_EDIT_FOOTNOTE:
{
SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create();
DBG_ASSERT(pFact, "Dialogdiet fail!");
AbstractInsFootNoteDlg* pDlg = pFact->CreateInsFootNoteDlg( DLG_INS_FOOTNOTE,
pMDI, *pWrtShell, TRUE );
DBG_ASSERT(pDlg, "Dialogdiet fail!");
pDlg->SetHelpId(FN_EDIT_FOOTNOTE);
pDlg->SetText( SW_RESSTR(STR_EDIT_FOOTNOTE) );
pDlg->Execute();
delete pDlg;
2000-09-18 16:15:01 +00:00
break;
}
}
}
/* -----------------06.11.98 14:53-------------------
*
* --------------------------------------------------*/
void SwView::AutoCaption(const USHORT nType, const SvGlobalName *pOleId)
{
SwModuleOptions* pModOpt = SW_MOD()->GetModuleConfig();
BOOL bWeb = 0 != PTR_CAST(SwWebView, this);
if (pModOpt->IsInsWithCaption(bWeb))
{
const InsCaptionOpt *pOpt = pModOpt->GetCapOption(bWeb, (SwCapObjType)nType, pOleId);
if (pOpt && pOpt->UseCaption() == TRUE)
InsertCaption(pOpt);
}
}
/* -----------------06.11.98 12:58-------------------
*
* --------------------------------------------------*/
void SwView::InsertCaption(const InsCaptionOpt *pOpt)
{
if (!pOpt)
return;
const String &rName = pOpt->GetCategory();
// Existiert Pool-Vorlage gleichen Namens?
SwWrtShell &rSh = GetWrtShell();
if(rName.Len())
2000-09-18 16:15:01 +00:00
{
USHORT nPoolId = SwStyleNameMapper::GetPoolIdFromUIName(rName, nsSwGetPoolIdFromName::GET_POOLID_TXTCOLL);
if( USHRT_MAX != nPoolId )
rSh.GetTxtCollFromPool(nPoolId);
// Pool-Vorlage existiert nicht: Existiert sie am Dokument?
else if( !rSh.GetParaStyle(rName) )
{
// Sie existiert auch nicht am Dokument: erzeugen
SwTxtFmtColl* pDerivedFrom = rSh.GetTxtCollFromPool(RES_POOLCOLL_LABEL);
rSh.MakeTxtFmtColl(rName, pDerivedFrom);
}
2000-09-18 16:15:01 +00:00
}
SelectionType eType = rSh.GetSelectionType();
if (eType & nsSelectionType::SEL_OLE)
eType = nsSelectionType::SEL_GRF;
2000-09-18 16:15:01 +00:00
// SwLabelType
const SwLabelType eT = eType & nsSelectionType::SEL_TBL ? LTYPE_TABLE :
eType & nsSelectionType::SEL_FRM ? LTYPE_FLY :
eType == nsSelectionType::SEL_TXT ? LTYPE_FLY :
eType & nsSelectionType::SEL_DRW ? LTYPE_DRAW :
2000-09-18 16:15:01 +00:00
LTYPE_OBJECT;
SwFldMgr aMgr(&rSh);
SwSetExpFieldType* pFldType =
(SwSetExpFieldType*)aMgr.GetFldType(RES_SETEXPFLD, rName);
if (!pFldType && rName.Len() )
2000-09-18 16:15:01 +00:00
{
// Neuen Feldtypen erzeugen
SwSetExpFieldType aSwSetExpFieldType(rSh.GetDoc(), rName, nsSwGetSetExpType::GSE_SEQ);
2000-09-18 16:15:01 +00:00
aMgr.InsertFldType(aSwSetExpFieldType);
pFldType = (SwSetExpFieldType*)aMgr.GetFldType(RES_SETEXPFLD, rName);
}
if (!pOpt->IgnoreSeqOpts())
{
if (pFldType)
{
pFldType->SetDelimiter(pOpt->GetSeparator());
pFldType->SetOutlineLvl( static_cast< BYTE >(pOpt->GetLevel()) );
2000-09-18 16:15:01 +00:00
}
}
USHORT nID = USHRT_MAX;
2000-09-18 16:15:01 +00:00
SwFieldType* pType = 0;
const USHORT nCount = aMgr.GetFldTypeCount();
if( rName.Len() )
2000-09-18 16:15:01 +00:00
{
for (USHORT i = 0; i < nCount; ++i)
2000-09-18 16:15:01 +00:00
{
pType = aMgr.GetFldType(USHRT_MAX, i);
String aTmpName( pType->GetName() );
if (aTmpName == rName && pType->Which() == RES_SETEXPFLD)
{
nID = i;
break;
}
2000-09-18 16:15:01 +00:00
}
}
rSh.StartAllAction();
GetWrtShell().InsertLabel( eT,
2000-09-18 16:15:01 +00:00
pOpt->GetCaption(),
!pOpt->IgnoreSeqOpts() ? aEmptyStr : pOpt->GetSeparator(),
pOpt->GetNumSeparator(),
2000-09-18 16:15:01 +00:00
!pOpt->GetPos(),
nID,
pOpt->GetCharacterStyle(),
2000-09-18 16:15:01 +00:00
pOpt->CopyAttributes() );
// Nummernformat setzen
if(pType)
((SwSetExpFieldType*)pType)->SetSeqFormat(pOpt->GetNumType());
2000-09-18 16:15:01 +00:00
rSh.UpdateExpFlds( TRUE );
rSh.EndAllAction();
if ( rSh.IsFrmSelected() )
{
GetEditWin().StopInsFrm();
rSh.EnterSelFrmMode();
}
// Kategorie merken
String** ppStr = 0;
if (eType & nsSelectionType::SEL_GRF)
2000-09-18 16:15:01 +00:00
ppStr = &pOldGrfCat;
else if( eType & nsSelectionType::SEL_TBL)
2000-09-18 16:15:01 +00:00
ppStr = &pOldTabCat;
else if( eType & nsSelectionType::SEL_FRM)
2000-09-18 16:15:01 +00:00
ppStr = &pOldFrmCat;
else if( eType == nsSelectionType::SEL_TXT)
2000-09-18 16:15:01 +00:00
ppStr = &pOldFrmCat;
else if( eType & nsSelectionType::SEL_DRW)
2000-09-18 16:15:01 +00:00
ppStr = &pOldDrwCat;
if( ppStr )
{
if( !*ppStr )
*ppStr = new String( rName );
else
**ppStr = rName;
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */