Files
libreoffice/reportdesign/source/core/api/ImageControl.cxx
Julien Nabet c288b17cc5 Prefer cppu::UnoType<T>::get() to ::getCppuType((T*)0) part12
Change-Id: I7c514b7a1d86f52d77672b826b1f08b825fd7aa7
2014-05-14 23:18:57 +02:00

491 lines
20 KiB
C++

/* -*- 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 "ImageControl.hxx"
#include <com/sun/star/beans/PropertyAttribute.hpp>
#include <com/sun/star/beans/XPropertyState.hpp>
#include "corestrings.hrc"
#include "core_resource.hrc"
#include "core_resource.hxx"
#include "Tools.hxx"
#include <tools/color.hxx>
#include <tools/debug.hxx>
#include <comphelper/property.hxx>
#include <cppuhelper/supportsservice.hxx>
#include "FormatCondition.hxx"
#include <com/sun/star/awt/ImageScaleMode.hpp>
#include <com/sun/star/text/ParagraphVertAlign.hpp>
#include "ReportHelperImpl.hxx"
namespace reportdesign
{
using namespace com::sun::star;
using namespace comphelper;
uno::Sequence< OUString > lcl_getImageOptionals()
{
OUString pProps[] = {
OUString(PROPERTY_CHARCOLOR)
,OUString(PROPERTY_CHAREMPHASIS)
,OUString(PROPERTY_CHARFONTCHARSET)
,OUString(PROPERTY_CHARFONTFAMILY)
,OUString(PROPERTY_CHARFONTNAME)
,OUString(PROPERTY_CHARFONTPITCH)
,OUString(PROPERTY_CHARFONTSTYLENAME)
,OUString(PROPERTY_CHARHEIGHT)
,OUString(PROPERTY_CHARPOSTURE)
,OUString(PROPERTY_CHARRELIEF)
,OUString(PROPERTY_FONTDESCRIPTOR)
,OUString(PROPERTY_FONTDESCRIPTORASIAN)
,OUString(PROPERTY_FONTDESCRIPTORCOMPLEX)
,OUString(PROPERTY_CONTROLTEXTEMPHASISMARK)
,OUString(PROPERTY_CHARROTATION)
,OUString(PROPERTY_CHARSCALEWIDTH)
,OUString(PROPERTY_CHARSTRIKEOUT)
,OUString(PROPERTY_CHARUNDERLINECOLOR)
,OUString(PROPERTY_CHARUNDERLINE)
,OUString(PROPERTY_CHARWEIGHT)
,OUString(PROPERTY_CHARWORDMODE)
,OUString(PROPERTY_CHARFLASH)
,OUString(PROPERTY_CHARAUTOKERNING)
,OUString(PROPERTY_CHARESCAPEMENTHEIGHT)
,OUString(PROPERTY_CHARLOCALE)
,OUString(PROPERTY_CHARESCAPEMENT)
,OUString(PROPERTY_CHARCASEMAP)
,OUString(PROPERTY_CHARCOMBINEISON)
,OUString(PROPERTY_CHARCOMBINEPREFIX)
,OUString(PROPERTY_CHARCOMBINESUFFIX)
,OUString(PROPERTY_CHARHIDDEN)
,OUString(PROPERTY_CHARSHADOWED)
,OUString(PROPERTY_CHARCONTOURED)
,OUString(PROPERTY_VISITEDCHARSTYLENAME)
,OUString(PROPERTY_UNVISITEDCHARSTYLENAME)
,OUString(PROPERTY_CHARKERNING)
,OUString(PROPERTY_MASTERFIELDS)
,OUString(PROPERTY_DETAILFIELDS)
,OUString(PROPERTY_PARAADJUST)
, OUString(PROPERTY_CHAREMPHASISASIAN)
, OUString(PROPERTY_CHARFONTNAMEASIAN)
, OUString(PROPERTY_CHARFONTSTYLENAMEASIAN)
, OUString(PROPERTY_CHARFONTFAMILYASIAN)
, OUString(PROPERTY_CHARFONTCHARSETASIAN)
, OUString(PROPERTY_CHARFONTPITCHASIAN)
, OUString(PROPERTY_CHARHEIGHTASIAN)
, OUString(PROPERTY_CHARUNDERLINEASIAN)
, OUString(PROPERTY_CHARWEIGHTASIAN)
, OUString(PROPERTY_CHARPOSTUREASIAN)
, OUString(PROPERTY_CHARWORDMODEASIAN)
, OUString(PROPERTY_CHARROTATIONASIAN)
, OUString(PROPERTY_CHARSCALEWIDTHASIAN)
, OUString(PROPERTY_CHARLOCALEASIAN)
, OUString(PROPERTY_CHAREMPHASISCOMPLEX)
, OUString(PROPERTY_CHARFONTNAMECOMPLEX)
, OUString(PROPERTY_CHARFONTSTYLENAMECOMPLEX)
, OUString(PROPERTY_CHARFONTFAMILYCOMPLEX)
, OUString(PROPERTY_CHARFONTCHARSETCOMPLEX)
, OUString(PROPERTY_CHARFONTPITCHCOMPLEX)
, OUString(PROPERTY_CHARHEIGHTCOMPLEX)
, OUString(PROPERTY_CHARUNDERLINECOMPLEX)
, OUString(PROPERTY_CHARWEIGHTCOMPLEX)
, OUString(PROPERTY_CHARPOSTURECOMPLEX)
, OUString(PROPERTY_CHARWORDMODECOMPLEX)
, OUString(PROPERTY_CHARROTATIONCOMPLEX)
, OUString(PROPERTY_CHARSCALEWIDTHCOMPLEX)
, OUString(PROPERTY_CHARLOCALECOMPLEX)
};
return uno::Sequence< OUString >(pProps,sizeof(pProps)/sizeof(pProps[0]));
}
OImageControl::OImageControl(uno::Reference< uno::XComponentContext > const & _xContext)
:ImageControlBase(m_aMutex)
,ImageControlPropertySet(_xContext,static_cast< Implements >(IMPLEMENTS_PROPERTY_SET),lcl_getImageOptionals())
,m_aProps(m_aMutex,static_cast< container::XContainer*>( this ),_xContext)
,m_nScaleMode(awt::ImageScaleMode::NONE)
,m_bPreserveIRI(true)
{
m_aProps.aComponent.m_sName = RPT_RESSTRING(RID_STR_IMAGECONTROL,m_aProps.aComponent.m_xContext->getServiceManager());
}
OImageControl::OImageControl(uno::Reference< uno::XComponentContext > const & _xContext
,const uno::Reference< lang::XMultiServiceFactory>& _xFactory
,uno::Reference< drawing::XShape >& _xShape)
:ImageControlBase(m_aMutex)
,ImageControlPropertySet(_xContext,static_cast< Implements >(IMPLEMENTS_PROPERTY_SET),lcl_getImageOptionals())
,m_aProps(m_aMutex,static_cast< container::XContainer*>( this ),_xContext)
,m_nScaleMode(awt::ImageScaleMode::NONE)
,m_bPreserveIRI(true)
{
m_aProps.aComponent.m_sName = RPT_RESSTRING(RID_STR_IMAGECONTROL,m_aProps.aComponent.m_xContext->getServiceManager());
m_aProps.aComponent.m_xFactory = _xFactory;
osl_atomic_increment( &m_refCount );
{
m_aProps.aComponent.setShape(_xShape,this,m_refCount);
}
osl_atomic_decrement( &m_refCount );
}
OImageControl::~OImageControl()
{
}
//IMPLEMENT_FORWARD_XINTERFACE2(OImageControl,ImageControlBase,ImageControlPropertySet)
IMPLEMENT_FORWARD_REFCOUNT( OImageControl, ImageControlBase )
uno::Any SAL_CALL OImageControl::queryInterface( const uno::Type& _rType ) throw (uno::RuntimeException, std::exception)
{
uno::Any aReturn = ImageControlBase::queryInterface(_rType);
if ( !aReturn.hasValue() )
aReturn = ImageControlPropertySet::queryInterface(_rType);
if ( !aReturn.hasValue() && OReportControlModel::isInterfaceForbidden(_rType) )
return aReturn;
return aReturn.hasValue() ? aReturn : (m_aProps.aComponent.m_xProxy.is() ? m_aProps.aComponent.m_xProxy->queryAggregation(_rType) : aReturn);
}
void SAL_CALL OImageControl::dispose() throw(uno::RuntimeException, std::exception)
{
ImageControlPropertySet::dispose();
cppu::WeakComponentImplHelperBase::dispose();
}
OUString OImageControl::getImplementationName_Static( ) throw(uno::RuntimeException)
{
return OUString("com.sun.star.comp.report.OImageControl");
}
OUString SAL_CALL OImageControl::getImplementationName( ) throw(uno::RuntimeException, std::exception)
{
return getImplementationName_Static();
}
uno::Sequence< OUString > OImageControl::getSupportedServiceNames_Static( ) throw(uno::RuntimeException)
{
uno::Sequence< OUString > aServices(1);
aServices.getArray()[0] = SERVICE_IMAGECONTROL;
return aServices;
}
uno::Reference< uno::XInterface > OImageControl::create(uno::Reference< uno::XComponentContext > const & xContext)
{
return *(new OImageControl(xContext));
}
uno::Sequence< OUString > SAL_CALL OImageControl::getSupportedServiceNames( ) throw(uno::RuntimeException, std::exception)
{
return getSupportedServiceNames_Static();
}
sal_Bool SAL_CALL OImageControl::supportsService(const OUString& ServiceName) throw( uno::RuntimeException, std::exception )
{
return cppu::supportsService(this, ServiceName);
}
// XReportComponent
REPORTCOMPONENT_IMPL(OImageControl,m_aProps.aComponent)
REPORTCOMPONENT_IMPL2(OImageControl,m_aProps.aComponent)
REPORTCOMPONENT_NOMASTERDETAIL(OImageControl)
NO_REPORTCONTROLFORMAT_IMPL(OImageControl)
OUString SAL_CALL OImageControl::getHyperLinkURL() throw (uno::RuntimeException, beans::UnknownPropertyException, std::exception)
{
::osl::MutexGuard aGuard(m_aMutex);
return m_aProps.aFormatProperties.sHyperLinkURL;
}
void SAL_CALL OImageControl::setHyperLinkURL(const OUString & the_value) throw (uno::RuntimeException, beans::UnknownPropertyException, std::exception)
{
set(PROPERTY_HYPERLINKURL,the_value,m_aProps.aFormatProperties.sHyperLinkURL);
}
OUString SAL_CALL OImageControl::getHyperLinkTarget() throw (uno::RuntimeException, beans::UnknownPropertyException, std::exception)
{
::osl::MutexGuard aGuard(m_aMutex);
return m_aProps.aFormatProperties.sHyperLinkTarget;
}
void SAL_CALL OImageControl::setHyperLinkTarget(const OUString & the_value) throw (uno::RuntimeException, beans::UnknownPropertyException, std::exception)
{
set(PROPERTY_HYPERLINKTARGET,the_value,m_aProps.aFormatProperties.sHyperLinkTarget);
}
OUString SAL_CALL OImageControl::getHyperLinkName() throw (uno::RuntimeException, beans::UnknownPropertyException, std::exception)
{
::osl::MutexGuard aGuard(m_aMutex);
return m_aProps.aFormatProperties.sHyperLinkName;
}
void SAL_CALL OImageControl::setHyperLinkName(const OUString & the_value) throw (uno::RuntimeException, beans::UnknownPropertyException, std::exception)
{
set(PROPERTY_HYPERLINKNAME,the_value,m_aProps.aFormatProperties.sHyperLinkName);
}
::sal_Int32 SAL_CALL OImageControl::getControlBackground() throw (beans::UnknownPropertyException, uno::RuntimeException, std::exception)
{
::osl::MutexGuard aGuard(m_aMutex);
return m_aProps.aFormatProperties.m_bBackgroundTransparent ? COL_TRANSPARENT : m_aProps.aFormatProperties.nBackgroundColor;
}
void SAL_CALL OImageControl::setControlBackground( ::sal_Int32 _backgroundcolor ) throw (uno::RuntimeException, beans::UnknownPropertyException, std::exception)
{
bool bTransparent = _backgroundcolor == static_cast<sal_Int32>(COL_TRANSPARENT);
setControlBackgroundTransparent(bTransparent);
if ( !bTransparent )
set(PROPERTY_CONTROLBACKGROUND,_backgroundcolor,m_aProps.aFormatProperties.nBackgroundColor);
}
sal_Bool SAL_CALL OImageControl::getControlBackgroundTransparent() throw (beans::UnknownPropertyException, uno::RuntimeException, std::exception)
{
::osl::MutexGuard aGuard(m_aMutex);
return m_aProps.aFormatProperties.m_bBackgroundTransparent;
}
void SAL_CALL OImageControl::setControlBackgroundTransparent( sal_Bool _controlbackgroundtransparent ) throw (beans::UnknownPropertyException, uno::RuntimeException, std::exception)
{
set(PROPERTY_CONTROLBACKGROUNDTRANSPARENT,_controlbackgroundtransparent,m_aProps.aFormatProperties.m_bBackgroundTransparent);
if ( _controlbackgroundtransparent )
set(PROPERTY_CONTROLBACKGROUND,static_cast<sal_Int32>(COL_TRANSPARENT),m_aProps.aFormatProperties.nBackgroundColor);
}
uno::Reference< beans::XPropertySetInfo > SAL_CALL OImageControl::getPropertySetInfo( ) throw(uno::RuntimeException, std::exception)
{
return ImageControlPropertySet::getPropertySetInfo();
}
void SAL_CALL OImageControl::setPropertyValue( const OUString& aPropertyName, const uno::Any& aValue ) throw (beans::UnknownPropertyException, beans::PropertyVetoException, lang::IllegalArgumentException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
{
ImageControlPropertySet::setPropertyValue( aPropertyName, aValue );
}
uno::Any SAL_CALL OImageControl::getPropertyValue( const OUString& PropertyName ) throw (beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
{
return ImageControlPropertySet::getPropertyValue( PropertyName);
}
void SAL_CALL OImageControl::addPropertyChangeListener( const OUString& aPropertyName, const uno::Reference< beans::XPropertyChangeListener >& xListener ) throw (beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
{
ImageControlPropertySet::addPropertyChangeListener( aPropertyName, xListener );
}
void SAL_CALL OImageControl::removePropertyChangeListener( const OUString& aPropertyName, const uno::Reference< beans::XPropertyChangeListener >& aListener ) throw (beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
{
ImageControlPropertySet::removePropertyChangeListener( aPropertyName, aListener );
}
void SAL_CALL OImageControl::addVetoableChangeListener( const OUString& PropertyName, const uno::Reference< beans::XVetoableChangeListener >& aListener ) throw (beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
{
ImageControlPropertySet::addVetoableChangeListener( PropertyName, aListener );
}
void SAL_CALL OImageControl::removeVetoableChangeListener( const OUString& PropertyName, const uno::Reference< beans::XVetoableChangeListener >& aListener ) throw (beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
{
ImageControlPropertySet::removeVetoableChangeListener( PropertyName, aListener );
}
// XReportControlModel
OUString SAL_CALL OImageControl::getDataField() throw ( beans::UnknownPropertyException, uno::RuntimeException, std::exception)
{
::osl::MutexGuard aGuard(m_aMutex);
return m_aProps.aDataField;
}
void SAL_CALL OImageControl::setDataField( const OUString& _datafield ) throw (lang::IllegalArgumentException, beans::UnknownPropertyException, uno::RuntimeException, std::exception)
{
set(PROPERTY_DATAFIELD,_datafield,m_aProps.aDataField);
}
sal_Bool SAL_CALL OImageControl::getPrintWhenGroupChange() throw (beans::UnknownPropertyException, uno::RuntimeException, std::exception)
{
::osl::MutexGuard aGuard(m_aMutex);
return m_aProps.bPrintWhenGroupChange;
}
void SAL_CALL OImageControl::setPrintWhenGroupChange( sal_Bool _printwhengroupchange ) throw (beans::UnknownPropertyException, uno::RuntimeException, std::exception)
{
set(PROPERTY_PRINTWHENGROUPCHANGE,_printwhengroupchange,m_aProps.bPrintWhenGroupChange);
}
OUString SAL_CALL OImageControl::getConditionalPrintExpression() throw (beans::UnknownPropertyException, uno::RuntimeException, std::exception)
{
::osl::MutexGuard aGuard(m_aMutex);
return m_aProps.aConditionalPrintExpression;
}
void SAL_CALL OImageControl::setConditionalPrintExpression( const OUString& _conditionalprintexpression ) throw (beans::UnknownPropertyException, uno::RuntimeException, std::exception)
{
set(PROPERTY_CONDITIONALPRINTEXPRESSION,_conditionalprintexpression,m_aProps.aConditionalPrintExpression);
}
// XCloneable
uno::Reference< util::XCloneable > SAL_CALL OImageControl::createClone( ) throw (uno::RuntimeException, std::exception)
{
uno::Reference< report::XReportComponent> xSource = this;
uno::Reference< report::XImageControl> xSet(cloneObject(xSource,m_aProps.aComponent.m_xFactory,SERVICE_IMAGECONTROL),uno::UNO_QUERY_THROW);
return xSet.get();
}
// XImageControl
OUString SAL_CALL OImageControl::getImageURL() throw (uno::RuntimeException, std::exception)
{
::osl::MutexGuard aGuard(m_aMutex);
return m_aImageURL;
}
void SAL_CALL OImageControl::setImageURL( const OUString& _imageurl ) throw (uno::RuntimeException, std::exception)
{
set(PROPERTY_IMAGEURL,_imageurl,m_aImageURL);
}
uno::Reference< awt::XImageProducer > SAL_CALL OImageControl::getImageProducer( ) throw (uno::RuntimeException, std::exception)
{
return uno::Reference< awt::XImageProducer >();
}
// XChild
uno::Reference< uno::XInterface > SAL_CALL OImageControl::getParent( ) throw (uno::RuntimeException, std::exception)
{
return OShapeHelper::getParent(this);
}
void SAL_CALL OImageControl::setParent( const uno::Reference< uno::XInterface >& Parent ) throw (lang::NoSupportException, uno::RuntimeException, std::exception)
{
OShapeHelper::setParent(Parent,this);
}
uno::Reference< report::XFormatCondition > SAL_CALL OImageControl::createFormatCondition( ) throw (uno::Exception, uno::RuntimeException, std::exception)
{
return new OFormatCondition(m_aProps.aComponent.m_xContext);
}
// XContainer
void SAL_CALL OImageControl::addContainerListener( const uno::Reference< container::XContainerListener >& xListener ) throw (uno::RuntimeException, std::exception)
{
m_aProps.addContainerListener(xListener);
}
void SAL_CALL OImageControl::removeContainerListener( const uno::Reference< container::XContainerListener >& xListener ) throw (uno::RuntimeException, std::exception)
{
m_aProps.removeContainerListener(xListener);
}
// XElementAccess
uno::Type SAL_CALL OImageControl::getElementType( ) throw (uno::RuntimeException, std::exception)
{
return cppu::UnoType<report::XFormatCondition>::get();
}
sal_Bool SAL_CALL OImageControl::hasElements( ) throw (uno::RuntimeException, std::exception)
{
return m_aProps.hasElements();
}
// XIndexContainer
void SAL_CALL OImageControl::insertByIndex( ::sal_Int32 Index, const uno::Any& Element ) throw (lang::IllegalArgumentException, lang::IndexOutOfBoundsException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
{
m_aProps.insertByIndex(Index,Element);
}
void SAL_CALL OImageControl::removeByIndex( ::sal_Int32 Index ) throw (lang::IndexOutOfBoundsException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
{
m_aProps.removeByIndex(Index);
}
// XIndexReplace
void SAL_CALL OImageControl::replaceByIndex( ::sal_Int32 Index, const uno::Any& Element ) throw (lang::IllegalArgumentException, lang::IndexOutOfBoundsException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
{
m_aProps.replaceByIndex(Index,Element);
}
// XIndexAccess
::sal_Int32 SAL_CALL OImageControl::getCount( ) throw (uno::RuntimeException, std::exception)
{
return m_aProps.getCount();
}
uno::Any SAL_CALL OImageControl::getByIndex( ::sal_Int32 Index ) throw (lang::IndexOutOfBoundsException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
{
return m_aProps.getByIndex( Index );
}
// XShape
awt::Point SAL_CALL OImageControl::getPosition( ) throw (uno::RuntimeException, std::exception)
{
return OShapeHelper::getPosition(this);
}
void SAL_CALL OImageControl::setPosition( const awt::Point& aPosition ) throw (uno::RuntimeException, std::exception)
{
OShapeHelper::setPosition(aPosition,this);
}
awt::Size SAL_CALL OImageControl::getSize( ) throw (uno::RuntimeException, std::exception)
{
return OShapeHelper::getSize(this);
}
void SAL_CALL OImageControl::setSize( const awt::Size& aSize ) throw (beans::PropertyVetoException, uno::RuntimeException, std::exception)
{
OShapeHelper::setSize(aSize,this);
}
// XShapeDescriptor
OUString SAL_CALL OImageControl::getShapeType( ) throw (uno::RuntimeException, std::exception)
{
::osl::MutexGuard aGuard(m_aMutex);
if ( m_aProps.aComponent.m_xShape.is() )
return m_aProps.aComponent.m_xShape->getShapeType();
return OUString("com.sun.star.drawing.ControlShape");
}
::sal_Int16 SAL_CALL OImageControl::getScaleMode() throw (uno::RuntimeException, std::exception)
{
::osl::MutexGuard aGuard(m_aMutex);
return m_nScaleMode;
}
void SAL_CALL OImageControl::setScaleMode( ::sal_Int16 _scalemode ) throw (lang::IllegalArgumentException, uno::RuntimeException, std::exception)
{
if ( _scalemode < awt::ImageScaleMode::NONE ||_scalemode > awt::ImageScaleMode::ANISOTROPIC )
throw lang::IllegalArgumentException();
set(PROPERTY_SCALEMODE,_scalemode,m_nScaleMode);
}
sal_Bool SAL_CALL OImageControl::getPreserveIRI() throw (uno::RuntimeException, std::exception)
{
::osl::MutexGuard aGuard(m_aMutex);
return m_bPreserveIRI;
}
void SAL_CALL OImageControl::setPreserveIRI( sal_Bool _preserveiri ) throw (uno::RuntimeException, std::exception)
{
set(PROPERTY_PRESERVEIRI,_preserveiri,m_bPreserveIRI);
}
} // namespace reportdesign
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */