Files
libreoffice/sd/source/ui/func/fuconstr.cxx

400 lines
12 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
2000-09-18 16:07:07 +00:00
#include "fuconstr.hxx"
2000-09-18 16:07:07 +00:00
#include <svx/svxids.hrc>
#include <svl/aeitem.hxx>
2000-09-18 16:07:07 +00: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 16:07:07 +00:00
#include "drawdoc.hxx"
#include "FrameView.hxx"
2000-09-18 16:07:07 +00:00
#include "sdpage.hxx"
#include "sdresid.hxx"
#include "stlpool.hxx"
#include <svx/globl3d.hxx>
namespace sd {
2000-09-18 16:07:07 +00:00
TYPEINIT1( FuConstruct, FuDraw );
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 16:07:07 +00:00
{
}
void FuConstruct::DoExecute( SfxRequest& rReq )
2000-09-18 16:07:07 +00:00
{
FuDraw::DoExecute( rReq );
2000-09-18 16:07:07 +00:00
}
sal_Bool FuConstruct::MouseButtonDown(const MouseEvent& rMEvt)
2000-09-18 16:07:07 +00:00
{
sal_Bool bReturn = FuDraw::MouseButtonDown(rMEvt);
2000-09-18 16:07:07 +00:00
bMBDown = sal_True;
bSelectionChanged = false;
2000-09-18 16:07:07 +00:00
if ( mpView->IsAction() )
2000-09-18 16:07:07 +00:00
{
return sal_True;
2000-09-18 16:07:07 +00:00
}
bFirstMouseMove = sal_True;
2000-09-18 16:07:07 +00:00
aDragTimer.Start();
aMDPos = mpWindow->PixelToLogic( rMEvt.GetPosPixel() );
sal_uInt16 nHitLog = sal_uInt16 (mpWindow->PixelToLogic(Size(HITPIX,0)).Width());
2000-09-18 16:07:07 +00:00
if (rMEvt.IsLeft() && mpView->IsExtendedMouseEventDispatcherEnabled())
2000-09-18 16:07:07 +00:00
{
mpWindow->CaptureMouse();
2000-09-18 16:07:07 +00:00
SdrHdl* pHdl = mpView->PickHandle(aMDPos);
2000-09-18 16:07:07 +00:00
if ( pHdl != NULL || mpView->IsMarkedHit(aMDPos, nHitLog) )
2000-09-18 16:07:07 +00:00
{
sal_uInt16 nDrgLog = sal_uInt16 ( mpWindow->PixelToLogic(Size(DRGPIX,0)).Width() );
mpView->BegDragObj(aMDPos, (OutputDevice*) NULL, pHdl, nDrgLog);
bReturn = sal_True;
2000-09-18 16:07:07 +00:00
}
else if ( mpView->AreObjectsMarked() )
2000-09-18 16:07:07 +00:00
{
mpView->UnmarkAll();
bReturn = sal_True;
2000-09-18 16:07:07 +00:00
}
}
return bReturn;
}
sal_Bool FuConstruct::MouseMove(const MouseEvent& rMEvt)
2000-09-18 16:07:07 +00:00
{
FuDraw::MouseMove(rMEvt);
if (aDragTimer.IsActive() )
{
if( bFirstMouseMove )
bFirstMouseMove = sal_False;
2000-09-18 16:07:07 +00:00
else
aDragTimer.Stop();
}
Point aPix(rMEvt.GetPosPixel());
Point aPnt( mpWindow->PixelToLogic(aPix) );
2000-09-18 16:07:07 +00:00
if ( mpView->IsAction() )
2000-09-18 16:07:07 +00:00
{
ForceScroll(aPix);
mpView->MovAction(aPnt);
2000-09-18 16:07:07 +00:00
}
return sal_True;
2000-09-18 16:07:07 +00:00
}
sal_Bool FuConstruct::MouseButtonUp(const MouseEvent& rMEvt)
2000-09-18 16:07:07 +00:00
{
sal_Bool bReturn = sal_True;
2000-09-18 16:07:07 +00:00
if (aDragTimer.IsActive() )
{
aDragTimer.Stop();
bIsInDragMode = sal_False;
2000-09-18 16:07:07 +00:00
}
FuDraw::MouseButtonUp(rMEvt);
Point aPnt( mpWindow->PixelToLogic( rMEvt.GetPosPixel() ) );
2000-09-18 16:07:07 +00:00
if ( mpView && mpView->IsDragObj() )
2000-09-18 16:07:07 +00:00
{
FrameView* pFrameView = mpViewShell->GetFrameView();
sal_Bool bDragWithCopy = (rMEvt.IsMod1() && pFrameView->IsDragWithCopy());
2000-09-18 16:07:07 +00:00
if (bDragWithCopy)
{
bDragWithCopy = !mpView->IsPresObjSelected(sal_False, sal_True);
2000-09-18 16:07:07 +00:00
}
mpView->SetDragWithCopy(bDragWithCopy);
mpView->EndDragObj( mpView->IsDragWithCopy() );
2000-09-18 16:07:07 +00:00
}
else if ( mpView && mpView->IsMarkObj() )
2000-09-18 16:07:07 +00:00
{
mpView->EndMarkObj();
2000-09-18 16:07:07 +00:00
}
else
{
bReturn = sal_False;
2000-09-18 16:07:07 +00:00
}
if ( mpView && !mpView->IsAction() )
2000-09-18 16:07:07 +00:00
{
mpWindow->ReleaseMouse();
sal_uInt16 nDrgLog = sal_uInt16 ( mpWindow->PixelToLogic(Size(DRGPIX,0)).Width() );
2000-09-18 16:07:07 +00:00
if ( !mpView->AreObjectsMarked() )
2000-09-18 16:07:07 +00:00
{
SdrObject* pObj;
SdrPageView* pPV;
sal_uInt16 nHitLog = sal_uInt16 ( mpWindow->PixelToLogic(Size(HITPIX,0)).Width() );
2000-09-18 16:07:07 +00: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 14:28:15 +00:00
if (!mpView->PickObj(aPnt, mpView->getHitTolLog(), pObj, pPV))
2000-09-18 16:07:07 +00:00
{
mpView->MarkObj(aPnt, nHitLog);
2000-09-18 16:07:07 +00:00
}
mpViewShell->GetViewFrame()->GetDispatcher()->Execute(SID_OBJECT_SELECT, SFX_CALLMODE_ASYNCHRON);
2000-09-18 16:07:07 +00:00
}
else if (rMEvt.IsLeft() && !rMEvt.IsShift() && !rMEvt.IsMod1() && !rMEvt.IsMod2() &&
!bSelectionChanged &&
std::abs(aPnt.X() - aMDPos.X()) < nDrgLog &&
std::abs(aPnt.Y() - aMDPos.Y()) < nDrgLog)
2000-09-18 16:07:07 +00:00
{
// toggle between selection and rotation
2000-09-18 16:07:07 +00:00
SdrObject* pSingleObj = NULL;
sal_uLong nMarkCount = mpView->GetMarkedObjectList().GetMarkCount();
2000-09-18 16:07:07 +00:00
if (nMarkCount==1)
{
pSingleObj = mpView->GetMarkedObjectList().GetMark(0)->GetMarkedSdrObj();
2000-09-18 16:07:07 +00:00
}
if (mpView->GetDragMode() == SDRDRAG_MOVE && mpView->IsRotateAllowed() &&
(mpViewShell->GetFrameView()->IsClickChangeRotation() ||
2000-09-18 16:07:07 +00:00
(pSingleObj && pSingleObj->GetObjInventor()==E3dInventor)))
{
mpView->SetDragMode(SDRDRAG_ROTATE);
2000-09-18 16:07:07 +00:00
}
else
{
mpView->SetDragMode(SDRDRAG_MOVE);
2000-09-18 16:07:07 +00:00
}
}
}
sal_uInt16 nClicks = rMEvt.GetClicks();
2000-09-18 16:07:07 +00:00
if (nClicks == 2 && rMEvt.IsLeft() && bMBDown &&
!rMEvt.IsMod1() && !rMEvt.IsMod2() && !rMEvt.IsShift() )
{
DoubleClick(rMEvt);
}
bMBDown = sal_False;
2000-09-18 16:07:07 +00:00
return bReturn;
}
/**
* Process keyboard input
* @returns sal_True if a KeyEvent is being processed, sal_False otherwise
*/
sal_Bool FuConstruct::KeyInput(const KeyEvent& rKEvt)
2000-09-18 16:07:07 +00:00
{
sal_Bool bReturn = sal_False;
2000-09-18 16:07:07 +00:00
if ( !bReturn )
bReturn = FuDraw::KeyInput(rKEvt);
return(bReturn);
}
void FuConstruct::Activate()
{
mpView->SetEditMode(SDREDITMODE_CREATE);
2000-09-18 16:07:07 +00:00
FuDraw::Activate();
}
void FuConstruct::Deactivate()
{
FuDraw::Deactivate();
mpView->SetEditMode(SDREDITMODE_EDIT);
2000-09-18 16:07:07 +00:00
}
/**
* set style sheet for the object to be created
*/
2000-09-18 16:07:07 +00:00
void FuConstruct::SetStyleSheet(SfxItemSet& rAttr, SdrObject* pObj)
{
sal_Bool bUseFillStyle, bUseNoFillStyle;
bUseFillStyle = bUseNoFillStyle = sal_False;
switch( nSlotId )
{
case SID_DRAW_RECT:
case SID_DRAW_RECT_ROUND:
case SID_DRAW_SQUARE:
case SID_DRAW_SQUARE_ROUND:
case SID_DRAW_ELLIPSE:
case SID_DRAW_PIE:
case SID_DRAW_ELLIPSECUT:
case SID_DRAW_CIRCLE:
case SID_DRAW_CIRCLEPIE:
case SID_DRAW_CIRCLECUT:
case SID_DRAW_POLYGON:
case SID_DRAW_XPOLYGON:
case SID_DRAW_FREELINE:
case SID_DRAW_BEZIER_FILL:
{
bUseFillStyle = sal_True;
break;
}
case SID_DRAW_RECT_NOFILL:
case SID_DRAW_RECT_ROUND_NOFILL:
case SID_DRAW_SQUARE_NOFILL:
case SID_DRAW_SQUARE_ROUND_NOFILL:
case SID_DRAW_ELLIPSE_NOFILL:
case SID_DRAW_PIE_NOFILL:
case SID_DRAW_ELLIPSECUT_NOFILL:
case SID_DRAW_CIRCLE_NOFILL:
case SID_DRAW_CIRCLEPIE_NOFILL:
case SID_DRAW_CIRCLECUT_NOFILL:
case SID_DRAW_POLYGON_NOFILL:
case SID_DRAW_XPOLYGON_NOFILL:
case SID_DRAW_FREELINE_NOFILL:
case SID_DRAW_LINE:
case SID_DRAW_XLINE:
case SID_CONNECTOR_ARROW_START:
case SID_CONNECTOR_ARROW_END:
case SID_CONNECTOR_ARROWS:
case SID_CONNECTOR_CIRCLE_START:
case SID_CONNECTOR_CIRCLE_END:
case SID_CONNECTOR_CIRCLES:
case SID_CONNECTOR_LINE:
case SID_CONNECTOR_LINE_ARROW_START:
case SID_CONNECTOR_LINE_ARROW_END:
case SID_CONNECTOR_LINE_ARROWS:
case SID_CONNECTOR_LINE_CIRCLE_START:
case SID_CONNECTOR_LINE_CIRCLE_END:
case SID_CONNECTOR_LINE_CIRCLES:
case SID_CONNECTOR_CURVE:
case SID_CONNECTOR_CURVE_ARROW_START:
case SID_CONNECTOR_CURVE_ARROW_END:
case SID_CONNECTOR_CURVE_ARROWS:
case SID_CONNECTOR_CURVE_CIRCLE_START:
case SID_CONNECTOR_CURVE_CIRCLE_END:
case SID_CONNECTOR_CURVE_CIRCLES:
case SID_CONNECTOR_LINES:
case SID_CONNECTOR_LINES_ARROW_START:
case SID_CONNECTOR_LINES_ARROW_END:
case SID_CONNECTOR_LINES_ARROWS:
case SID_CONNECTOR_LINES_CIRCLE_START:
case SID_CONNECTOR_LINES_CIRCLE_END:
case SID_CONNECTOR_LINES_CIRCLES:
case SID_DRAW_BEZIER_NOFILL:
case SID_LINE_ARROW_END:
{
bUseNoFillStyle = sal_True;
break;
}
}
SetStyleSheet( rAttr, pObj, bUseFillStyle, bUseNoFillStyle );
}
2000-09-18 16:07:07 +00: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 16:07:07 +00:00
{
/**********************************************
* Objects was created on the slide master page
***********************************************/
OUString aName( pPage->GetLayoutName() );
sal_Int32 n = aName.indexOf(SD_LT_SEPARATOR) + strlen(SD_LT_SEPARATOR);
aName = aName.copy(0, n) + SD_RESSTR(STR_LAYOUT_BACKGROUNDOBJECTS);
2000-09-18 16:07:07 +00:00
SfxStyleSheet* pSheet = (SfxStyleSheet*)pPage->GetModel()->
GetStyleSheetPool()->
Find(aName, SD_STYLE_FAMILY_MASTERPAGE);
DBG_ASSERT(pSheet, "StyleSheet missing");
2000-09-18 16:07:07 +00:00
if (pSheet)
{
// applying style sheet for background objects
pObj->SetStyleSheet(pSheet, false);
2000-09-18 16:07:07 +00:00
SfxItemSet& rSet = pSheet->GetItemSet();
const XFillStyleItem& rFillStyle = (const XFillStyleItem&)rSet.Get(XATTR_FILLSTYLE);
if ( bForceFillStyle )
2000-09-18 16:07:07 +00:00
{
if (rFillStyle.GetValue() == XFILL_NONE)
rAttr.Put(XFillStyleItem(XFILL_SOLID));
}
else if ( bForceNoFillStyle )
2000-09-18 16:07:07 +00:00
{
if (rFillStyle.GetValue() != XFILL_NONE)
rAttr.Put(XFillStyleItem(XFILL_NONE));
}
}
}
else
{
/***********************************
* object was created on normal page
************************************/
if ( bForceNoFillStyle )
2000-09-18 16:07:07 +00:00
{
OUString aName(SD_RESSTR(STR_POOLSHEET_OBJWITHOUTFILL));
2000-09-18 16:07:07 +00:00
SfxStyleSheet* pSheet = (SfxStyleSheet*)pPage->GetModel()->
GetStyleSheetPool()->
Find(aName, SD_STYLE_FAMILY_GRAPHICS);
DBG_ASSERT(pSheet, "Stylesheet missing");
2000-09-18 16:07:07 +00:00
if (pSheet)
{
pObj->SetStyleSheet(pSheet, false);
SfxItemSet aAttr(*mpView->GetDefaultAttr().Clone());
2000-09-18 16:07:07 +00:00
aAttr.Put(pSheet->GetItemSet().Get(XATTR_FILLSTYLE));
pObj->SetMergedItemSet(aAttr);
2000-09-18 16:07:07 +00:00
}
else
{
SfxItemSet aAttr(*mpView->GetDefaultAttr().Clone());
2000-09-18 16:07:07 +00:00
rAttr.Put(XFillStyleItem(XFILL_NONE));
pObj->SetMergedItemSet(aAttr);
2000-09-18 16:07:07 +00:00
}
}
}
}
} // end of namespace sd
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */