Version 3.6.0.4, tag libreoffice-3.6.0.4
[LibreOffice.git] / svx / source / customshapes / EnhancedCustomShapeHandle.cxx
blobc9a3664ee3ecf135ac59081feca23a6cb791a344
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
29 #include "EnhancedCustomShapeHandle.hxx"
30 #include "svx/EnhancedCustomShape2d.hxx"
31 #include "svx/unoapi.hxx"
33 // -----------------------------------------------------------------------------
35 EnhancedCustomShapeHandle::EnhancedCustomShapeHandle( com::sun::star::uno::Reference< com::sun::star::drawing::XShape >& xCustomShape, sal_uInt32 nIndex ) :
36 mnIndex ( nIndex ),
37 mxCustomShape ( xCustomShape )
41 // -----------------------------------------------------------------------------
43 EnhancedCustomShapeHandle::~EnhancedCustomShapeHandle()
47 // -----------------------------------------------------------------------------
49 void SAL_CALL EnhancedCustomShapeHandle::acquire() throw()
51 OWeakObject::acquire();
54 // -----------------------------------------------------------------------------
56 void SAL_CALL EnhancedCustomShapeHandle::release() throw()
58 OWeakObject::release();
61 // XCustomShapeHandle
62 com::sun::star::awt::Point SAL_CALL EnhancedCustomShapeHandle::getPosition()
63 throw ( com::sun::star::uno::RuntimeException )
65 SdrObject* pSdrObjCustomShape( GetSdrObjectFromXShape( mxCustomShape ) );
66 if ( !pSdrObjCustomShape )
67 throw com::sun::star::uno::RuntimeException();
69 Point aPosition;
70 EnhancedCustomShape2d aCustomShape2d( pSdrObjCustomShape );
71 if ( !aCustomShape2d.GetHandlePosition( mnIndex, aPosition ) )
72 throw com::sun::star::uno::RuntimeException();
73 return com::sun::star::awt::Point( aPosition.X(), aPosition.Y() );
76 void SAL_CALL EnhancedCustomShapeHandle::setControllerPosition( const com::sun::star::awt::Point& aPnt )
77 throw ( com::sun::star::uno::RuntimeException )
79 SdrObject* pSdrObjCustomShape( GetSdrObjectFromXShape( mxCustomShape ) );
80 if ( !pSdrObjCustomShape )
81 throw com::sun::star::uno::RuntimeException();
83 EnhancedCustomShape2d aCustomShape2d( pSdrObjCustomShape );
84 if ( !aCustomShape2d.SetHandleControllerPosition( mnIndex, aPnt ) )
85 throw com::sun::star::uno::RuntimeException();
88 // XInitialization
89 void SAL_CALL EnhancedCustomShapeHandle::initialize( const com::sun::star::uno::Sequence< com::sun::star::uno::Any >& /* aArguments */ )
90 throw ( com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException )
94 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */