office-gobmx/sd/source/ui/func/fuconstr.cxx

421 lines
13 KiB
C++
Raw Normal View History

2000-09-18 11:07:07 -05:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2000-09-18 11:07:07 -05:00
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
2000-09-18 11:07:07 -05:00
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 11:07:07 -05:00
*
* This file is part of OpenOffice.org.
2000-09-18 11:07:07 -05: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 11:07:07 -05: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 11:07:07 -05: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 11:07:07 -05:00
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_sd.hxx"
#include "fuconstr.hxx"
2000-09-18 11:07:07 -05:00
#include <svx/svxids.hrc>
#include <svl/aeitem.hxx>
2000-09-18 11:07:07 -05:00
#include <svx/svdpagv.hxx>
#include <svx/xdef.hxx>
#include <svx/xfillit0.hxx>
#include <sfx2/dispatch.hxx>
#include <sfx2/viewfrm.hxx>
#include "app.hrc"
#include "glob.hrc"
#include "fudraw.hxx"
#include "View.hxx"
#include "Window.hxx"
#include "ViewShell.hxx"
2000-09-18 11:07:07 -05:00
#include "drawdoc.hxx"
#include "FrameView.hxx"
2000-09-18 11:07:07 -05:00
#include "sdpage.hxx"
#include "sdresid.hxx"
#include "stlpool.hxx"
#include <svx/globl3d.hxx>
namespace sd {
2000-09-18 11:07:07 -05:00
TYPEINIT1( FuConstruct, FuDraw );
/*************************************************************************
|*
|* Konstruktor
|*
\************************************************************************/
FuConstruct::FuConstruct (
ViewShell* pViewSh,
::sd::Window* pWin,
::sd::View* pView,
SdDrawDocument* pDoc,
SfxRequest& rReq)
: FuDraw(pViewSh, pWin, pView, pDoc, rReq),
bSelectionChanged(FALSE)
2000-09-18 11:07:07 -05:00
{
}
void FuConstruct::DoExecute( SfxRequest& rReq )
2000-09-18 11:07:07 -05:00
{
FuDraw::DoExecute( rReq );
2000-09-18 11:07:07 -05:00
}
/*************************************************************************
|*
|* MouseButtonDown-event
|*
\************************************************************************/
BOOL FuConstruct::MouseButtonDown(const MouseEvent& rMEvt)
{
BOOL bReturn = FuDraw::MouseButtonDown(rMEvt);
bMBDown = TRUE;
bSelectionChanged = FALSE;
if ( mpView->IsAction() )
2000-09-18 11:07:07 -05:00
{
// #90235# this extra triggering is an error and leads to
// erasing the last two points when creating a polygon.
// if ( rMEvt.IsRight() )
// mpView->BckAction();
2000-09-18 11:07:07 -05:00
return TRUE;
}
bFirstMouseMove = TRUE;
aDragTimer.Start();
aMDPos = mpWindow->PixelToLogic( rMEvt.GetPosPixel() );
USHORT nHitLog = USHORT (mpWindow->PixelToLogic(Size(HITPIX,0)).Width());
2000-09-18 11:07:07 -05:00
if (rMEvt.IsLeft() && mpView->IsExtendedMouseEventDispatcherEnabled())
2000-09-18 11:07:07 -05:00
{
mpWindow->CaptureMouse();
2000-09-18 11:07:07 -05:00
SdrHdl* pHdl = mpView->PickHandle(aMDPos);
2000-09-18 11:07:07 -05:00
if ( pHdl != NULL || mpView->IsMarkedHit(aMDPos, nHitLog) )
2000-09-18 11:07:07 -05:00
{
USHORT nDrgLog = USHORT ( mpWindow->PixelToLogic(Size(DRGPIX,0)).Width() );
mpView->BegDragObj(aMDPos, (OutputDevice*) NULL, pHdl, nDrgLog);
2000-09-18 11:07:07 -05:00
bReturn = TRUE;
}
else if ( mpView->AreObjectsMarked() )
2000-09-18 11:07:07 -05:00
{
mpView->UnmarkAll();
2000-09-18 11:07:07 -05:00
bReturn = TRUE;
}
}
return bReturn;
}
/*************************************************************************
|*
|* MouseMove-event
|*
\************************************************************************/
BOOL FuConstruct::MouseMove(const MouseEvent& rMEvt)
{
FuDraw::MouseMove(rMEvt);
if (aDragTimer.IsActive() )
{
if( bFirstMouseMove )
bFirstMouseMove = FALSE;
else
aDragTimer.Stop();
}
Point aPix(rMEvt.GetPosPixel());
Point aPnt( mpWindow->PixelToLogic(aPix) );
2000-09-18 11:07:07 -05:00
if ( mpView->IsAction() )
2000-09-18 11:07:07 -05:00
{
ForceScroll(aPix);
mpView->MovAction(aPnt);
2000-09-18 11:07:07 -05:00
}
return TRUE;
}
/*************************************************************************
|*
|* MouseButtonUp-event
|*
\************************************************************************/
BOOL FuConstruct::MouseButtonUp(const MouseEvent& rMEvt)
{
BOOL bReturn = TRUE;
if (aDragTimer.IsActive() )
{
aDragTimer.Stop();
bIsInDragMode = FALSE;
}
FuDraw::MouseButtonUp(rMEvt);
Point aPnt( mpWindow->PixelToLogic( rMEvt.GetPosPixel() ) );
2000-09-18 11:07:07 -05:00
if ( mpView && mpView->IsDragObj() )
2000-09-18 11:07:07 -05:00
{
FrameView* pFrameView = mpViewShell->GetFrameView();
2000-09-18 11:07:07 -05:00
BOOL bDragWithCopy = (rMEvt.IsMod1() && pFrameView->IsDragWithCopy());
if (bDragWithCopy)
{
bDragWithCopy = !mpView->IsPresObjSelected(FALSE, TRUE);
2000-09-18 11:07:07 -05:00
}
mpView->SetDragWithCopy(bDragWithCopy);
mpView->EndDragObj( mpView->IsDragWithCopy() );
2000-09-18 11:07:07 -05:00
}
else if ( mpView && mpView->IsMarkObj() )
2000-09-18 11:07:07 -05:00
{
mpView->EndMarkObj();
2000-09-18 11:07:07 -05:00
}
else
{
bReturn = FALSE;
}
if ( mpView && !mpView->IsAction() )
2000-09-18 11:07:07 -05:00
{
mpWindow->ReleaseMouse();
USHORT nDrgLog = USHORT ( mpWindow->PixelToLogic(Size(DRGPIX,0)).Width() );
2000-09-18 11:07:07 -05:00
if ( !mpView->AreObjectsMarked() )
2000-09-18 11:07:07 -05:00
{
SdrObject* pObj;
SdrPageView* pPV;
USHORT nHitLog = USHORT ( mpWindow->PixelToLogic(Size(HITPIX,0)).Width() );
2000-09-18 11:07:07 -05:00
CWS-TOOLING: integrate CWS aw065 2009-06-17 13:48:12 +0200 aw r273068 : #99385# corrected small error in SCs selection visualisation 2009-06-16 15:45:28 +0200 wg r273021 : i102838 2009-06-16 12:46:07 +0200 wg r273016 : i102833 2009-06-11 17:40:29 +0200 aw r272895 : #i98870# added implementation for getPageCount helper 2009-06-11 16:39:54 +0200 aw r272885 : #i102663#, #i102667#, #i98870# incluide file typo corrected 2009-06-11 16:24:07 +0200 aw r272881 : #i102663#, #i102667#, #i98870# changes to SdrText, it's usage in SdrTextPrimitive2D and to OverlayObject base implementation. Also support for PageCountField added 2009-06-11 16:23:52 +0200 aw r272880 : #i102663#, #i102667#, #i98870# changes to SdrText, it's usage in SdrTextPrimitive2D and to OverlayObject base implementation. Also support for PageCountField added 2009-06-09 13:50:29 +0200 aw r272769 : #i98917# added support for the OverlayHatchRectanglePrimitive to follow rotation with it's hatch; simplified OverlayHatchRect 2009-06-09 13:04:06 +0200 aw r272766 : #i98870# re-added PageNumber identification in SdrTextPrimitive2D::get2DDecomposition 2009-06-08 18:56:05 +0200 aw r272744 : #i99385# added some last corrections to OverlayObjects in SD (had to do some merges on resync, needed to optically check and correct) 2009-06-08 11:17:57 +0200 aw r272725 : cws aw065: corrections after resync 2009-06-08 11:02:25 +0200 aw r272723 : cws aw065: corrections after resync 2009-06-08 10:36:22 +0200 aw r272722 : cws aw065: corrections after resync 2009-06-05 18:57:06 +0200 aw r272712 : CWS-TOOLING: rebase CWS aw065 to trunk@272291 (milestone: DEV300:m49) 2009-06-05 14:56:34 +0200 aw r272690 : #i89784# stripped old stuff no longer needed due to text-to-polygon conversion using primitives 2009-06-05 14:50:07 +0200 aw r272688 : #102091# removed on-model-lock suppression for SdrObject::ActionChanged() 2009-06-05 14:47:29 +0200 aw r272687 : #102091# corrected local value buffering in ScenePrimitive2D::get2DDecomposition 2009-06-03 17:53:32 +0200 aw r272599 : #i89784# version before stripping 2009-06-03 17:52:18 +0200 aw r272598 : #i89784# version before stripping 2009-05-28 17:15:47 +0200 aw r272420 : #i101872# old stuff removed/stripped 2009-05-28 17:15:32 +0200 aw r272419 : #i101872# old stuff removed/stripped 2009-05-28 17:15:15 +0200 aw r272418 : #i101872# old stuff removed/stripped 2009-05-28 17:14:45 +0200 aw r272417 : #i101872# old stuff removed/stripped 2009-05-28 12:13:56 +0200 aw r272396 : #i101872# stable hybrid state 2009-05-28 12:13:46 +0200 aw r272395 : #i101872# stable hybrid state 2009-05-28 12:13:35 +0200 aw r272394 : #i101872# stable hybrid state 2009-05-28 12:13:20 +0200 aw r272393 : #i101872# stable hybrid state 2009-05-28 12:13:05 +0200 aw r272392 : #i101872# stable hybrid state 2009-05-28 12:12:51 +0200 aw r272391 : #i101872# stable hybrid state 2009-05-15 16:56:02 +0200 aw r271952 : #i101872# HitTest unifications 2009-05-15 16:55:22 +0200 aw r271951 : #i101872# HitTest unifications 2009-05-15 16:55:12 +0200 aw r271950 : #i101872# HitTest unifications 2009-05-15 16:55:01 +0200 aw r271949 : #i101872# HitTest unifications 2009-05-15 16:54:51 +0200 aw r271948 : #i101872# HitTest unifications 2009-05-15 16:54:35 +0200 aw r271947 : #i101872# HitTest unifications 2009-05-15 16:54:22 +0200 aw r271946 : #i101872# HitTest unifications 2009-05-12 19:08:38 +0200 aw r271834 : #i101684# corrected AutoShape's preparation of text transformation due to different definitions in TextBounds 2009-05-12 15:44:49 +0200 aw r271827 : #i89784# expanded TextLayouterDevice::getTextOutlines() to support DXArray and X-Font scaling 2009-05-11 19:40:40 +0200 aw r271790 : #i99385# extended HitTest primitive usage, removed IsHdlHit implementations; prepared further HitTest simplifications 2009-05-11 19:40:25 +0200 aw r271789 : #i99385# extended HitTest primitive usage, removed IsHdlHit implementations; prepared further HitTest simplifications 2009-05-11 19:40:12 +0200 aw r271788 : #i99385# extended HitTest primitive usage, removed IsHdlHit implementations; prepared further HitTest simplifications 2009-05-11 13:01:53 +0200 aw r271765 : #i99385# corrections and optimizations 2009-05-08 14:48:40 +0200 aw r271718 : #i1016180# added optimizations in model operations when model is locked 2009-05-08 14:11:45 +0200 aw r271716 : #i101679# added flush() calls to OverlayManager when interaction step is prepared 2009-05-07 17:44:03 +0200 aw r271689 : #i99385# last corrections/changes 2009-05-07 17:43:47 +0200 aw r271688 : #i99385# last corrections/changes 2009-05-07 13:20:09 +0200 aw r271654 : #i99385# added changes from WFH 2009-05-07 13:19:38 +0200 aw r271653 : #i99385# added changes from WFH 2009-05-07 13:19:11 +0200 aw r271652 : #i99385# added changes from WFH 2009-05-07 11:33:17 +0200 aw r271643 : #i99385# corrections after resync 2009-05-07 11:17:31 +0200 aw r271642 : #i99385# corrections after resync 2009-05-06 18:46:53 +0200 aw r271609 : CWS-TOOLING: rebase CWS aw065 to trunk@271427 (milestone: DEV300:m47) 2009-05-05 18:24:03 +0200 aw r271548 : #i101443# force new text decomposition when TextBackgroundColor has changed 2009-05-05 17:44:42 +0200 aw r271542 : #i99385# 3rd round, simplifications and corrections done 2009-05-05 17:44:32 +0200 aw r271541 : #i99385# 3rd round, simplifications and corrections done 2009-05-05 17:44:20 +0200 aw r271540 : #i99385# 3rd round, simplifications and corrections done 2009-05-05 17:44:09 +0200 aw r271539 : #i99385# 3rd round, simplifications and corrections done 2009-05-05 15:48:38 +0200 aw r271527 : #i99385# 2nd round, usages checked and corrected 2009-05-05 15:48:15 +0200 aw r271526 : #i99385# 2nd round, usages checked and corrected 2009-05-05 15:48:03 +0200 aw r271525 : #i99385# 2nd round, usages checked and corrected 2009-05-05 15:47:51 +0200 aw r271524 : #i99385# 2nd round, usages checked and corrected 2009-04-27 18:33:10 +0200 aw r271300 : #i99385# state commit after all implementations are done 2009-04-27 15:36:53 +0200 aw r271283 : #i99385# state commit after all implementations are done 2009-04-27 15:27:49 +0200 aw r271280 : #i99385# state commit after all implementations are done 2009-04-27 15:27:33 +0200 aw r271279 : #i99385# state commit after all implementations are done 2009-04-27 15:27:00 +0200 aw r271278 : #i99385# state commit after all implementations are done 2009-04-27 15:26:15 +0200 aw r271277 : #i99385# state commit after all implementations are done 2009-04-27 15:25:40 +0200 aw r271275 : #i99385# state commit after all implementations are done 2009-04-27 15:25:19 +0200 aw r271274 : #i99385# state commit after all implementations are done 2009-04-27 15:24:00 +0200 aw r271272 : #i99385# state commit after all implementations are done 2009-03-19 17:12:00 +0100 aw r269757 : #i100360# corrected bitmap's PefSize calculation for bitmap filled objects when Bitmap is Pixel-based on it's mapping 2009-02-19 17:09:47 +0100 aw r268298 : #i98917# corrected attributes 2009-02-19 17:09:30 +0100 aw r268297 : #i98917# corrected attributes 2009-02-19 17:08:22 +0100 aw r268296 : #i98917# corrected attributes 2009-02-19 11:56:25 +0100 aw r268268 : #i98870# added extra code to react on PageNumber change 2009-02-18 16:57:24 +0100 aw r268243 : #i98917# in OverlayHatchRect::getGeometry the rotation was not applied to the TopLeft of the centered rectangle, but to the already extended one, thus the visualisation was rotating around the wrong edge
2009-07-02 09:28:15 -05:00
if (!mpView->PickObj(aPnt, mpView->getHitTolLog(), pObj, pPV))
2000-09-18 11:07:07 -05:00
{
mpView->MarkObj(aPnt, nHitLog);
2000-09-18 11:07:07 -05:00
}
mpViewShell->GetViewFrame()->GetDispatcher()->Execute(SID_OBJECT_SELECT, SFX_CALLMODE_ASYNCHRON);
2000-09-18 11:07:07 -05:00
}
else if (rMEvt.IsLeft() && !rMEvt.IsShift() && !rMEvt.IsMod1() && !rMEvt.IsMod2() &&
!bSelectionChanged &&
Abs(aPnt.X() - aMDPos.X()) < nDrgLog &&
Abs(aPnt.Y() - aMDPos.Y()) < nDrgLog)
{
/**************************************************************
* Toggle zw. Selektion und Rotation
**************************************************************/
SdrObject* pSingleObj = NULL;
ULONG nMarkCount = mpView->GetMarkedObjectList().GetMarkCount();
2000-09-18 11:07:07 -05:00
if (nMarkCount==1)
{
pSingleObj = mpView->GetMarkedObjectList().GetMark(0)->GetMarkedSdrObj();
2000-09-18 11:07:07 -05:00
}
if (mpView->GetDragMode() == SDRDRAG_MOVE && mpView->IsRotateAllowed() &&
(mpViewShell->GetFrameView()->IsClickChangeRotation() ||
2000-09-18 11:07:07 -05:00
(pSingleObj && pSingleObj->GetObjInventor()==E3dInventor)))
{
mpView->SetDragMode(SDRDRAG_ROTATE);
2000-09-18 11:07:07 -05:00
}
else
{
mpView->SetDragMode(SDRDRAG_MOVE);
2000-09-18 11:07:07 -05:00
}
}
}
USHORT nClicks = rMEvt.GetClicks();
if (nClicks == 2 && rMEvt.IsLeft() && bMBDown &&
!rMEvt.IsMod1() && !rMEvt.IsMod2() && !rMEvt.IsShift() )
{
DoubleClick(rMEvt);
}
bMBDown = FALSE;
return bReturn;
}
/*************************************************************************
|*
|* Tastaturereignisse bearbeiten
|*
|* Wird ein KeyEvent bearbeitet, so ist der Return-Wert TRUE, andernfalls
|* FALSE.
|*
\************************************************************************/
BOOL FuConstruct::KeyInput(const KeyEvent& rKEvt)
{
BOOL bReturn = FALSE;
if ( !bReturn )
bReturn = FuDraw::KeyInput(rKEvt);
return(bReturn);
}
/*************************************************************************
|*
|* Function aktivieren
|*
\************************************************************************/
void FuConstruct::Activate()
{
mpView->SetEditMode(SDREDITMODE_CREATE);
2000-09-18 11:07:07 -05:00
FuDraw::Activate();
}
/*************************************************************************
|*
|* Function deaktivieren
|*
\************************************************************************/
void FuConstruct::Deactivate()
{
FuDraw::Deactivate();
mpView->SetEditMode(SDREDITMODE_EDIT);
2000-09-18 11:07:07 -05:00
}
/*************************************************************************
|*
|* StyleSheet fuer das zu erzeugende Objekt setzen
|*
\************************************************************************/
void FuConstruct::SetStyleSheet(SfxItemSet& rAttr, SdrObject* pObj)
{
sal_Bool bUseFillStyle, bUseNoFillStyle;
bUseFillStyle = bUseNoFillStyle = sal_False;
if (nSlotId == SID_DRAW_RECT || // Rechteck
nSlotId == SID_DRAW_RECT_ROUND || // Rechteck, rund
nSlotId == SID_DRAW_SQUARE || // Quadrat
nSlotId == SID_DRAW_SQUARE_ROUND || // Quadrat, rund
nSlotId == SID_DRAW_ELLIPSE || // Ellipse
nSlotId == SID_DRAW_PIE || // Ellipsensegment
nSlotId == SID_DRAW_ELLIPSECUT || // Ellipsenabschnitt
nSlotId == SID_DRAW_CIRCLE || // Kreis
nSlotId == SID_DRAW_CIRCLEPIE || // Kreissegment
nSlotId == SID_DRAW_CIRCLECUT || // Ellipsenabschnitt
nSlotId == SID_DRAW_POLYGON || // Polygon
nSlotId == SID_DRAW_XPOLYGON || // 45<34>-Polygon
nSlotId == SID_DRAW_FREELINE || // Freihandlinie
nSlotId == SID_DRAW_BEZIER_FILL) // Bezier
{
bUseFillStyle = sal_True;
}
else if
(nSlotId == SID_DRAW_RECT_NOFILL || // Rechteck
nSlotId == SID_DRAW_RECT_ROUND_NOFILL || // Rechteck, rund
nSlotId == SID_DRAW_SQUARE_NOFILL || // Quadrat
nSlotId == SID_DRAW_SQUARE_ROUND_NOFILL || // Quadrat, rund
nSlotId == SID_DRAW_ELLIPSE_NOFILL || // Ellipse
nSlotId == SID_DRAW_PIE_NOFILL || // Ellipsensegment
nSlotId == SID_DRAW_ELLIPSECUT_NOFILL || // Ellipsenabschnitt
nSlotId == SID_DRAW_CIRCLE_NOFILL || // Kreis
nSlotId == SID_DRAW_CIRCLEPIE_NOFILL || // Kreissegment
nSlotId == SID_DRAW_CIRCLECUT_NOFILL || // Ellipsenabschnitt
nSlotId == SID_DRAW_POLYGON_NOFILL || // Polygon
nSlotId == SID_DRAW_XPOLYGON_NOFILL || // 45<34>-Polygon
nSlotId == SID_DRAW_FREELINE_NOFILL || // Freihandlinie
nSlotId == SID_DRAW_BEZIER_NOFILL) // Bezier
{
bUseNoFillStyle = sal_True;
}
SetStyleSheet( rAttr, pObj, bUseFillStyle, bUseNoFillStyle );
}
2000-09-18 11:07:07 -05:00
void FuConstruct::SetStyleSheet( SfxItemSet& rAttr, SdrObject* pObj,
const sal_Bool bForceFillStyle, const sal_Bool bForceNoFillStyle )
{
SdPage* pPage = (SdPage*)mpView->GetSdrPageView()->GetPage();
if ( pPage->IsMasterPage() && pPage->GetPageKind() == PK_STANDARD &&
mpDoc->GetDocumentType() == DOCUMENT_TYPE_IMPRESS )
2000-09-18 11:07:07 -05:00
{
/**********************************************
* Objects was created on the slide master page
***********************************************/
2000-09-18 11:07:07 -05:00
String aName( pPage->GetLayoutName() );
String aSep = UniString::CreateFromAscii( RTL_CONSTASCII_STRINGPARAM( SD_LT_SEPARATOR ) );
USHORT n = aName.Search(aSep);
n = n + aSep.Len();
2000-09-18 11:07:07 -05:00
aName.Erase(n);
aName.Append( String ( SdResId( STR_LAYOUT_BACKGROUNDOBJECTS ) ) );
SfxStyleSheet* pSheet = (SfxStyleSheet*)pPage->GetModel()->
GetStyleSheetPool()->
Find(aName, SD_STYLE_FAMILY_MASTERPAGE);
2000-09-18 11:07:07 -05:00
DBG_ASSERT(pSheet, "Objektvorlage nicht gefunden");
if (pSheet)
{
// applying style sheet for background objects
2000-09-18 11:07:07 -05:00
pObj->SetStyleSheet(pSheet, FALSE);
SfxItemSet& rSet = pSheet->GetItemSet();
const XFillStyleItem& rFillStyle = (const XFillStyleItem&)rSet.Get(XATTR_FILLSTYLE);
if ( bForceFillStyle )
2000-09-18 11:07:07 -05:00
{
if (rFillStyle.GetValue() == XFILL_NONE)
rAttr.Put(XFillStyleItem(XFILL_SOLID));
}
else if ( bForceNoFillStyle )
2000-09-18 11:07:07 -05:00
{
if (rFillStyle.GetValue() != XFILL_NONE)
rAttr.Put(XFillStyleItem(XFILL_NONE));
}
}
}
else
{
/***********************************
* object was created on normal page
************************************/
if ( bForceNoFillStyle )
2000-09-18 11:07:07 -05:00
{
String aName(SdResId(STR_POOLSHEET_OBJWITHOUTFILL));
SfxStyleSheet* pSheet = (SfxStyleSheet*)pPage->GetModel()->
GetStyleSheetPool()->
Find(aName, SD_STYLE_FAMILY_GRAPHICS);
2000-09-18 11:07:07 -05:00
DBG_ASSERT(pSheet, "Objektvorlage nicht gefunden");
if (pSheet)
{
pObj->SetStyleSheet(pSheet, FALSE);
SfxItemSet aAttr(*mpView->GetDefaultAttr().Clone());
2000-09-18 11:07:07 -05:00
aAttr.Put(pSheet->GetItemSet().Get(XATTR_FILLSTYLE));
pObj->SetMergedItemSet(aAttr);
2000-09-18 11:07:07 -05:00
}
else
{
SfxItemSet aAttr(*mpView->GetDefaultAttr().Clone());
2000-09-18 11:07:07 -05:00
rAttr.Put(XFillStyleItem(XFILL_NONE));
pObj->SetMergedItemSet(aAttr);
2000-09-18 11:07:07 -05:00
}
}
}
}
} // end of namespace sd