1*f6e50924SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*f6e50924SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*f6e50924SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*f6e50924SAndrew Rist  * distributed with this work for additional information
6*f6e50924SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*f6e50924SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*f6e50924SAndrew Rist  * "License"); you may not use this file except in compliance
9*f6e50924SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*f6e50924SAndrew Rist  *
11*f6e50924SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*f6e50924SAndrew Rist  *
13*f6e50924SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*f6e50924SAndrew Rist  * software distributed under the License is distributed on an
15*f6e50924SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*f6e50924SAndrew Rist  * KIND, either express or implied.  See the License for the
17*f6e50924SAndrew Rist  * specific language governing permissions and limitations
18*f6e50924SAndrew Rist  * under the License.
19*f6e50924SAndrew Rist  *
20*f6e50924SAndrew Rist  *************************************************************/
21*f6e50924SAndrew Rist 
22*f6e50924SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir #include "precompiled_svx.hxx"
26cdf0e10cSrcweir #include <svx/sdr/contact/viewcontactofpageobj.hxx>
27cdf0e10cSrcweir #include <svx/svdopage.hxx>
28cdf0e10cSrcweir #include <svx/sdr/contact/displayinfo.hxx>
29cdf0e10cSrcweir #include <vcl/outdev.hxx>
30cdf0e10cSrcweir #include <svx/svdmodel.hxx>
31cdf0e10cSrcweir #include <svx/svdpage.hxx>
32cdf0e10cSrcweir #include <svx/sdr/contact/objectcontactofobjlistpainter.hxx>
33cdf0e10cSrcweir #include <svx/sdr/contact/viewobjectcontact.hxx>
34cdf0e10cSrcweir #include <svx/sdr/contact/viewobjectcontactofpageobj.hxx>
35cdf0e10cSrcweir #include <basegfx/polygon/b2dpolygontools.hxx>
36cdf0e10cSrcweir #include <drawinglayer/primitive2d/polygonprimitive2d.hxx>
37cdf0e10cSrcweir 
38cdf0e10cSrcweir //////////////////////////////////////////////////////////////////////////////
39cdf0e10cSrcweir 
40cdf0e10cSrcweir namespace sdr
41cdf0e10cSrcweir {
42cdf0e10cSrcweir 	namespace contact
43cdf0e10cSrcweir 	{
CreateObjectSpecificViewObjectContact(ObjectContact & rObjectContact)44cdf0e10cSrcweir 		ViewObjectContact& ViewContactOfPageObj::CreateObjectSpecificViewObjectContact(ObjectContact& rObjectContact)
45cdf0e10cSrcweir 		{
46cdf0e10cSrcweir 			ViewObjectContact* pRetval = new ViewObjectContactOfPageObj(rObjectContact, *this);
47cdf0e10cSrcweir 			return *pRetval;
48cdf0e10cSrcweir 		}
49cdf0e10cSrcweir 
50cdf0e10cSrcweir 		// Access to referenced page
GetReferencedPage() const51cdf0e10cSrcweir 		const SdrPage* ViewContactOfPageObj::GetReferencedPage() const
52cdf0e10cSrcweir 		{
53cdf0e10cSrcweir 			return GetPageObj().GetReferencedPage();
54cdf0e10cSrcweir 		}
55cdf0e10cSrcweir 
ViewContactOfPageObj(SdrPageObj & rPageObj)56cdf0e10cSrcweir 		ViewContactOfPageObj::ViewContactOfPageObj(SdrPageObj& rPageObj)
57cdf0e10cSrcweir 		:	ViewContactOfSdrObj(rPageObj)
58cdf0e10cSrcweir 		{
59cdf0e10cSrcweir 		}
60cdf0e10cSrcweir 
~ViewContactOfPageObj()61cdf0e10cSrcweir 		ViewContactOfPageObj::~ViewContactOfPageObj()
62cdf0e10cSrcweir 		{
63cdf0e10cSrcweir 		}
64cdf0e10cSrcweir 
65cdf0e10cSrcweir 		// #i35972# React on changes of the object of this ViewContact
ActionChanged()66cdf0e10cSrcweir 		void ViewContactOfPageObj::ActionChanged()
67cdf0e10cSrcweir 		{
68cdf0e10cSrcweir 			static bool bIsInActionChange(false);
69cdf0e10cSrcweir 
70cdf0e10cSrcweir 			if(!bIsInActionChange)
71cdf0e10cSrcweir 			{
72cdf0e10cSrcweir 				// set recursion flag, see description in *.hxx
73cdf0e10cSrcweir 				bIsInActionChange = true;
74cdf0e10cSrcweir 
75cdf0e10cSrcweir 				// call parent
76cdf0e10cSrcweir 				ViewContactOfSdrObj::ActionChanged();
77cdf0e10cSrcweir 
78cdf0e10cSrcweir 				// reset recursion flag, see description in *.hxx
79cdf0e10cSrcweir 				bIsInActionChange = false;
80cdf0e10cSrcweir 			}
81cdf0e10cSrcweir 		}
82cdf0e10cSrcweir 
createViewIndependentPrimitive2DSequence() const83cdf0e10cSrcweir 		drawinglayer::primitive2d::Primitive2DSequence ViewContactOfPageObj::createViewIndependentPrimitive2DSequence() const
84cdf0e10cSrcweir 		{
85cdf0e10cSrcweir 			// ceate graphical visualisation data. Since this is the view-independent version which should not be used,
86cdf0e10cSrcweir 			// create a replacement graphic visualisation here. Use GetLastBoundRect to access the model data directly
87cdf0e10cSrcweir 			// which is aOutRect for SdrPageObj.
88cdf0e10cSrcweir 			const Rectangle aModelRectangle(GetPageObj().GetLastBoundRect());
89cdf0e10cSrcweir 			const basegfx::B2DRange aModelRange(aModelRectangle.Left(), aModelRectangle.Top(), aModelRectangle.Right(), aModelRectangle.Bottom());
90cdf0e10cSrcweir             const basegfx::B2DPolygon aOutline(basegfx::tools::createPolygonFromRect(aModelRange));
91cdf0e10cSrcweir 			const basegfx::BColor aYellow(1.0, 1.0, 0.0);
92cdf0e10cSrcweir 			const drawinglayer::primitive2d::Primitive2DReference xReference(new drawinglayer::primitive2d::PolygonHairlinePrimitive2D(aOutline, aYellow));
93cdf0e10cSrcweir 
94cdf0e10cSrcweir             return drawinglayer::primitive2d::Primitive2DSequence(&xReference, 1);
95cdf0e10cSrcweir 		}
96cdf0e10cSrcweir 
97cdf0e10cSrcweir 	} // end of namespace contact
98cdf0e10cSrcweir } // end of namespace sdr
99cdf0e10cSrcweir 
100cdf0e10cSrcweir //////////////////////////////////////////////////////////////////////////////
101cdf0e10cSrcweir // eof
102