/* -*- 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 . */ #include #include "svx/svdglob.hxx" #include "svx/svdstr.hrc" #include #include #include #include #include #include #include #include #include #include //////////////////////////////////////////////////////////////////////////////////////////////////// // BaseProperties section sdr::properties::BaseProperties* SdrPageObj::CreateObjectSpecificProperties() { return new sdr::properties::PageProperties(*this); } ////////////////////////////////////////////////////////////////////////////// // DrawContact section sdr::contact::ViewContact* SdrPageObj::CreateObjectSpecificViewContact() { return new sdr::contact::ViewContactOfPageObj(*this); } //////////////////////////////////////////////////////////////////////////////////////////////////// // this method is called form the destructor of the referenced page. // do all necessary action to forget the page. It is not necessary to call // RemovePageUser(), that is done form the destructor. void SdrPageObj::PageInDestruction(const SdrPage& rPage) { if(mpShownPage && mpShownPage == &rPage) { // #i58769# Do not call ActionChanged() here, because that would // lead to the construction of a view contact object for a page that // is being destroyed. mpShownPage = 0L; } } //////////////////////////////////////////////////////////////////////////////////////////////////// TYPEINIT1(SdrPageObj,SdrObject); SdrPageObj::SdrPageObj(SdrPage* pNewPage) : mpShownPage(pNewPage) { if(mpShownPage) { mpShownPage->AddPageUser(*this); } } SdrPageObj::SdrPageObj(const Rectangle& rRect, SdrPage* pNewPage) : mpShownPage(pNewPage) { if(mpShownPage) { mpShownPage->AddPageUser(*this); } aOutRect = rRect; } SdrPageObj::~SdrPageObj() { if(mpShownPage) { mpShownPage->RemovePageUser(*this); } } SdrPage* SdrPageObj::GetReferencedPage() const { return mpShownPage; } void SdrPageObj::SetReferencedPage(SdrPage* pNewPage) { if(mpShownPage != pNewPage) { if(mpShownPage) { mpShownPage->RemovePageUser(*this); } mpShownPage = pNewPage; if(mpShownPage) { mpShownPage->AddPageUser(*this); } SetChanged(); BroadcastObjectChange(); } } // #i96598# void SdrPageObj::SetBoundRectDirty() { // avoid resetting aOutRect which in case of this object is model data, // not re-creatable view data } sal_uInt16 SdrPageObj::GetObjIdentifier() const { return sal_uInt16(OBJ_PAGE); } void SdrPageObj::TakeObjInfo(SdrObjTransformInfoRec& rInfo) const { rInfo.bRotateFreeAllowed=sal_False; rInfo.bRotate90Allowed =sal_False; rInfo.bMirrorFreeAllowed=sal_False; rInfo.bMirror45Allowed =sal_False; rInfo.bMirror90Allowed =sal_False; rInfo.bTransparenceAllowed = sal_False; rInfo.bGradientAllowed = sal_False; rInfo.bShearAllowed =sal_False; rInfo.bEdgeRadiusAllowed=sal_False; rInfo.bNoOrthoDesired =sal_False; rInfo.bCanConvToPath =sal_False; rInfo.bCanConvToPoly =sal_False; rInfo.bCanConvToPathLineToArea=sal_False; rInfo.bCanConvToPolyLineToArea=sal_False; } SdrPageObj* SdrPageObj::Clone() const { return CloneHelper< SdrPageObj >(); } SdrPageObj& SdrPageObj::operator=(const SdrPageObj& rObj) { if( this == &rObj ) return *this; SdrObject::operator=(rObj); SetReferencedPage( rObj.GetReferencedPage()); return *this; } OUString SdrPageObj::TakeObjNameSingul() const { OUStringBuffer sName(ImpGetResStr(STR_ObjNameSingulPAGE)); OUString aName(GetName()); if (!aName.isEmpty()) { sName.append(' '); sName.append('\''); sName.append(aName); sName.append('\''); } return sName.makeStringAndClear(); } OUString SdrPageObj::TakeObjNamePlural() const { return ImpGetResStr(STR_ObjNamePluralPAGE); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */