2008-02-19 12:57:51 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 20:22:19 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2008-02-19 12:57:51 +00:00
|
|
|
*
|
2008-04-10 20:22:19 +00:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2008-02-19 12:57:51 +00:00
|
|
|
*
|
2008-04-10 20:22:19 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2008-02-19 12:57:51 +00:00
|
|
|
*
|
2008-04-10 20:22:19 +00:00
|
|
|
* $RCSfile: annotsh.cxx,v $
|
2008-05-30 08:30:05 +00:00
|
|
|
* $Revision: 1.5 $
|
2008-02-19 12:57:51 +00:00
|
|
|
*
|
2008-04-10 20:22:19 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2008-02-19 12:57:51 +00:00
|
|
|
*
|
2008-04-10 20:22:19 +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.
|
2008-02-19 12:57:51 +00:00
|
|
|
*
|
2008-04-10 20:22:19 +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).
|
2008-02-19 12:57:51 +00:00
|
|
|
*
|
2008-04-10 20:22:19 +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.
|
2008-02-19 12:57:51 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_sw.hxx"
|
|
|
|
#include <hintids.hxx>
|
|
|
|
|
|
|
|
#include <tools/shl.hxx>
|
|
|
|
#include <com/sun/star/i18n/TransliterationModules.hpp>
|
2008-05-30 08:30:05 +00:00
|
|
|
#include <com/sun/star/i18n/TextConversionOption.hpp>
|
|
|
|
#include <com/sun/star/ui/dialogs/XExecutableDialog.hpp>
|
|
|
|
#include <com/sun/star/lang/XInitialization.hpp>
|
2008-02-19 12:57:51 +00:00
|
|
|
#include <sfx2/objface.hxx>
|
|
|
|
#include <sfx2/viewfrm.hxx>
|
|
|
|
#include <sfx2/bindings.hxx>
|
|
|
|
#include <sfx2/dispatch.hxx>
|
|
|
|
#include <sfx2/request.hxx>
|
|
|
|
#include <svx/spltitem.hxx>
|
|
|
|
#include <svx/orphitem.hxx>
|
|
|
|
#include <svx/brkitem.hxx>
|
|
|
|
#include <svx/widwitem.hxx>
|
|
|
|
#include <svx/kernitem.hxx>
|
|
|
|
#include <svx/escpitem.hxx>
|
|
|
|
#include <svx/lspcitem.hxx>
|
|
|
|
#include <svx/adjitem.hxx>
|
|
|
|
#include <svx/crsditem.hxx>
|
|
|
|
#include <svx/shdditem.hxx>
|
|
|
|
#include <svx/hyznitem.hxx>
|
|
|
|
#include <svx/udlnitem.hxx>
|
|
|
|
#include <svx/fontitem.hxx>
|
|
|
|
#include <svx/fhgtitem.hxx>
|
2008-05-30 08:30:05 +00:00
|
|
|
#include <svx/clipfmtitem.hxx>
|
2008-02-19 12:57:51 +00:00
|
|
|
#include <svtools/stritem.hxx>
|
|
|
|
#include <svtools/slstitm.hxx>
|
|
|
|
#include <svx/colritem.hxx>
|
|
|
|
#include <svx/wghtitem.hxx>
|
|
|
|
#include <svx/cntritem.hxx>
|
|
|
|
#include <svx/postitem.hxx>
|
|
|
|
#include <svx/frmdiritem.hxx>
|
|
|
|
#include <svx/svdoutl.hxx>
|
|
|
|
#include <svtools/whiter.hxx>
|
|
|
|
#include <svtools/cjkoptions.hxx>
|
|
|
|
#include <vcl/msgbox.hxx>
|
|
|
|
#include <svx/flditem.hxx>
|
|
|
|
#include <svx/editstat.hxx>
|
|
|
|
#include <svx/hlnkitem.hxx>
|
|
|
|
#include <svx/htmlmode.hxx>
|
|
|
|
#include <svx/langitem.hxx>
|
|
|
|
#include <svx/unolingu.hxx>
|
|
|
|
#include <svx/scripttypeitem.hxx>
|
|
|
|
#include <svx/writingmodeitem.hxx>
|
|
|
|
#include <swundo.hxx>
|
|
|
|
#include <doc.hxx>
|
|
|
|
#include <viewopt.hxx>
|
|
|
|
#include <wrtsh.hxx>
|
|
|
|
#include <uitool.hxx>
|
|
|
|
#include <popup.hrc>
|
|
|
|
#include <pardlg.hxx>
|
|
|
|
#include <swdtflvr.hxx>
|
|
|
|
#include <drwtxtsh.hxx>
|
|
|
|
#include <swmodule.hxx>
|
|
|
|
#include <initui.hxx>
|
|
|
|
#include <edtwin.hxx>
|
|
|
|
|
|
|
|
#ifndef _CMDID_H
|
|
|
|
#include <cmdid.h>
|
|
|
|
#endif
|
|
|
|
#ifndef _GLOBALS_HRC
|
|
|
|
#include <globals.hrc>
|
|
|
|
#endif
|
|
|
|
#ifndef _SHELLS_HRC
|
|
|
|
#include <shells.hrc>
|
|
|
|
#endif
|
|
|
|
#include <breakit.hxx>
|
|
|
|
#include "annotsh.hxx"
|
|
|
|
#include "view.hxx"
|
|
|
|
#include "PostItMgr.hxx"
|
|
|
|
#include "postit.hxx"
|
|
|
|
|
|
|
|
|
|
|
|
#include "cmdid.h"
|
|
|
|
#include "swtypes.hxx"
|
|
|
|
|
|
|
|
#include <svx/svxdlg.hxx>
|
|
|
|
#include <svx/dialogs.hrc>
|
|
|
|
|
|
|
|
#include <svx/svxids.hrc>
|
|
|
|
#include <svtools/itempool.hxx>
|
|
|
|
#include <svx/outliner.hxx>
|
|
|
|
#include <svx/editeng.hxx>
|
|
|
|
|
|
|
|
#include <docsh.hxx>
|
|
|
|
#include <svtools/undo.hxx>
|
|
|
|
#include "swabstdlg.hxx" //CHINA001
|
|
|
|
#include "chrdlg.hrc" //CHINA001
|
2008-05-30 08:30:05 +00:00
|
|
|
|
|
|
|
#include <cppuhelper/bootstrap.hxx>
|
|
|
|
|
2008-02-19 12:57:51 +00:00
|
|
|
using namespace ::com::sun::star;
|
2008-05-30 08:30:05 +00:00
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using namespace ::com::sun::star::beans;
|
|
|
|
using namespace ::com::sun::star::i18n;
|
2008-02-19 12:57:51 +00:00
|
|
|
|
|
|
|
#define SwAnnotationShell
|
|
|
|
#ifndef _ITEMDEF_HXX
|
|
|
|
#include <itemdef.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _SWSLOTS_HXX
|
|
|
|
#include <swslots.hxx>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
SFX_IMPL_INTERFACE(SwAnnotationShell, SfxShell, SW_RES(STR_SHELLNAME_DRAW_TEXT))
|
|
|
|
{
|
|
|
|
//SFX_OBJECTBAR_REGISTRATION(SFX_OBJECTBAR_OBJECT, SW_RES(RID_DRAW_TEXT_TOOLBOX));
|
|
|
|
SFX_OBJECTBAR_REGISTRATION(SFX_OBJECTBAR_OBJECT, SW_RES(RID_TEXT_TOOLBOX));
|
|
|
|
SFX_POPUPMENU_REGISTRATION(SW_RES(MN_ANNOTATION_POPUPMENU));
|
|
|
|
}
|
|
|
|
|
|
|
|
TYPEINIT1(SwAnnotationShell,SfxShell)
|
|
|
|
|
|
|
|
SwAnnotationShell::SwAnnotationShell( SwView& r )
|
|
|
|
: rView(r)
|
|
|
|
{
|
|
|
|
SwWrtShell &rSh = rView.GetWrtShell();
|
|
|
|
SetPool(rSh.GetAttrPool().GetSecondaryPool());
|
|
|
|
}
|
|
|
|
|
|
|
|
SwAnnotationShell::~SwAnnotationShell()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SfxUndoManager* SwAnnotationShell::GetUndoManager()
|
|
|
|
{
|
|
|
|
SwPostItMgr* pPostItMgr = rView.GetPostItMgr();
|
|
|
|
if ( !pPostItMgr || !pPostItMgr->GetActivePostIt() )
|
|
|
|
{
|
|
|
|
DBG_ASSERT(pPostItMgr,"PostItMgr::Layout(): We are looping forever")
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return &pPostItMgr->GetActivePostIt()->Engine()->GetUndoManager();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SwAnnotationShell::Exec( SfxRequest &rReq )
|
|
|
|
{
|
2008-05-30 08:30:05 +00:00
|
|
|
//TODO: clean this up!!!!
|
2008-02-19 12:57:51 +00:00
|
|
|
SwPostItMgr* pPostItMgr = rView.GetPostItMgr();
|
|
|
|
if ( !pPostItMgr || !pPostItMgr->GetActivePostIt() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
OutlinerView* pOLV = pPostItMgr->GetActivePostIt()->View();
|
|
|
|
SfxItemSet aEditAttr(pOLV->GetAttribs());
|
|
|
|
SfxItemSet aNewAttr(*aEditAttr.GetPool(), aEditAttr.GetRanges());
|
|
|
|
|
|
|
|
sal_uInt16 nSlot = rReq.GetSlot();
|
|
|
|
sal_uInt16 nWhich = GetPool().GetWhich(nSlot);
|
|
|
|
const SfxItemSet *pNewAttrs = rReq.GetArgs();
|
|
|
|
sal_uInt16 nEEWhich = 0;
|
|
|
|
switch (nSlot)
|
|
|
|
{
|
|
|
|
case SID_ATTR_CHAR_FONT:
|
|
|
|
case SID_ATTR_CHAR_FONTHEIGHT:
|
|
|
|
case SID_ATTR_CHAR_WEIGHT:
|
|
|
|
case SID_ATTR_CHAR_POSTURE:
|
|
|
|
{
|
|
|
|
SfxItemPool* pSecondPool = aEditAttr.GetPool()->GetSecondaryPool();
|
|
|
|
if( !pSecondPool )
|
|
|
|
pSecondPool = aEditAttr.GetPool();
|
|
|
|
SvxScriptSetItem aSetItem( nSlot, *pSecondPool );
|
|
|
|
aSetItem.PutItemForScriptType( pOLV->GetSelectedScriptType(), pNewAttrs->Get( nWhich ));
|
|
|
|
aNewAttr.Put( aSetItem.GetItemSet() );
|
|
|
|
rReq.Done();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SID_ATTR_CHAR_COLOR: nEEWhich = EE_CHAR_COLOR; break;
|
|
|
|
case SID_ATTR_CHAR_UNDERLINE:
|
|
|
|
{
|
|
|
|
FontUnderline eFU = ((const SvxUnderlineItem&)aEditAttr.Get(EE_CHAR_UNDERLINE)).GetUnderline();
|
|
|
|
aNewAttr.Put(SvxUnderlineItem(eFU == UNDERLINE_SINGLE ? UNDERLINE_NONE : UNDERLINE_SINGLE, EE_CHAR_UNDERLINE));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SID_ATTR_CHAR_CONTOUR: nEEWhich = EE_CHAR_OUTLINE; break;
|
|
|
|
case SID_ATTR_CHAR_SHADOWED: nEEWhich = EE_CHAR_SHADOW; break;
|
|
|
|
case SID_ATTR_CHAR_STRIKEOUT: nEEWhich = EE_CHAR_STRIKEOUT; break;
|
|
|
|
case SID_ATTR_CHAR_WORDLINEMODE: nEEWhich = EE_CHAR_WLM; break;
|
|
|
|
case SID_ATTR_CHAR_RELIEF : nEEWhich = EE_CHAR_RELIEF; break;
|
|
|
|
case SID_ATTR_CHAR_LANGUAGE : nEEWhich = EE_CHAR_LANGUAGE;break;
|
|
|
|
case SID_ATTR_CHAR_KERNING : nEEWhich = EE_CHAR_KERNING; break;
|
|
|
|
case SID_ATTR_CHAR_SCALEWIDTH: nEEWhich = EE_CHAR_FONTWIDTH; break;
|
|
|
|
case SID_ATTR_CHAR_AUTOKERN : nEEWhich = EE_CHAR_PAIRKERNING; break;
|
|
|
|
case SID_ATTR_CHAR_ESCAPEMENT: nEEWhich = EE_CHAR_ESCAPEMENT; break;
|
|
|
|
case SID_ATTR_PARA_ADJUST_LEFT:
|
|
|
|
aNewAttr.Put(SvxAdjustItem(SVX_ADJUST_LEFT, EE_PARA_JUST));
|
|
|
|
break;
|
|
|
|
case SID_ATTR_PARA_ADJUST_CENTER:
|
|
|
|
aNewAttr.Put(SvxAdjustItem(SVX_ADJUST_CENTER, EE_PARA_JUST));
|
|
|
|
break;
|
|
|
|
case SID_ATTR_PARA_ADJUST_RIGHT:
|
|
|
|
aNewAttr.Put(SvxAdjustItem(SVX_ADJUST_RIGHT, EE_PARA_JUST));
|
|
|
|
break;
|
|
|
|
case SID_ATTR_PARA_ADJUST_BLOCK:
|
|
|
|
aNewAttr.Put(SvxAdjustItem(SVX_ADJUST_BLOCK, EE_PARA_JUST));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SID_ATTR_PARA_LINESPACE_10:
|
|
|
|
{
|
|
|
|
SvxLineSpacingItem aItem(SVX_LINESPACE_ONE_LINE, EE_PARA_SBL);
|
|
|
|
aItem.SetPropLineSpace(100);
|
|
|
|
aNewAttr.Put(aItem);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SID_ATTR_PARA_LINESPACE_15:
|
|
|
|
{
|
|
|
|
SvxLineSpacingItem aItem(SVX_LINESPACE_ONE_POINT_FIVE_LINES, EE_PARA_SBL);
|
|
|
|
aItem.SetPropLineSpace(150);
|
|
|
|
aNewAttr.Put(aItem);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SID_ATTR_PARA_LINESPACE_20:
|
|
|
|
{
|
|
|
|
SvxLineSpacingItem aItem(SVX_LINESPACE_TWO_LINES, EE_PARA_SBL);
|
|
|
|
aItem.SetPropLineSpace(200);
|
|
|
|
aNewAttr.Put(aItem);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SID_SELECTALL:
|
|
|
|
{
|
|
|
|
Outliner * pOutliner = pOLV->GetOutliner();
|
|
|
|
if(pOutliner)
|
|
|
|
{
|
|
|
|
ULONG nParaCount = pOutliner->GetParagraphCount();
|
|
|
|
if (nParaCount > 0)
|
|
|
|
pOLV->SelectRange(0L, USHORT(nParaCount) );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case FN_FORMAT_RESET:
|
|
|
|
{
|
|
|
|
pPostItMgr->GetActivePostIt()->ResetAttributes();
|
|
|
|
rReq.Done();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case FN_SET_SUPER_SCRIPT:
|
|
|
|
{
|
|
|
|
SvxEscapementItem aItem(EE_CHAR_ESCAPEMENT);
|
|
|
|
SvxEscapement eEsc = (SvxEscapement ) ( (const SvxEscapementItem&)
|
|
|
|
aEditAttr.Get( EE_CHAR_ESCAPEMENT ) ).GetEnumValue();
|
|
|
|
|
|
|
|
if( eEsc == SVX_ESCAPEMENT_SUPERSCRIPT )
|
|
|
|
aItem.SetEscapement( SVX_ESCAPEMENT_OFF );
|
|
|
|
else
|
|
|
|
aItem.SetEscapement( SVX_ESCAPEMENT_SUPERSCRIPT );
|
|
|
|
aNewAttr.Put( aItem, EE_CHAR_ESCAPEMENT );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case FN_SET_SUB_SCRIPT:
|
|
|
|
{
|
|
|
|
SvxEscapementItem aItem(EE_CHAR_ESCAPEMENT);
|
|
|
|
SvxEscapement eEsc = (SvxEscapement ) ( (const SvxEscapementItem&)
|
|
|
|
aEditAttr.Get( EE_CHAR_ESCAPEMENT ) ).GetEnumValue();
|
|
|
|
|
|
|
|
if( eEsc == SVX_ESCAPEMENT_SUBSCRIPT )
|
|
|
|
aItem.SetEscapement( SVX_ESCAPEMENT_OFF );
|
|
|
|
else
|
|
|
|
aItem.SetEscapement( SVX_ESCAPEMENT_SUBSCRIPT );
|
|
|
|
aNewAttr.Put( aItem, EE_CHAR_ESCAPEMENT );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SID_HYPERLINK_SETLINK:
|
|
|
|
{
|
|
|
|
const SfxPoolItem* pItem = 0;
|
|
|
|
if(pNewAttrs)
|
|
|
|
pNewAttrs->GetItemState(nSlot, sal_False, &pItem);
|
|
|
|
|
|
|
|
if(pItem)
|
|
|
|
{
|
|
|
|
const SvxHyperlinkItem& rHLinkItem = *(const SvxHyperlinkItem *)pItem;
|
|
|
|
SvxURLField aFld(rHLinkItem.GetURL(), rHLinkItem.GetName(), SVXURLFORMAT_APPDEFAULT);
|
|
|
|
aFld.SetTargetFrame(rHLinkItem.GetTargetFrame());
|
|
|
|
|
|
|
|
const SvxFieldItem* pFieldItem = pOLV->GetFieldAtSelection();
|
|
|
|
|
|
|
|
if (pFieldItem && pFieldItem->GetField()->ISA(SvxURLField))
|
|
|
|
{
|
|
|
|
// Feld selektieren, so dass es beim Insert geloescht wird
|
|
|
|
ESelection aSel = pOLV->GetSelection();
|
|
|
|
aSel.nEndPos++;
|
|
|
|
pOLV->SetSelection(aSel);
|
|
|
|
}
|
|
|
|
pOLV->InsertField(SvxFieldItem(aFld, EE_FEATURE_FIELD));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case FN_INSERT_SYMBOL:
|
|
|
|
InsertSymbol(rReq);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SID_CHAR_DLG:
|
|
|
|
{
|
|
|
|
const SfxItemSet* pArgs = rReq.GetArgs();
|
|
|
|
|
|
|
|
if( !pArgs )
|
|
|
|
{
|
|
|
|
/* mod
|
|
|
|
SwView* pView = &GetView();
|
|
|
|
FieldUnit eMetric = ::GetDfltMetric(0 != PTR_CAST(SwWebView, pView));
|
|
|
|
SW_MOD()->PutItem(SfxUInt16Item(SID_ATTR_METRIC, eMetric));
|
|
|
|
*/
|
|
|
|
SfxItemSet aDlgAttr(GetPool(), EE_ITEMS_START, EE_ITEMS_END);
|
|
|
|
|
|
|
|
// util::Language gibts an der EditEngine nicht! Daher nicht im Set.
|
|
|
|
|
|
|
|
aDlgAttr.Put( aEditAttr );
|
|
|
|
aDlgAttr.Put( SvxKerningItem(0, RES_CHRATR_KERNING) );
|
|
|
|
|
|
|
|
//CHINA001 SwCharDlg* pDlg = new SwCharDlg(pView->GetWindow(), *pView, aDlgAttr, 0, sal_True);
|
|
|
|
SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create();//CHINA001
|
|
|
|
DBG_ASSERT(pFact, "SwAbstractDialogFactory fail!");//CHINA001
|
|
|
|
|
|
|
|
SfxAbstractTabDialog* pDlg = pFact->CreateSwCharDlg( rView.GetWindow(), rView, aDlgAttr, DLG_CHAR,0, sal_True );
|
|
|
|
DBG_ASSERT(pDlg, "Dialogdiet fail!");//CHINA001
|
|
|
|
USHORT nRet = pDlg->Execute();
|
|
|
|
if(RET_OK == nRet )
|
|
|
|
{
|
|
|
|
rReq.Done( *( pDlg->GetOutputItemSet() ) );
|
|
|
|
aNewAttr.Put(*pDlg->GetOutputItemSet());
|
|
|
|
}
|
|
|
|
delete( pDlg );
|
|
|
|
if(RET_OK != nRet)
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
aNewAttr.Put(*pArgs);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SID_PARA_DLG:
|
|
|
|
{
|
|
|
|
const SfxItemSet* pArgs = rReq.GetArgs();
|
|
|
|
|
|
|
|
if (!pArgs)
|
|
|
|
{
|
|
|
|
/* mod todo ???
|
|
|
|
SwView* pView = &GetView();
|
|
|
|
FieldUnit eMetric = ::GetDfltMetric(0 != PTR_CAST(SwWebView, pView));
|
|
|
|
SW_MOD()->PutItem(SfxUInt16Item(SID_ATTR_METRIC, eMetric));
|
|
|
|
*/
|
|
|
|
SfxItemSet aDlgAttr(GetPool(),
|
|
|
|
EE_ITEMS_START, EE_ITEMS_END,
|
|
|
|
SID_ATTR_PARA_HYPHENZONE, SID_ATTR_PARA_HYPHENZONE,
|
|
|
|
SID_ATTR_PARA_SPLIT, SID_ATTR_PARA_SPLIT,
|
|
|
|
SID_ATTR_PARA_WIDOWS, SID_ATTR_PARA_WIDOWS,
|
|
|
|
SID_ATTR_PARA_ORPHANS, SID_ATTR_PARA_ORPHANS,
|
|
|
|
0);
|
|
|
|
|
|
|
|
aDlgAttr.Put(aEditAttr);
|
|
|
|
|
|
|
|
|
|
|
|
aDlgAttr.Put( SvxHyphenZoneItem( sal_False, RES_PARATR_HYPHENZONE) );
|
|
|
|
aDlgAttr.Put( SvxFmtBreakItem( SVX_BREAK_NONE, RES_BREAK ) );
|
|
|
|
aDlgAttr.Put( SvxFmtSplitItem( sal_True, RES_PARATR_SPLIT ) );
|
|
|
|
aDlgAttr.Put( SvxWidowsItem( 0, RES_PARATR_WIDOWS ) );
|
|
|
|
aDlgAttr.Put( SvxOrphansItem( 0, RES_PARATR_ORPHANS ) );
|
|
|
|
|
|
|
|
//CHINA001 SwParaDlg* pDlg = new SwParaDlg(GetView().GetWindow(), GetView(), aDlgAttr, DLG_STD, 0, sal_True);
|
|
|
|
|
|
|
|
SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create();//CHINA001
|
|
|
|
DBG_ASSERT(pFact, "SwAbstractDialogFactory fail!");//CHINA001
|
|
|
|
|
|
|
|
SfxAbstractTabDialog* pDlg = pFact->CreateSwParaDlg( rView.GetWindow(), rView, aDlgAttr,DLG_STD, DLG_PARA, 0, sal_True );
|
|
|
|
DBG_ASSERT(pDlg, "Dialogdiet fail!");//CHINA001
|
|
|
|
USHORT nRet = pDlg->Execute();
|
|
|
|
if(RET_OK == nRet)
|
|
|
|
{
|
|
|
|
rReq.Done( *( pDlg->GetOutputItemSet() ) );
|
|
|
|
aNewAttr.Put(*pDlg->GetOutputItemSet());
|
|
|
|
}
|
|
|
|
delete( pDlg );
|
|
|
|
if(RET_OK != nRet)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
aNewAttr.Put(*pArgs);
|
|
|
|
break;
|
|
|
|
}
|
2008-04-11 13:03:42 +00:00
|
|
|
|
|
|
|
case SID_AUTOSPELL_MARKOFF:
|
|
|
|
case SID_AUTOSPELL_CHECK:
|
|
|
|
{
|
|
|
|
rView.ExecuteSlot(rReq);
|
|
|
|
break;
|
|
|
|
}
|
2008-02-19 12:57:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(nEEWhich && pNewAttrs)
|
|
|
|
aNewAttr.Put(pNewAttrs->Get(nWhich), nEEWhich);
|
|
|
|
|
|
|
|
Rectangle aNullRect;
|
|
|
|
Rectangle aOutRect = pOLV->GetOutputArea();
|
|
|
|
if (aNullRect != aOutRect)
|
|
|
|
pOLV->SetAttribs(aNewAttr);
|
|
|
|
|
|
|
|
rView.GetViewFrame()->GetBindings().InvalidateAll(sal_False);
|
|
|
|
if ( pOLV->GetOutliner()->IsModified() )
|
|
|
|
rView.GetWrtShell().SetModified();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void SwAnnotationShell::GetState(SfxItemSet& rSet)
|
|
|
|
{
|
|
|
|
//TODO: clean this up!!!
|
|
|
|
// FN_SET_SUPER_SCRIPT
|
|
|
|
//SID_ATTR_PARA_ADJUST
|
|
|
|
//SID_ATTR_PARA_ADJUST_BLOCK
|
|
|
|
|
|
|
|
SwPostItMgr* pPostItMgr = rView.GetPostItMgr();
|
|
|
|
if ( !pPostItMgr || !pPostItMgr->GetActivePostIt() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
OutlinerView* pOLV = pPostItMgr->GetActivePostIt()->View();
|
|
|
|
SfxItemSet aEditAttr(pOLV->GetAttribs());
|
|
|
|
|
|
|
|
SfxWhichIter aIter(rSet);
|
|
|
|
sal_uInt16 nWhich = aIter.FirstWhich();
|
|
|
|
while(nWhich)
|
|
|
|
{
|
|
|
|
sal_uInt16 nEEWhich = 0;
|
|
|
|
USHORT nSlotId = GetPool().GetSlotId( nWhich );
|
|
|
|
switch( nSlotId )
|
|
|
|
{
|
|
|
|
case SID_ATTR_CHAR_FONT:
|
|
|
|
case SID_ATTR_CHAR_FONTHEIGHT:
|
|
|
|
case SID_ATTR_CHAR_WEIGHT:
|
|
|
|
case SID_ATTR_CHAR_POSTURE:
|
|
|
|
{
|
|
|
|
if ( pOLV )
|
|
|
|
{
|
|
|
|
USHORT nScriptType = pOLV->GetSelectedScriptType();
|
|
|
|
SfxItemPool* pSecondPool = aEditAttr.GetPool()->GetSecondaryPool();
|
|
|
|
if( !pSecondPool )
|
|
|
|
pSecondPool = aEditAttr.GetPool();
|
|
|
|
SvxScriptSetItem aSetItem( nSlotId, *pSecondPool );
|
|
|
|
aSetItem.GetItemSet().Put( aEditAttr, FALSE );
|
|
|
|
const SfxPoolItem* pI = aSetItem.GetItemOfScript( nScriptType );
|
|
|
|
if( pI )
|
|
|
|
rSet.Put( *pI, nWhich );
|
|
|
|
else
|
|
|
|
rSet.InvalidateItem( nWhich );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
rSet.InvalidateItem( nWhich );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SID_ATTR_CHAR_COLOR: nEEWhich = EE_CHAR_COLOR; break;
|
|
|
|
case SID_ATTR_CHAR_UNDERLINE: nEEWhich = EE_CHAR_UNDERLINE;break;
|
|
|
|
case SID_ATTR_CHAR_CONTOUR: nEEWhich = EE_CHAR_OUTLINE; break;
|
|
|
|
case SID_ATTR_CHAR_SHADOWED: nEEWhich = EE_CHAR_SHADOW;break;
|
|
|
|
case SID_ATTR_CHAR_STRIKEOUT: nEEWhich = EE_CHAR_STRIKEOUT;break;
|
2008-05-30 08:30:05 +00:00
|
|
|
case SID_ATTR_CHAR_LANGUAGE : nEEWhich = EE_CHAR_LANGUAGE;break;
|
2008-02-19 12:57:51 +00:00
|
|
|
case FN_SET_SUPER_SCRIPT:
|
|
|
|
case FN_SET_SUB_SCRIPT:
|
|
|
|
{
|
|
|
|
USHORT nEsc = 0;
|
|
|
|
const SfxPoolItem *pEscItem = 0;
|
|
|
|
if (nWhich==FN_SET_SUPER_SCRIPT)
|
|
|
|
nEsc = SVX_ESCAPEMENT_SUPERSCRIPT;
|
|
|
|
else
|
|
|
|
nEsc = SVX_ESCAPEMENT_SUBSCRIPT;
|
|
|
|
|
|
|
|
if( !pEscItem )
|
|
|
|
pEscItem = &aEditAttr.Get( EE_CHAR_ESCAPEMENT );
|
|
|
|
|
|
|
|
if( nEsc == ((const SvxEscapementItem*)pEscItem)->GetEnumValue() )
|
|
|
|
rSet.Put( SfxBoolItem( nWhich, sal_True ));
|
|
|
|
else
|
|
|
|
rSet.InvalidateItem( nWhich );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SID_ATTR_PARA_ADJUST_LEFT:
|
|
|
|
case SID_ATTR_PARA_ADJUST_RIGHT:
|
|
|
|
case SID_ATTR_PARA_ADJUST_CENTER:
|
|
|
|
case SID_ATTR_PARA_ADJUST_BLOCK:
|
|
|
|
{
|
|
|
|
const SfxPoolItem *pAdjust = 0;
|
|
|
|
int eAdjust = 0;
|
|
|
|
|
|
|
|
if (nWhich==SID_ATTR_PARA_ADJUST_LEFT)
|
|
|
|
eAdjust = SVX_ADJUST_LEFT;
|
|
|
|
else
|
|
|
|
if (nWhich==SID_ATTR_PARA_ADJUST_RIGHT)
|
|
|
|
eAdjust = SVX_ADJUST_RIGHT;
|
|
|
|
else
|
|
|
|
if (nWhich==SID_ATTR_PARA_ADJUST_CENTER)
|
|
|
|
eAdjust = SVX_ADJUST_CENTER;
|
|
|
|
else
|
|
|
|
if (nWhich==SID_ATTR_PARA_ADJUST_BLOCK)
|
|
|
|
eAdjust = SVX_ADJUST_BLOCK;
|
|
|
|
|
|
|
|
if( !pAdjust )
|
|
|
|
aEditAttr.GetItemState( EE_PARA_JUST, sal_False, &pAdjust);
|
|
|
|
|
|
|
|
if( !pAdjust || IsInvalidItem( pAdjust ))
|
|
|
|
rSet.InvalidateItem( nSlotId ), nSlotId = 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( eAdjust == ((const SvxAdjustItem*)pAdjust)->GetAdjust())
|
|
|
|
rSet.Put( SfxBoolItem( nWhich, sal_True ));
|
|
|
|
else
|
|
|
|
rSet.InvalidateItem( nWhich );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SID_ATTR_PARA_LINESPACE_10:
|
|
|
|
case SID_ATTR_PARA_LINESPACE_15:
|
|
|
|
case SID_ATTR_PARA_LINESPACE_20:
|
|
|
|
{
|
|
|
|
const SfxPoolItem *pLSpace = 0;
|
|
|
|
int nLSpace = 0;
|
|
|
|
|
|
|
|
if (nWhich==SID_ATTR_PARA_LINESPACE_10)
|
|
|
|
nLSpace = 100;
|
|
|
|
else
|
|
|
|
if (nWhich==SID_ATTR_PARA_LINESPACE_15)
|
|
|
|
nLSpace = 150;
|
|
|
|
else
|
|
|
|
if (nWhich==SID_ATTR_PARA_LINESPACE_20)
|
|
|
|
nLSpace = 200;
|
|
|
|
|
|
|
|
if( !pLSpace )
|
|
|
|
aEditAttr.GetItemState( EE_PARA_SBL, sal_False, &pLSpace );
|
|
|
|
|
|
|
|
if( !pLSpace || IsInvalidItem( pLSpace ))
|
|
|
|
rSet.InvalidateItem( nSlotId ), nSlotId = 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( nLSpace == ((const SvxLineSpacingItem*)pLSpace)->GetPropLineSpace() )
|
|
|
|
rSet.Put( SfxBoolItem( nWhich, sal_True ));
|
|
|
|
else
|
|
|
|
rSet.InvalidateItem( nWhich );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2008-04-11 13:03:42 +00:00
|
|
|
case SID_AUTOSPELL_MARKOFF:
|
|
|
|
case SID_AUTOSPELL_CHECK:
|
|
|
|
{
|
|
|
|
const SfxPoolItem* pState = rView.GetSlotState(nWhich);
|
|
|
|
if (pState)
|
|
|
|
rSet.Put(SfxBoolItem(nWhich, ((const SfxBoolItem*)pState)->GetValue()));
|
|
|
|
else
|
|
|
|
rSet.DisableItem( nWhich );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-02-19 12:57:51 +00:00
|
|
|
default:
|
|
|
|
rSet.InvalidateItem( nWhich );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(nEEWhich)
|
|
|
|
rSet.Put(aEditAttr.Get(nEEWhich, sal_True), nWhich);
|
|
|
|
|
|
|
|
nWhich = aIter.NextWhich();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SwAnnotationShell::ExecClpbrd(SfxRequest &rReq)
|
|
|
|
{
|
|
|
|
SwPostItMgr* pPostItMgr = rView.GetPostItMgr();
|
|
|
|
if ( !pPostItMgr || !pPostItMgr->GetActivePostIt() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
OutlinerView* pOLV = pPostItMgr->GetActivePostIt()->View();
|
|
|
|
SfxItemSet aEditAttr(pOLV->GetAttribs());
|
|
|
|
SfxItemSet aNewAttr(*aEditAttr.GetPool(), aEditAttr.GetRanges());
|
|
|
|
|
2008-04-11 13:03:42 +00:00
|
|
|
long aOldHeight = pPostItMgr->GetActivePostIt()->GetPostItTextHeight();
|
2008-02-19 12:57:51 +00:00
|
|
|
sal_uInt16 nSlot = rReq.GetSlot();
|
|
|
|
switch (nSlot)
|
|
|
|
{
|
|
|
|
case SID_CUT:
|
|
|
|
pOLV->Cut();
|
|
|
|
break;
|
|
|
|
case SID_COPY:
|
|
|
|
pOLV->Copy();
|
|
|
|
break;
|
|
|
|
case SID_PASTE:
|
|
|
|
pOLV->Paste();
|
|
|
|
break;
|
2008-05-30 08:30:05 +00:00
|
|
|
case FN_PASTESPECIAL:
|
|
|
|
pOLV->PasteSpecial();
|
|
|
|
break;
|
|
|
|
case SID_CLIPBOARD_FORMAT_ITEMS:
|
|
|
|
{
|
|
|
|
ULONG nFormat = 0;
|
|
|
|
const SfxPoolItem* pItem;
|
|
|
|
if ( rReq.GetArgs() && rReq.GetArgs()->GetItemState(nSlot, TRUE, &pItem) == SFX_ITEM_SET &&
|
|
|
|
pItem->ISA(SfxUInt32Item) )
|
|
|
|
{
|
|
|
|
nFormat = ((const SfxUInt32Item*)pItem)->GetValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( nFormat )
|
|
|
|
{
|
|
|
|
if (SOT_FORMAT_STRING == nFormat)
|
|
|
|
pOLV->Paste();
|
|
|
|
else
|
|
|
|
pOLV->PasteSpecial();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2008-02-19 12:57:51 +00:00
|
|
|
}
|
2008-04-11 13:03:42 +00:00
|
|
|
pPostItMgr->GetActivePostIt()->ResizeIfNeccessary(aOldHeight,pPostItMgr->GetActivePostIt()->GetPostItTextHeight());
|
2008-02-19 12:57:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SwAnnotationShell::StateClpbrd(SfxItemSet &rSet)
|
|
|
|
{
|
|
|
|
SwPostItMgr* pPostItMgr = rView.GetPostItMgr();
|
|
|
|
if ( !pPostItMgr || !pPostItMgr->GetActivePostIt() )
|
|
|
|
return;
|
|
|
|
OutlinerView* pOLV = pPostItMgr->GetActivePostIt()->View();
|
|
|
|
|
2008-05-30 08:30:05 +00:00
|
|
|
TransferableDataHelper aDataHelper( TransferableDataHelper::CreateFromSystemClipboard( &rView.GetEditWin() ) );
|
|
|
|
bool bPastePossible = ( aDataHelper.HasFormat( SOT_FORMAT_STRING ) || aDataHelper.HasFormat( SOT_FORMAT_RTF ) );
|
2008-02-19 12:57:51 +00:00
|
|
|
|
|
|
|
SfxWhichIter aIter(rSet);
|
|
|
|
sal_uInt16 nWhich = aIter.FirstWhich();
|
|
|
|
|
|
|
|
while(nWhich)
|
|
|
|
{
|
|
|
|
switch(nWhich)
|
|
|
|
{
|
|
|
|
case SID_CUT:
|
|
|
|
case SID_COPY:
|
2008-05-30 08:30:05 +00:00
|
|
|
{
|
|
|
|
if( !pOLV->HasSelection() )
|
2008-02-19 12:57:51 +00:00
|
|
|
rSet.DisableItem( nWhich );
|
|
|
|
break;
|
2008-05-30 08:30:05 +00:00
|
|
|
}
|
2008-02-19 12:57:51 +00:00
|
|
|
case SID_PASTE:
|
2008-05-30 08:30:05 +00:00
|
|
|
case FN_PASTESPECIAL:
|
2008-02-19 12:57:51 +00:00
|
|
|
{
|
2008-05-30 08:30:05 +00:00
|
|
|
if( !bPastePossible )
|
|
|
|
rSet.DisableItem( nWhich );
|
|
|
|
break;
|
2008-02-19 12:57:51 +00:00
|
|
|
}
|
2008-05-30 08:30:05 +00:00
|
|
|
case SID_CLIPBOARD_FORMAT_ITEMS:
|
2008-02-19 12:57:51 +00:00
|
|
|
{
|
2008-05-30 08:30:05 +00:00
|
|
|
if ( bPastePossible )
|
|
|
|
{
|
|
|
|
SvxClipboardFmtItem aFormats( SID_CLIPBOARD_FORMAT_ITEMS );
|
|
|
|
if ( aDataHelper.HasFormat( SOT_FORMAT_RTF ) )
|
|
|
|
aFormats.AddClipbrdFormat( SOT_FORMAT_RTF );
|
|
|
|
if ( aDataHelper.HasFormat( SOT_FORMAT_STRING ) )
|
|
|
|
aFormats.AddClipbrdFormat( SOT_FORMAT_STRING );
|
|
|
|
rSet.Put( aFormats );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
rSet.DisableItem( nWhich );
|
|
|
|
break;
|
2008-02-19 12:57:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
nWhich = aIter.NextWhich();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SwAnnotationShell::StateInsert(SfxItemSet &rSet)
|
|
|
|
{
|
|
|
|
SwPostItMgr* pPostItMgr = rView.GetPostItMgr();
|
|
|
|
if ( !pPostItMgr || !pPostItMgr->GetActivePostIt() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
OutlinerView* pOLV = pPostItMgr->GetActivePostIt()->View();
|
|
|
|
SfxWhichIter aIter(rSet);
|
|
|
|
sal_uInt16 nWhich = aIter.FirstWhich();
|
|
|
|
|
|
|
|
while(nWhich)
|
|
|
|
{
|
|
|
|
switch(nWhich)
|
|
|
|
{
|
|
|
|
case SID_HYPERLINK_GETLINK:
|
|
|
|
{
|
|
|
|
SvxHyperlinkItem aHLinkItem;
|
|
|
|
aHLinkItem.SetInsertMode(HLINK_FIELD);
|
|
|
|
|
|
|
|
const SvxFieldItem* pFieldItem = pOLV->GetFieldAtSelection();
|
|
|
|
|
|
|
|
if (pFieldItem)
|
|
|
|
{
|
|
|
|
const SvxFieldData* pField = pFieldItem->GetField();
|
|
|
|
|
|
|
|
if (pField->ISA(SvxURLField))
|
|
|
|
{
|
|
|
|
aHLinkItem.SetName(((const SvxURLField*) pField)->GetRepresentation());
|
|
|
|
aHLinkItem.SetURL(((const SvxURLField*) pField)->GetURL());
|
|
|
|
aHLinkItem.SetTargetFrame(((const SvxURLField*) pField)->GetTargetFrame());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
String sSel(pOLV->GetSelected());
|
|
|
|
sSel.Erase(255);
|
|
|
|
sSel.EraseTrailingChars();
|
|
|
|
aHLinkItem.SetName(sSel);
|
|
|
|
}
|
|
|
|
|
|
|
|
sal_uInt16 nHtmlMode = ::GetHtmlMode(rView.GetDocShell());
|
|
|
|
aHLinkItem.SetInsertMode((SvxLinkInsertMode)(aHLinkItem.GetInsertMode() |
|
|
|
|
((nHtmlMode & HTMLMODE_ON) != 0 ? HLINK_HTMLMODE : 0)));
|
|
|
|
|
|
|
|
rSet.Put(aHLinkItem);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
nWhich = aIter.NextWhich();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SwAnnotationShell::NoteExec(SfxRequest &rReq)
|
|
|
|
{
|
|
|
|
SwPostItMgr* pPostItMgr = rView.GetPostItMgr();
|
2008-04-11 13:03:42 +00:00
|
|
|
if ( !pPostItMgr )
|
2008-02-19 12:57:51 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
sal_uInt16 nSlot = rReq.GetSlot();
|
|
|
|
switch (nSlot)
|
|
|
|
{
|
|
|
|
case FN_DELETE_NOTE:
|
2008-04-11 13:03:42 +00:00
|
|
|
if ( pPostItMgr->GetActivePostIt() )
|
|
|
|
pPostItMgr->GetActivePostIt()->Delete();
|
|
|
|
break;
|
2008-02-19 12:57:51 +00:00
|
|
|
case FN_DELETE_ALL_NOTES:
|
2008-04-11 13:03:42 +00:00
|
|
|
pPostItMgr->Delete();
|
|
|
|
break;
|
|
|
|
case FN_DELETE_NOTE_AUTHOR:
|
|
|
|
{
|
|
|
|
SFX_REQUEST_ARG( rReq, pItem, SfxStringItem, nSlot, FALSE);
|
|
|
|
if ( pItem )
|
|
|
|
pPostItMgr->Delete( pItem->GetValue() );
|
|
|
|
break;
|
|
|
|
}
|
2008-02-19 12:57:51 +00:00
|
|
|
case FN_HIDE_NOTE:
|
2008-04-11 13:03:42 +00:00
|
|
|
if ( pPostItMgr->GetActivePostIt() )
|
|
|
|
pPostItMgr->GetActivePostIt()->Hide();
|
|
|
|
break;
|
2008-02-19 12:57:51 +00:00
|
|
|
case FN_HIDE_ALL_NOTES:
|
2008-04-11 13:03:42 +00:00
|
|
|
pPostItMgr->Hide();
|
|
|
|
break;
|
|
|
|
case FN_HIDE_NOTE_AUTHOR:
|
|
|
|
{
|
|
|
|
SFX_REQUEST_ARG( rReq, pItem, SfxStringItem, nSlot, FALSE);
|
|
|
|
if ( pItem )
|
|
|
|
pPostItMgr->Hide( pItem->GetValue() );
|
|
|
|
}
|
2008-02-19 12:57:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SwAnnotationShell::GetNoteState(SfxItemSet &rSet)
|
|
|
|
{
|
|
|
|
SwPostItMgr* pPostItMgr = rView.GetPostItMgr();
|
|
|
|
SfxWhichIter aIter(rSet);
|
|
|
|
sal_uInt16 nWhich = aIter.FirstWhich();
|
|
|
|
while(nWhich)
|
|
|
|
{
|
|
|
|
USHORT nSlotId = GetPool().GetSlotId( nWhich );
|
|
|
|
switch( nSlotId )
|
|
|
|
{
|
|
|
|
case FN_DELETE_NOTE:
|
|
|
|
case FN_DELETE_NOTE_AUTHOR:
|
|
|
|
case FN_DELETE_ALL_NOTES:
|
|
|
|
case FN_HIDE_NOTE:
|
|
|
|
case FN_HIDE_NOTE_AUTHOR:
|
|
|
|
case FN_HIDE_ALL_NOTES:
|
|
|
|
{
|
|
|
|
if ( !pPostItMgr || !pPostItMgr->GetActivePostIt() )
|
|
|
|
rSet.InvalidateItem( nWhich );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
rSet.InvalidateItem( nWhich );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
nWhich = aIter.NextWhich();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SwAnnotationShell::ExecLingu(SfxRequest &rReq)
|
|
|
|
{
|
|
|
|
SwPostItMgr* pPostItMgr = rView.GetPostItMgr();
|
|
|
|
if ( !pPostItMgr || !pPostItMgr->GetActivePostIt() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
OutlinerView* pOLV = pPostItMgr->GetActivePostIt()->View();
|
|
|
|
sal_uInt16 nSlot = rReq.GetSlot();
|
|
|
|
switch (nSlot)
|
|
|
|
{
|
|
|
|
case FN_THESAURUS_DLG:
|
|
|
|
{
|
|
|
|
pOLV->StartThesaurus();
|
|
|
|
break;
|
|
|
|
}
|
2008-05-30 08:30:05 +00:00
|
|
|
case SID_HANGUL_HANJA_CONVERSION:
|
|
|
|
pOLV->StartTextConversion( LANGUAGE_KOREAN, LANGUAGE_KOREAN, NULL,
|
|
|
|
i18n::TextConversionOption::CHARACTER_BY_CHARACTER, sal_True, sal_False );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SID_CHINESE_CONVERSION:
|
|
|
|
{
|
|
|
|
//open ChineseTranslationDialog
|
|
|
|
Reference< XComponentContext > xContext(
|
|
|
|
::cppu::defaultBootstrap_InitialComponentContext() ); //@todo get context from calc if that has one
|
|
|
|
if(xContext.is())
|
|
|
|
{
|
|
|
|
Reference< lang::XMultiComponentFactory > xMCF( xContext->getServiceManager() );
|
|
|
|
if(xMCF.is())
|
|
|
|
{
|
|
|
|
Reference< ui::dialogs::XExecutableDialog > xDialog(
|
|
|
|
xMCF->createInstanceWithContext(
|
|
|
|
rtl::OUString::createFromAscii("com.sun.star.linguistic2.ChineseTranslationDialog")
|
|
|
|
, xContext), UNO_QUERY);
|
|
|
|
Reference< lang::XInitialization > xInit( xDialog, UNO_QUERY );
|
|
|
|
if( xInit.is() )
|
|
|
|
{
|
|
|
|
// initialize dialog
|
|
|
|
Reference< awt::XWindow > xDialogParentWindow(0);
|
|
|
|
Sequence<Any> aSeq(1);
|
|
|
|
Any* pArray = aSeq.getArray();
|
|
|
|
PropertyValue aParam;
|
|
|
|
aParam.Name = rtl::OUString::createFromAscii("ParentWindow");
|
|
|
|
aParam.Value <<= makeAny(xDialogParentWindow);
|
|
|
|
pArray[0] <<= makeAny(aParam);
|
|
|
|
xInit->initialize( aSeq );
|
|
|
|
|
|
|
|
//execute dialog
|
|
|
|
sal_Int16 nDialogRet = xDialog->execute();
|
|
|
|
if( RET_OK == nDialogRet )
|
|
|
|
{
|
|
|
|
//get some parameters from the dialog
|
|
|
|
sal_Bool bToSimplified = sal_True;
|
|
|
|
sal_Bool bUseVariants = sal_True;
|
|
|
|
sal_Bool bCommonTerms = sal_True;
|
|
|
|
Reference< beans::XPropertySet > xProp( xDialog, UNO_QUERY );
|
|
|
|
if( xProp.is() )
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
xProp->getPropertyValue( C2U("IsDirectionToSimplified") ) >>= bToSimplified;
|
|
|
|
xProp->getPropertyValue( C2U("IsUseCharacterVariants") ) >>= bUseVariants;
|
|
|
|
xProp->getPropertyValue( C2U("IsTranslateCommonTerms") ) >>= bCommonTerms;
|
|
|
|
}
|
|
|
|
catch( Exception& )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//execute translation
|
|
|
|
sal_Int16 nSourceLang = bToSimplified ? LANGUAGE_CHINESE_TRADITIONAL : LANGUAGE_CHINESE_SIMPLIFIED;
|
|
|
|
sal_Int16 nTargetLang = bToSimplified ? LANGUAGE_CHINESE_SIMPLIFIED : LANGUAGE_CHINESE_TRADITIONAL;
|
|
|
|
sal_Int32 nOptions = bUseVariants ? i18n::TextConversionOption::USE_CHARACTER_VARIANTS : 0;
|
|
|
|
if( !bCommonTerms )
|
|
|
|
nOptions = nOptions | i18n::TextConversionOption::CHARACTER_BY_CHARACTER;
|
|
|
|
|
|
|
|
Font aTargetFont = pOLV->GetWindow()->GetDefaultFont( DEFAULTFONT_CJK_TEXT,
|
|
|
|
nTargetLang, DEFAULTFONT_FLAGS_ONLYONE );
|
|
|
|
|
|
|
|
pOLV->StartTextConversion( nSourceLang, nTargetLang, &aTargetFont, nOptions, sal_False, sal_False );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Reference< lang::XComponent > xComponent( xDialog, UNO_QUERY );
|
|
|
|
if( xComponent.is() )
|
|
|
|
xComponent->dispose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2008-02-19 12:57:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SwAnnotationShell::GetLinguState(SfxItemSet &rSet)
|
|
|
|
{
|
|
|
|
SwPostItMgr* pPostItMgr = rView.GetPostItMgr();
|
|
|
|
if ( !pPostItMgr || !pPostItMgr->GetActivePostIt() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
OutlinerView* pOLV = pPostItMgr->GetActivePostIt()->View();
|
|
|
|
SfxItemSet aEditAttr(pOLV->GetAttribs());
|
|
|
|
|
|
|
|
SfxWhichIter aIter(rSet);
|
|
|
|
sal_uInt16 nWhich = aIter.FirstWhich();
|
|
|
|
while(nWhich)
|
|
|
|
{
|
|
|
|
|
|
|
|
switch (nWhich)
|
|
|
|
{
|
|
|
|
// disable "Thesaurus" if the language is not supported
|
|
|
|
case FN_THESAURUS_DLG:
|
|
|
|
{
|
|
|
|
const SfxPoolItem &rItem = rView.GetWrtShell().GetDoc()->GetDefault(
|
|
|
|
GetWhichOfScript( RES_CHRATR_LANGUAGE,
|
|
|
|
GetI18NScriptTypeOfLanguage( (USHORT)GetAppLanguage())) );
|
2008-05-30 08:30:05 +00:00
|
|
|
LanguageType nLang = ((const SvxLanguageItem &)
|
|
|
|
rItem).GetLanguage();
|
|
|
|
uno::Reference< linguistic2::XThesaurus > xThes( ::GetThesaurus() );
|
|
|
|
if (!xThes.is() || nLang == LANGUAGE_NONE ||
|
|
|
|
!xThes->hasLocale( SvxCreateLocale( nLang ) ))
|
|
|
|
rSet.DisableItem( FN_THESAURUS_DLG );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SID_HANGUL_HANJA_CONVERSION:
|
|
|
|
case SID_CHINESE_CONVERSION:
|
|
|
|
{
|
|
|
|
if (!SvtCJKOptions().IsAnyEnabled())
|
|
|
|
{
|
|
|
|
rView.GetViewFrame()->GetBindings().SetVisibleState( nWhich, sal_False );
|
|
|
|
rSet.DisableItem(nWhich);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
rView.GetViewFrame()->GetBindings().SetVisibleState( nWhich, sal_True );
|
2008-02-19 12:57:51 +00:00
|
|
|
}
|
2008-05-30 08:30:05 +00:00
|
|
|
break;
|
2008-02-19 12:57:51 +00:00
|
|
|
}
|
|
|
|
nWhich = aIter.NextWhich();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SwAnnotationShell::ExecTransliteration(SfxRequest &rReq)
|
|
|
|
{
|
|
|
|
SwPostItMgr* pPostItMgr = rView.GetPostItMgr();
|
|
|
|
if ( !pPostItMgr || !pPostItMgr->GetActivePostIt() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
OutlinerView* pOLV = pPostItMgr->GetActivePostIt()->View();
|
|
|
|
|
|
|
|
using namespace ::com::sun::star::i18n;
|
|
|
|
{
|
|
|
|
sal_uInt32 nMode = 0;
|
|
|
|
|
|
|
|
switch( rReq.GetSlot() )
|
|
|
|
{
|
|
|
|
case SID_TRANSLITERATE_UPPER:
|
|
|
|
nMode = TransliterationModules_LOWERCASE_UPPERCASE;
|
|
|
|
break;
|
|
|
|
case SID_TRANSLITERATE_LOWER:
|
|
|
|
nMode = TransliterationModules_UPPERCASE_LOWERCASE;
|
|
|
|
break;
|
|
|
|
case SID_TRANSLITERATE_HALFWIDTH:
|
|
|
|
nMode = TransliterationModules_FULLWIDTH_HALFWIDTH;
|
|
|
|
break;
|
|
|
|
case SID_TRANSLITERATE_FULLWIDTH:
|
|
|
|
nMode = TransliterationModules_HALFWIDTH_FULLWIDTH;
|
|
|
|
break;
|
|
|
|
case SID_TRANSLITERATE_HIRAGANA:
|
|
|
|
nMode = TransliterationModules_KATAKANA_HIRAGANA;
|
|
|
|
break;
|
|
|
|
case SID_TRANSLITERATE_KATAGANA:
|
|
|
|
nMode = TransliterationModules_HIRAGANA_KATAKANA;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
ASSERT(!this, "falscher Dispatcher");
|
|
|
|
}
|
|
|
|
|
|
|
|
if( nMode )
|
|
|
|
{
|
|
|
|
pOLV->TransliterateText( nMode );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SwAnnotationShell::ExecUndo(SfxRequest &rReq)
|
|
|
|
{
|
|
|
|
const SfxItemSet* pArgs = rReq.GetArgs();
|
|
|
|
SfxUndoManager* pUndoManager = GetUndoManager();
|
|
|
|
SwWrtShell &rSh = rView.GetWrtShell();
|
|
|
|
|
2008-04-11 13:03:42 +00:00
|
|
|
long aOldHeight = rView.GetPostItMgr()->GetActivePostIt() ? rView.GetPostItMgr()->GetActivePostIt()->GetPostItTextHeight() : 0;
|
|
|
|
|
2008-02-19 12:57:51 +00:00
|
|
|
USHORT nId = rReq.GetSlot();
|
|
|
|
sal_uInt16 nCnt = 1;
|
|
|
|
const SfxPoolItem* pItem=0;
|
|
|
|
if( pArgs && SFX_ITEM_SET == pArgs->GetItemState( nId, FALSE, &pItem ) )
|
|
|
|
nCnt = ((SfxUInt16Item*)pItem)->GetValue();
|
|
|
|
switch( nId )
|
|
|
|
{
|
|
|
|
case SID_UNDO:
|
|
|
|
{
|
|
|
|
if ( pUndoManager )
|
|
|
|
{
|
|
|
|
sal_uInt16 nCount = pUndoManager->GetUndoActionCount();
|
|
|
|
sal_uInt16 nSteps = nCnt;
|
|
|
|
if ( nCount < nCnt )
|
|
|
|
{
|
|
|
|
nCnt = nCnt - nCount;
|
|
|
|
nSteps = nCount;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
nCnt = 0;
|
|
|
|
|
|
|
|
while( nSteps-- )
|
|
|
|
pUndoManager->Undo(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( nCnt )
|
|
|
|
rSh.Do( SwWrtShell::UNDO, nCnt );
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SID_REDO:
|
|
|
|
{
|
|
|
|
if ( pUndoManager )
|
|
|
|
{
|
|
|
|
sal_uInt16 nCount = pUndoManager->GetRedoActionCount();
|
|
|
|
sal_uInt16 nSteps = nCnt;
|
|
|
|
if ( nCount < nCnt )
|
|
|
|
{
|
|
|
|
nCnt = nCnt - nCount;
|
|
|
|
nSteps = nCount;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
nCnt = 0;
|
|
|
|
|
|
|
|
while( nSteps-- )
|
|
|
|
pUndoManager->Redo(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( nCnt )
|
|
|
|
rSh.Do( SwWrtShell::REDO, nCnt );
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2008-04-11 13:03:42 +00:00
|
|
|
|
|
|
|
if (rView.GetPostItMgr()->GetActivePostIt())
|
|
|
|
rView.GetPostItMgr()->GetActivePostIt()->ResizeIfNeccessary(aOldHeight,rView.GetPostItMgr()->GetActivePostIt()->GetPostItTextHeight());
|
2008-02-19 12:57:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SwAnnotationShell::StateUndo(SfxItemSet &rSet)
|
|
|
|
{
|
|
|
|
SfxWhichIter aIter(rSet);
|
|
|
|
USHORT nWhich = aIter.FirstWhich();
|
|
|
|
SfxUndoManager* pUndoManager = GetUndoManager();
|
|
|
|
SfxViewFrame *pSfxViewFrame = rView.GetViewFrame();
|
|
|
|
SwWrtShell &rSh = rView.GetWrtShell();
|
|
|
|
|
|
|
|
while( nWhich )
|
|
|
|
{
|
|
|
|
switch ( nWhich )
|
|
|
|
{
|
|
|
|
case SID_UNDO:
|
|
|
|
{
|
|
|
|
sal_uInt16 nCount = pUndoManager->GetUndoActionCount();
|
|
|
|
if ( nCount )
|
|
|
|
pSfxViewFrame->GetSlotState( nWhich, pSfxViewFrame->GetInterface(), &rSet );
|
|
|
|
else if( rSh.GetUndoIds() )
|
|
|
|
rSet.Put( SfxStringItem( nWhich, rSh.GetDoString(SwWrtShell::UNDO)) );
|
|
|
|
else
|
|
|
|
rSet.DisableItem(nWhich);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SID_REDO:
|
|
|
|
{
|
|
|
|
sal_uInt16 nCount = pUndoManager->GetRedoActionCount();
|
|
|
|
if ( nCount )
|
|
|
|
pSfxViewFrame->GetSlotState( nWhich, pSfxViewFrame->GetInterface(), &rSet );
|
|
|
|
else if(rSh.GetRedoIds())
|
|
|
|
rSet.Put(SfxStringItem( nWhich, rSh.GetDoString(SwWrtShell::REDO)) );
|
|
|
|
else
|
|
|
|
rSet.DisableItem(nWhich);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SID_GETUNDOSTRINGS:
|
|
|
|
case SID_GETREDOSTRINGS:
|
|
|
|
{
|
|
|
|
if( pUndoManager )
|
|
|
|
{
|
|
|
|
UniString (SfxUndoManager:: *fnGetComment)( USHORT ) const;
|
|
|
|
|
|
|
|
sal_uInt16 nCount;
|
|
|
|
if( SID_GETUNDOSTRINGS == nWhich )
|
|
|
|
{
|
|
|
|
nCount = pUndoManager->GetUndoActionCount();
|
|
|
|
fnGetComment = &SfxUndoManager::GetUndoActionComment;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
nCount = pUndoManager->GetRedoActionCount();
|
|
|
|
fnGetComment = &SfxUndoManager::GetRedoActionComment;
|
|
|
|
}
|
|
|
|
|
|
|
|
String sList;
|
|
|
|
if( nCount )
|
|
|
|
{
|
|
|
|
for( sal_uInt16 n = 0; n < nCount; ++n )
|
|
|
|
( sList += (pUndoManager->*fnGetComment)( n ) )
|
|
|
|
+= '\n';
|
|
|
|
}
|
|
|
|
|
|
|
|
SfxStringListItem aItem( nWhich );
|
|
|
|
if( nWhich == SID_GETUNDOSTRINGS && rSh.GetUndoIds() )
|
|
|
|
{
|
|
|
|
rSh.GetDoStrings( SwWrtShell::UNDO, aItem );
|
|
|
|
}
|
|
|
|
else if( nWhich == SID_GETREDOSTRINGS && rSh.GetRedoIds() )
|
|
|
|
{
|
|
|
|
rSh.GetDoStrings( SwWrtShell::UNDO, aItem );
|
|
|
|
}
|
|
|
|
|
|
|
|
sList += aItem.GetString();
|
|
|
|
aItem.SetString( sList );
|
|
|
|
rSet.Put( aItem );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
rSet.DisableItem( nWhich );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
pSfxViewFrame->GetSlotState( nWhich, pSfxViewFrame->GetInterface(), &rSet );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
nWhich = aIter.NextWhich();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SwAnnotationShell::StateDisableItems( SfxItemSet &rSet )
|
|
|
|
{
|
|
|
|
SfxWhichIter aIter(rSet);
|
|
|
|
USHORT nWhich = aIter.FirstWhich();
|
|
|
|
while (nWhich)
|
|
|
|
{
|
|
|
|
rSet.DisableItem( nWhich );
|
|
|
|
nWhich = aIter.NextWhich();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SwAnnotationShell::InsertSymbol(SfxRequest& rReq)
|
|
|
|
{
|
|
|
|
SwPostItMgr* pPostItMgr = rView.GetPostItMgr();
|
|
|
|
if ( !pPostItMgr || !pPostItMgr->GetActivePostIt() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
OutlinerView* pOLV = pPostItMgr->GetActivePostIt()->View();
|
|
|
|
|
|
|
|
const SfxItemSet *pArgs = rReq.GetArgs();
|
|
|
|
const SfxPoolItem* pItem = 0;
|
|
|
|
if( pArgs )
|
|
|
|
pArgs->GetItemState(GetPool().GetWhich(FN_INSERT_SYMBOL), FALSE, &pItem);
|
|
|
|
|
|
|
|
String sSym;
|
|
|
|
String sFontName;
|
|
|
|
if ( pItem )
|
|
|
|
{
|
|
|
|
sSym = ((const SfxStringItem*)pItem)->GetValue();
|
|
|
|
const SfxPoolItem* pFtItem = NULL;
|
|
|
|
pArgs->GetItemState( GetPool().GetWhich(FN_PARAM_1), FALSE, &pFtItem);
|
|
|
|
const SfxStringItem* pFontItem = PTR_CAST( SfxStringItem, pFtItem );
|
|
|
|
if ( pFontItem )
|
|
|
|
sFontName = pFontItem->GetValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
SfxItemSet aSet(pOLV->GetAttribs());
|
|
|
|
USHORT nScript = pOLV->GetSelectedScriptType();
|
|
|
|
SvxFontItem aSetDlgFont( RES_CHRATR_FONT );
|
|
|
|
{
|
|
|
|
SvxScriptSetItem aSetItem( SID_ATTR_CHAR_FONT, *aSet.GetPool() );
|
|
|
|
aSetItem.GetItemSet().Put( aSet, FALSE );
|
|
|
|
const SfxPoolItem* pI = aSetItem.GetItemOfScript( nScript );
|
|
|
|
if( pI )
|
|
|
|
aSetDlgFont = *(SvxFontItem*)pI;
|
|
|
|
else
|
|
|
|
aSetDlgFont = (SvxFontItem&)aSet.Get( GetWhichOfScript(
|
|
|
|
SID_ATTR_CHAR_FONT,
|
|
|
|
GetI18NScriptTypeOfLanguage( (USHORT)GetAppLanguage() ) ));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Font aFont(sFontName, Size(1,1));
|
|
|
|
if(!sSym.Len())
|
|
|
|
{
|
|
|
|
//CHINA001 SvxCharacterMap* pDlg = new SvxCharacterMap( NULL, FALSE );
|
|
|
|
SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
|
|
|
|
DBG_ASSERT(pFact, "Dialogdiet fail!");//CHINA001
|
|
|
|
AbstractSvxCharacterMap* pDlg = pFact->CreateSvxCharacterMap( NULL, RID_SVXDLG_CHARMAP, FALSE );
|
|
|
|
DBG_ASSERT(pDlg, "Dialogdiet fail!");//CHINA001
|
|
|
|
|
|
|
|
Font aDlgFont( pDlg->GetCharFont() );
|
|
|
|
SwViewOption aOpt(*rView.GetWrtShell().GetViewOptions());
|
|
|
|
String sSymbolFont = aOpt.GetSymbolFont();
|
|
|
|
if(sSymbolFont.Len())
|
|
|
|
aDlgFont.SetName(sSymbolFont);
|
|
|
|
else
|
|
|
|
aDlgFont.SetName( aSetDlgFont.GetFamilyName() );
|
|
|
|
|
|
|
|
// Wenn Zeichen selektiert ist kann es angezeigt werden
|
|
|
|
pDlg->SetFont( aDlgFont );
|
|
|
|
USHORT nResult = pDlg->Execute();
|
|
|
|
if( nResult == RET_OK )
|
|
|
|
{
|
|
|
|
aFont = pDlg->GetCharFont();
|
|
|
|
sSym = pDlg->GetCharacters();
|
|
|
|
aOpt.SetSymbolFont(aFont.GetName());
|
|
|
|
SW_MOD()->ApplyUsrPref(aOpt, &rView);
|
|
|
|
}
|
|
|
|
delete( pDlg );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( sSym.Len() )
|
|
|
|
{
|
|
|
|
// nicht flackern
|
|
|
|
pOLV->HideCursor();
|
|
|
|
Outliner * pOutliner = pOLV->GetOutliner();
|
|
|
|
pOutliner->SetUpdateMode(FALSE);
|
|
|
|
|
|
|
|
SfxItemSet aOldSet( pOLV->GetAttribs() );
|
|
|
|
SfxItemSet aFontSet( *aOldSet.GetPool(),
|
|
|
|
EE_CHAR_FONTINFO, EE_CHAR_FONTINFO,
|
|
|
|
EE_CHAR_FONTINFO_CJK, EE_CHAR_FONTINFO_CJK,
|
|
|
|
EE_CHAR_FONTINFO_CTL, EE_CHAR_FONTINFO_CTL,
|
|
|
|
0 );
|
|
|
|
aFontSet.Set( aOldSet );
|
|
|
|
|
|
|
|
// String einfuegen
|
|
|
|
pOLV->InsertText( sSym, TRUE );
|
|
|
|
|
|
|
|
// attributieren (Font setzen)
|
|
|
|
SfxItemSet aSetFont( *aFontSet.GetPool(), aFontSet.GetRanges() );
|
|
|
|
SvxFontItem aFontItem (aFont.GetFamily(), aFont.GetName(),
|
|
|
|
aFont.GetStyleName(), aFont.GetPitch(),
|
|
|
|
aFont.GetCharSet(),
|
|
|
|
EE_CHAR_FONTINFO );
|
|
|
|
USHORT nScriptBreak = pBreakIt->GetAllScriptsOfText( sSym );
|
|
|
|
if( SCRIPTTYPE_LATIN & nScriptBreak )
|
|
|
|
aSetFont.Put( aFontItem, EE_CHAR_FONTINFO );
|
|
|
|
if( SCRIPTTYPE_ASIAN & nScriptBreak )
|
|
|
|
aSetFont.Put( aFontItem, EE_CHAR_FONTINFO_CJK );
|
|
|
|
if( SCRIPTTYPE_COMPLEX & nScriptBreak )
|
|
|
|
aSetFont.Put( aFontItem, EE_CHAR_FONTINFO_CTL );
|
|
|
|
pOLV->SetAttribs(aSetFont);
|
|
|
|
|
|
|
|
// Selektion loeschen
|
|
|
|
ESelection aSel(pOLV->GetSelection());
|
|
|
|
aSel.nStartPara = aSel.nEndPara;
|
|
|
|
aSel.nStartPos = aSel.nEndPos;
|
|
|
|
pOLV->SetSelection(aSel);
|
|
|
|
|
|
|
|
// Alten Font restaurieren
|
|
|
|
pOLV->SetAttribs( aFontSet );
|
|
|
|
|
|
|
|
// ab jetzt wieder anzeigen
|
|
|
|
pOutliner->SetUpdateMode(TRUE);
|
|
|
|
pOLV->ShowCursor();
|
|
|
|
|
|
|
|
rReq.AppendItem( SfxStringItem( GetPool().GetWhich(FN_INSERT_SYMBOL), sSym ) );
|
|
|
|
if(aFont.GetName().Len())
|
|
|
|
rReq.AppendItem( SfxStringItem( FN_PARAM_1, aFont.GetName() ) );
|
|
|
|
rReq.Done();
|
|
|
|
}
|
|
|
|
}
|