/* -*- 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 .
*/ #ifndef INCLUDED_REPORTDESIGN_SOURCE_CORE_INC_TOOLS_HXX #define INCLUDED_REPORTDESIGN_SOURCE_CORE_INC_TOOLS_HXX
namespace reportdesign
{ /** uses the XChild interface to get the section from any child of it. * * \param _xReportComponent A report component which is a child of the section. * \return The section where this report component resists in.
*/
css::uno::Reference< css::report::XSection> lcl_getSection(const css::uno::Reference< css::uno::XInterface>& _xReportComponent);
/** throws an illegal argument exception. The message text is the resource RID_STR_ERROR_WRONG_ARGUMENT + the type as reference. * * \param _sTypeName The reference where to look for the correct values. * \param ExceptionContext_ The exception context. * \param ArgumentPosition_ The argument position.
*/ void throwIllegallArgumentException(std::u16string_view _sTypeName
,const css::uno::Reference< css::uno::XInterface >& ExceptionContext_
,sal_Int16 ArgumentPosition_);
/** clones the given object * * \param _xReportComponent the object to be cloned * \param _xFactory the factory to create the clone * \param _sServiceName the service of the to be cloned object * \return the clone
*/
css::uno::Reference< css::util::XCloneable > cloneObject( const css::uno::Reference< css::report::XReportComponent>& _xReportComponent
,const css::uno::Reference< css::lang::XMultiServiceFactory>& _xFactory
,const OUString& _sServiceName);
template<typename T> staticvoid setPosition( const css::awt::Point& _aPosition ,T* _pShape)
{ // we know it is not allowed that the position in smaller 0, but in NbcMove() it will handled right. // only at 'Undo' it is possible to short set the position smaller 0 // OSL_ENSURE(_aPosition.X >= 0 && _aPosition.Y >= 0,"set to Illegal position!");
::osl::MutexGuard aGuard(_pShape->m_aMutex);
css::awt::Point aOldPos;
aOldPos.X = _pShape->m_aProps.aComponent.m_nPosX;
aOldPos.Y = _pShape->m_aProps.aComponent.m_nPosY;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.