office-gobmx/svx/source/svdraw/svdopage.cxx
Stefan Knorr (astron) 210f2dc0af Translation of comments in svdraw (part two)
Big thanks to Eike Rathke who rescued the ASCII imagery in svdoedge.cxx.
2011-12-06 17:29:56 +01:00

197 lines
5.4 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* 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.
*
************************************************************************/
#include <svx/svdopage.hxx>
#include "svx/svdglob.hxx" // Stringcache
#include "svx/svdstr.hrc" // the object's name
#include <svx/svdtrans.hxx>
#include <svx/svdetc.hxx>
#include <svx/svdmodel.hxx>
#include <svx/svdpage.hxx>
#include <svx/svdpagv.hxx>
#include <svx/svdoutl.hxx>
#include <svtools/colorcfg.hxx>
#include <svl/itemset.hxx>
#include <svx/sdr/properties/pageproperties.hxx>
#include <svx/sdr/contact/viewcontactofpageobj.hxx>
////////////////////////////////////////////////////////////////////////////////////////////////////
// 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;
}
void SdrPageObj::TakeObjNameSingul(XubString& rName) const
{
rName=ImpGetResStr(STR_ObjNameSingulPAGE);
String aName( GetName() );
if(aName.Len())
{
rName += sal_Unicode(' ');
rName += sal_Unicode('\'');
rName += aName;
rName += sal_Unicode('\'');
}
}
void SdrPageObj::TakeObjNamePlural(XubString& rName) const
{
rName=ImpGetResStr(STR_ObjNamePluralPAGE);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */