office-gobmx/sw/source/ui/misc/insfnote.cxx
Rüdiger Timm 2deff2a2e6 INTEGRATION: CWS changefileheader (1.13.38); FILE MERGED
2008/04/01 15:59:33 thb 1.13.38.3: #i85898# Stripping all external header guards
2008/04/01 12:55:43 thb 1.13.38.2: #i85898# Stripping all external header guards
2008/03/31 16:59:03 rt 1.13.38.1: #i87441# Change license header to LPGL v3.
2008-04-10 19:59:00 +00:00

361 lines
11 KiB
C++

/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2008 by Sun Microsystems, Inc.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: insfnote.cxx,v $
* $Revision: 1.14 $
*
* This file is part of OpenOffice.org.
*
* 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.
*
* 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).
*
* 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.
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_sw.hxx"
#ifdef SW_DLLIMPLEMENTATION
#undef SW_DLLIMPLEMENTATION
#endif
#include <hintids.hxx>
#include <svtools/stritem.hxx>
#include <sfx2/request.hxx>
#include <svx/charmap.hxx>
#include <svx/fontitem.hxx>
#include <vcl/msgbox.hxx>
#include <fmtftn.hxx>
#include <swundo.hxx>
#ifndef _CMDID_H
#include <cmdid.h>
#endif
#include <wrtsh.hxx>
#ifndef _VIEW_HXX
#include <view.hxx>
#endif
#ifndef _BASESH_HXX
#include <basesh.hxx>
#endif
#include <insfnote.hxx>
#include <crsskip.hxx>
#ifndef _MISC_HRC
#include <misc.hrc>
#endif
#ifndef _INSFNOTE_HRC
#include <insfnote.hrc>
#endif
#include <svx/svxdlg.hxx>
#include <svx/dialogs.hrc>
static BOOL bFootnote = TRUE;
/*------------------------------------------------------------------------
Beschreibung: Einfuegen der Fussnote durch OK
------------------------------------------------------------------------*/
void __EXPORT SwInsFootNoteDlg::Apply()
{
String aStr;
if ( aNumberCharBtn.IsChecked() )
aStr = aNumberCharEdit.GetText();
if ( bEdit )
{
rSh.StartAction();
rSh.Left(CRSR_SKIP_CHARS, FALSE, 1, FALSE );
rSh.StartUndo( UNDO_START );
SwFmtFtn aNote( aEndNoteBtn.IsChecked() );
aNote.SetNumStr( aStr );
if( rSh.SetCurFtn( aNote ) && bExtCharAvailable )
{
rSh.Right(CRSR_SKIP_CHARS, TRUE, 1, FALSE );
SfxItemSet aSet( rSh.GetAttrPool(), RES_CHRATR_FONT, RES_CHRATR_FONT );
rSh.GetCurAttr( aSet );
SvxFontItem &rFont = (SvxFontItem &) aSet.Get( RES_CHRATR_FONT );
SvxFontItem aFont( rFont.GetFamily(), aFontName,
rFont.GetStyleName(), rFont.GetPitch(),
eCharSet, RES_CHRATR_FONT );
aSet.Put( aFont );
rSh.SetAttr( aSet, nsSetAttrMode::SETATTR_DONTEXPAND );
rSh.ResetSelect(0, FALSE);
rSh.Left(CRSR_SKIP_CHARS, FALSE, 1, FALSE );
}
rSh.EndUndo( UNDO_END );
rSh.EndAction();
}
else
{
/*
rSh.StartUndo( UNDO_UI_INSERT_FOOTNOTE );
rSh.InsertFootnote( aStr, aEndNoteBtn.IsChecked(), !bExtCharAvailable );
if ( bExtCharAvailable )
{
rSh.Left( CRSR_SKIP_CHARS, TRUE, 1, FALSE );
SfxItemSet aSet( rSh.GetAttrPool(), RES_CHRATR_FONT, RES_CHRATR_FONT );
rSh.GetAttr( aSet );
SvxFontItem &rFont = (SvxFontItem &) aSet.Get( RES_CHRATR_FONT );
SvxFontItem aFont( rFont.GetFamily(), aFontName,
rFont.GetStyleName(), rFont.GetPitch(),
eCharSet );
aSet.Put( aFont );
rSh.SetAttr( aSet, SETATTR_DONTEXPAND );
// zur Bearbeitung des Fussnotentextes
rSh.ResetSelect(0, FALSE);
rSh.GotoFtnTxt();
}
rSh.EndUndo( UNDO_UI_INSERT_FOOTNOTE );
*/
}
bFootnote = aFtnBtn.IsChecked();
}
/*------------------------------------------------------------------------
Beschreibung:
------------------------------------------------------------------------*/
IMPL_LINK_INLINE_START( SwInsFootNoteDlg, NumberCharHdl, Button *, EMPTYARG )
{
aNumberCharEdit.GrabFocus();
aOkBtn.Enable( aNumberCharEdit.GetText().Len() || bExtCharAvailable );
return 0;
}
IMPL_LINK_INLINE_END( SwInsFootNoteDlg, NumberCharHdl, Button *, EMPTYARG )
/*------------------------------------------------------------------------
Beschreibung:
------------------------------------------------------------------------*/
IMPL_LINK_INLINE_START( SwInsFootNoteDlg, NumberEditHdl, void *, EMPTYARG )
{
aNumberCharBtn.Check( TRUE );
aOkBtn.Enable( 0 != aNumberCharEdit.GetText().Len() );
return 0;
}
IMPL_LINK_INLINE_END( SwInsFootNoteDlg, NumberEditHdl, void *, EMPTYARG )
/*------------------------------------------------------------------------
Beschreibung:
------------------------------------------------------------------------*/
IMPL_LINK_INLINE_START( SwInsFootNoteDlg, NumberAutoBtnHdl, Button *, EMPTYARG )
{
aOkBtn.Enable( TRUE );
return 0;
}
IMPL_LINK_INLINE_END( SwInsFootNoteDlg, NumberAutoBtnHdl, Button *, EMPTYARG )
/*------------------------------------------------------------------------
Beschreibung:
------------------------------------------------------------------------*/
IMPL_LINK( SwInsFootNoteDlg, NumberExtCharHdl, Button *, EMPTYARG )
{
aNumberCharBtn.Check( TRUE );
SfxItemSet aSet( rSh.GetAttrPool(), RES_CHRATR_FONT, RES_CHRATR_FONT );
rSh.GetCurAttr( aSet );
const SvxFontItem &rFont = (SvxFontItem &) aSet.Get( RES_CHRATR_FONT );
SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
DBG_ASSERT(pFact, "Dialogdiet fail!");
AbstractSvxCharacterMap* pDlg = pFact->CreateSvxCharacterMap( this, RID_SVXDLG_CHARMAP, FALSE );
DBG_ASSERT(pDlg, "Dialogdiet fail!");
Font aDlgFont( pDlg->GetCharFont() );
aDlgFont.SetName( rFont.GetFamilyName() );
aDlgFont.SetCharSet( rFont.GetCharSet() );
pDlg->SetCharFont( aDlgFont );
if (RET_OK == pDlg->Execute())
{
String sExtChars(pDlg->GetCharacters());
aFontName = pDlg->GetCharFont().GetName();
eCharSet = pDlg->GetCharFont().GetCharSet();
aNumberCharEdit.SetText( sExtChars );
aNumberCharEdit.SetFont( pDlg->GetCharFont() );
bExtCharAvailable = TRUE;
aOkBtn.Enable(0 != aNumberCharEdit.GetText().Len());
}
delete pDlg;
return 0;
}
/*------------------------------------------------------------------------
Beschreibung:
------------------------------------------------------------------------*/
IMPL_LINK( SwInsFootNoteDlg, NextPrevHdl, Button *, pBtn )
{
Apply();
// Hier zur naechsten Fuss/Endnote wandern
rSh.ResetSelect(0, FALSE);
if (pBtn == &aNextBT)
rSh.GotoNextFtnAnchor();
else
rSh.GotoPrevFtnAnchor();
Init();
return 0;
}
/*------------------------------------------------------------------------
Beschreibung:
------------------------------------------------------------------------*/
SwInsFootNoteDlg::SwInsFootNoteDlg(Window *pParent, SwWrtShell &rShell, BOOL bEd) :
SvxStandardDialog(pParent,SW_RES(DLG_INS_FOOTNOTE)),
rSh(rShell),
bExtCharAvailable(FALSE),
bEdit(bEd),
aNumberAutoBtn (this,SW_RES(RB_NUMBER_AUTO)),
aNumberCharBtn (this,SW_RES(RB_NUMBER_CHAR)),
aNumberCharEdit (this,SW_RES(ED_NUMBER_CHAR)),
aNumberExtChar (this,SW_RES(BT_NUMBER_CHAR)),
aNumberFL (this,SW_RES(FL_NUMBER)),
aFtnBtn (this,SW_RES(RB_TYPE_FTN)),
aEndNoteBtn (this,SW_RES(RB_TYPE_ENDNOTE)),
aTypeFL (this,SW_RES(FL_TYPE)),
aOkBtn (this,SW_RES(BT_OK)),
aCancelBtn (this,SW_RES(BT_CANCEL)),
aHelpBtn (this,SW_RES(BT_HELP)),
aPrevBT (this,SW_RES(BT_PREV)),
aNextBT (this,SW_RES(BT_NEXT))
{
aNumberAutoBtn.SetClickHdl(LINK(this,SwInsFootNoteDlg,NumberAutoBtnHdl));
aNumberExtChar.SetClickHdl(LINK(this,SwInsFootNoteDlg,NumberExtCharHdl));
aNumberCharBtn.SetClickHdl(LINK(this,SwInsFootNoteDlg,NumberCharHdl));
aNumberCharEdit.SetModifyHdl(LINK(this,SwInsFootNoteDlg,NumberEditHdl));
aNumberCharEdit.SetMaxTextLen(10);
aNumberCharEdit.Enable();
aPrevBT.SetClickHdl(LINK(this, SwInsFootNoteDlg, NextPrevHdl));
aNextBT.SetClickHdl(LINK(this, SwInsFootNoteDlg, NextPrevHdl));
FreeResource();
rSh.SetCareWin(this);
if (bEdit)
{
Init();
aPrevBT.Show();
aNextBT.Show();
}
}
/*------------------------------------------------------------------------
Beschreibung:
------------------------------------------------------------------------*/
SwInsFootNoteDlg::~SwInsFootNoteDlg()
{
rSh.SetCareWin(0);
if (bEdit)
rSh.ResetSelect(0, FALSE);
}
/*------------------------------------------------------------------------
Beschreibung:
------------------------------------------------------------------------*/
void SwInsFootNoteDlg::Init()
{
SwFmtFtn aFtnNote;
String sNumStr;
Font aFont;
bExtCharAvailable = FALSE;
rSh.StartAction();
if( rSh.GetCurFtn( &aFtnNote ))
{
if(aFtnNote.GetNumStr().Len())
{
sNumStr = aFtnNote.GetNumStr();
rSh.Right(CRSR_SKIP_CHARS, TRUE, 1, FALSE );
SfxItemSet aSet( rSh.GetAttrPool(), RES_CHRATR_FONT, RES_CHRATR_FONT );
rSh.GetCurAttr( aSet );
const SvxFontItem &rFont = (SvxFontItem &) aSet.Get( RES_CHRATR_FONT );
aFont = aNumberCharEdit.GetFont();
aFontName = rFont.GetFamilyName();
eCharSet = rFont.GetCharSet();
aFont.SetName(aFontName);
aFont.SetCharSet(eCharSet);
bExtCharAvailable = TRUE;
rSh.Left( CRSR_SKIP_CHARS, FALSE, 1, FALSE );
}
bFootnote = !aFtnNote.IsEndNote();
}
aNumberCharEdit.SetFont(aFont);
BOOL bNumChar = sNumStr.Len() != 0;
aNumberCharEdit.SetText(sNumStr);
aNumberCharBtn.Check(bNumChar);
aNumberAutoBtn.Check(!bNumChar);
if (bNumChar)
aNumberCharEdit.GrabFocus();
if (bFootnote)
aFtnBtn.Check();
else
aEndNoteBtn.Check();
BOOL bNext = rSh.GotoNextFtnAnchor();
if (bNext)
rSh.GotoPrevFtnAnchor();
BOOL bPrev = rSh.GotoPrevFtnAnchor();
if (bPrev)
rSh.GotoNextFtnAnchor();
aPrevBT.Enable(bPrev);
aNextBT.Enable(bNext);
rSh.Right(CRSR_SKIP_CHARS, TRUE, 1, FALSE );
rSh.EndAction();
}