/* -*- 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 <FormattedField.hxx>
#include <com/sun/star/sdbc/XDataSource.hpp>
#include <strings.hxx>
#include <strings.hrc>
#include <core_resource.hxx>
#include <tools/color.hxx>
#include <connectivity/dbtools.hxx>
#include <comphelper/property.hxx>
#include <cppuhelper/supportsservice.hxx>
#include <Tools.hxx>
#include <FormatCondition.hxx>
#include <ReportHelperImpl.hxx>
namespace reportdesign
{
using namespace com::sun::star;
using namespace comphelper;
uno::Reference< uno::XInterface > OFormattedField::create(uno::Reference< uno::XCompone
ntContext > const & xContext)
{
return *(new OFormattedField(xContext));
}
static uno::Sequence< OUString > lcl_getFormattedFieldOptionals()
{
OUString pProps[] = { PROPERTY_MASTERFIELDS,PROPERTY_DETAILFIELDS };
return uno::Sequence< OUString >(pProps,SAL_N_ELEMENTS(pProps));
}
OFormattedField::OFormattedField(uno::Reference< uno::XComponentContext > const & _xContext)
:FormattedFieldBase(m_aMutex)
,FormattedFieldPropertySet(_xContext,IMPLEMENTS_PROPERTY_SET,lcl_getFormattedFieldOptionals())
,m_aProps(m_aMutex,static_cast < container::XContainer*>( this ),_xContext)
,m_nFormatKey(0)
{
m_aProps.aComponent.m_sName = RptResId(RID_STR_FORMATTEDFIELD);
}
OFormattedField::OFormattedField(uno::Reference< uno::XComponentContext > const & _xContext
,const uno::Reference< lang::XMultiServiceFactory>& _xFactory
,uno::Reference< drawing::XShape >& _xShape)
:FormattedFieldBase(m_aMutex)
,FormattedFieldPropertySet(_xContext,IMPLEMENTS_PROPERTY_SET,lcl_getFormattedFieldOptionals())
,m_aProps(m_aMutex,static_cast < container::XContainer*>( this ),_xContext)
,m_nFormatKey(0)
{
m_aProps.aComponent.m_sName = RptResId(RID_STR_FORMATTEDFIELD);
m_aProps.aComponent.m_xFactory = _xFactory;
osl_atomic_increment( &m_refCount );
{
m_aProps.aComponent.setShape(_xShape,this ,m_refCount);
}
osl_atomic_decrement( &m_refCount );
}
OFormattedField::~OFormattedField()
{
}
IMPLEMENT_FORWARD_REFCOUNT( OFormattedField, FormattedFieldBase )
uno::Any SAL_CALL OFormattedField::queryInterface( const uno::Type& _rType )
{
uno::Any aReturn = FormattedFieldBase::queryInterface(_rType);
if ( !aReturn.hasValue() )
aReturn = FormattedFieldPropertySet::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 OFormattedField::dispose()
{
FormattedFieldPropertySet::dispose();
cppu::WeakComponentImplHelperBase::dispose();
m_xFormatsSupplier.clear();
}
OUString OFormattedField::getImplementationName_Static( )
{
return u"com.sun.star.comp.report.OFormattedField" _ustr;
}
OUString SAL_CALL OFormattedField::getImplementationName( )
{
return getImplementationName_Static();
}
uno::Sequence< OUString > OFormattedField::getSupportedServiceNames_Static( )
{
return { SERVICE_FORMATTEDFIELD, u"com.sun.star.awt.UnoControlFormattedFieldModel" _ustr };
}
uno::Sequence< OUString > SAL_CALL OFormattedField::getSupportedServiceNames( )
{
return getSupportedServiceNames_Static();
}
sal_Bool SAL_CALL OFormattedField::supportsService(const OUString& ServiceName)
{
return cppu::supportsService(this , ServiceName);
}
// XReportComponent
REPORTCOMPONENT_IMPL(OFormattedField,m_aProps.aComponent)
REPORTCOMPONENT_IMPL2(OFormattedField,m_aProps.aComponent)
REPORTCOMPONENT_NOMASTERDETAIL(OFormattedField)
REPORTCONTROLFORMAT_IMPL(OFormattedField,m_aProps.aFormatProperties)
uno::Reference< beans::XPropertySetInfo > SAL_CALL OFormattedField::getPropertySetInfo( )
{
return FormattedFieldPropertySet::getPropertySetInfo();
}
void SAL_CALL OFormattedField::setPropertyValue( const OUString& aPropertyName, const uno::Any& aValue )
{
// special case here /// TODO check
if ( !aValue.hasValue() && aPropertyName == PROPERTY_FORMATKEY )
m_nFormatKey = 0;
else
FormattedFieldPropertySet::setPropertyValue( aPropertyName, aValue );
}
uno::Any SAL_CALL OFormattedField::getPropertyValue( const OUString& PropertyName )
{
return FormattedFieldPropertySet::getPropertyValue( PropertyName);
}
void SAL_CALL OFormattedField::addPropertyChangeListener( const OUString& aPropertyName, const uno::Reference< beans::XPropertyChangeListener >& xListener )
{
FormattedFieldPropertySet::addPropertyChangeListener( aPropertyName, xListener );
}
void SAL_CALL OFormattedField::removePropertyChangeListener( const OUString& aPropertyName, const uno::Reference< beans::XPropertyChangeListener >& aListener )
{
FormattedFieldPropertySet::removePropertyChangeListener( aPropertyName, aListener );
}
void SAL_CALL OFormattedField::addVetoableChangeListener( const OUString& PropertyName, const uno::Reference< beans::XVetoableChangeListener >& aListener )
{
FormattedFieldPropertySet::addVetoableChangeListener( PropertyName, aListener );
}
void SAL_CALL OFormattedField::removeVetoableChangeListener( const OUString& PropertyName, const uno::Reference< beans::XVetoableChangeListener >& aListener )
{
FormattedFieldPropertySet::removeVetoableChangeListener( PropertyName, aListener );
}
// XReportControlModel
OUString SAL_CALL OFormattedField::getDataField()
{
::osl::MutexGuard aGuard(m_aMutex);
return m_aProps.aDataField;
}
void SAL_CALL OFormattedField::setDataField( const OUString& _datafield )
{
set(PROPERTY_DATAFIELD,_datafield,m_aProps.aDataField);
}
sal_Bool SAL_CALL OFormattedField::getPrintWhenGroupChange()
{
::osl::MutexGuard aGuard(m_aMutex);
return m_aProps.bPrintWhenGroupChange;
}
void SAL_CALL OFormattedField::setPrintWhenGroupChange( sal_Bool _printwhengroupchange )
{
set(PROPERTY_PRINTWHENGROUPCHANGE,_printwhengroupchange,m_aProps.bPrintWhenGroupChange);
}
OUString SAL_CALL OFormattedField::getConditionalPrintExpression()
{
::osl::MutexGuard aGuard(m_aMutex);
return m_aProps.aConditionalPrintExpression;
}
void SAL_CALL OFormattedField::setConditionalPrintExpression( const OUString& _conditionalprintexpression )
{
set(PROPERTY_CONDITIONALPRINTEXPRESSION,_conditionalprintexpression,m_aProps.aConditionalPrintExpression);
}
// XCloneable
uno::Reference< util::XCloneable > SAL_CALL OFormattedField::createClone( )
{
uno::Reference< report::XReportComponent> xSource = this ;
uno::Reference< report::XFormattedField> xSet(cloneObject(xSource,m_aProps.aComponent.m_xFactory,SERVICE_FORMATTEDFIELD),uno::UNO_QUERY_THROW);
sal_Int32 i = 0;
for (const auto & rxFormatCondition : m_aProps.m_aFormatConditions)
{
uno::Reference< report::XFormatCondition > xCond = xSet->createFormatCondition();
::comphelper::copyProperties(rxFormatCondition, xCond);
xSet->insertByIndex(i,uno::Any(xCond));
++i;
}
return xSet;
}
// XFormattedField
::sal_Int32 SAL_CALL OFormattedField::getFormatKey()
{
::osl::MutexGuard aGuard(m_aMutex);
return m_nFormatKey;
}
void SAL_CALL OFormattedField::setFormatKey(::sal_Int32 _formatkey)
{
set(PROPERTY_FORMATKEY,_formatkey,m_nFormatKey);
}
uno::Reference< util::XNumberFormatsSupplier > SAL_CALL OFormattedField::getFormatsSupplier()
{
::osl::MutexGuard aGuard(m_aMutex);
if ( !m_xFormatsSupplier.is() )
{
uno::Reference< report::XSection> xSection = getSection();
if ( xSection.is() )
m_xFormatsSupplier.set(xSection->getReportDefinition(),uno::UNO_QUERY);
if ( !m_xFormatsSupplier.is() )
{
uno::Reference< beans::XPropertySet> xProp(::dbtools::findDataSource(getParent()),uno::UNO_QUERY);
if ( xProp.is() )
m_xFormatsSupplier.set(xProp->getPropertyValue(u"NumberFormatsSupplier" _ustr),uno::UNO_QUERY);
}
}
return m_xFormatsSupplier;
}
void SAL_CALL OFormattedField::setFormatsSupplier( const uno::Reference< util::XNumberFormatsSupplier >& _formatssupplier )
{
set(PROPERTY_FORMATSSUPPLIER,_formatssupplier,m_xFormatsSupplier);
}
// XChild
uno::Reference< uno::XInterface > SAL_CALL OFormattedField::getParent( )
{
return OShapeHelper::getParent(this );
}
void SAL_CALL OFormattedField::setParent( const uno::Reference< uno::XInterface >& Parent )
{
OShapeHelper::setParent(Parent,this );
}
uno::Reference< report::XFormatCondition > SAL_CALL OFormattedField::createFormatCondition( )
{
return new OFormatCondition(m_aProps.aComponent.m_xContext);
}
// XContainer
void SAL_CALL OFormattedField::addContainerListener( const uno::Reference< container::XContainerListener >& xListener )
{
m_aProps.addContainerListener(xListener);
}
void SAL_CALL OFormattedField::removeContainerListener( const uno::Reference< container::XContainerListener >& xListener )
{
m_aProps.removeContainerListener(xListener);
}
// XElementAccess
uno::Type SAL_CALL OFormattedField::getElementType( )
{
return cppu::UnoType<report::XFormatCondition>::get();
}
sal_Bool SAL_CALL OFormattedField::hasElements( )
{
return m_aProps.hasElements();
}
// XIndexContainer
void SAL_CALL OFormattedField::insertByIndex( ::sal_Int32 Index, const uno::Any& Element )
{
m_aProps.insertByIndex(Index,Element);
}
void SAL_CALL OFormattedField::removeByIndex( ::sal_Int32 Index )
{
m_aProps.removeByIndex(Index);
}
// XIndexReplace
void SAL_CALL OFormattedField::replaceByIndex( ::sal_Int32 Index, const uno::Any& Element )
{
m_aProps.replaceByIndex(Index,Element);
}
// XIndexAccess
::sal_Int32 SAL_CALL OFormattedField::getCount( )
{
return m_aProps.getCount();
}
uno::Any SAL_CALL OFormattedField::getByIndex( ::sal_Int32 Index )
{
return m_aProps.getByIndex( Index );
}
// XShape
awt::Point SAL_CALL OFormattedField::getPosition( )
{
return OShapeHelper::getPosition(this );
}
void SAL_CALL OFormattedField::setPosition( const awt::Point& aPosition )
{
OShapeHelper::setPosition(aPosition,this );
}
awt::Size SAL_CALL OFormattedField::getSize( )
{
return OShapeHelper::getSize(this );
}
void SAL_CALL OFormattedField::setSize( const awt::Size& aSize )
{
OShapeHelper::setSize(aSize,this );
}
// XShapeDescriptor
OUString SAL_CALL OFormattedField::getShapeType( )
{
::osl::MutexGuard aGuard(m_aMutex);
if ( m_aProps.aComponent.m_xShape.is() )
return m_aProps.aComponent.m_xShape->getShapeType();
return u"com.sun.star.drawing.ControlShape" _ustr;
}
} // namespace reportdesign
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Messung V0.5 C=96 H=100 G=97
¤ Dauer der Verarbeitung: 0.1 Sekunden
(vorverarbeitet)
¤
*© Formatika GbR, Deutschland