Files
libreoffice/toolkit/source/controls/unocontrolbase.cxx

270 lines
8.7 KiB
C++
Raw Normal View History

2000-09-18 16:07:07 +00:00
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 16:07:07 +00:00
*
* $RCSfile: unocontrolbase.cxx,v $
2000-09-18 16:07:07 +00:00
*
* $Revision: 1.8 $
2000-09-18 16:07:07 +00:00
*
* last change: $Author: hr $ $Date: 2007-01-02 15:35:18 $
2000-09-18 16:07:07 +00:00
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
2000-09-18 16:07:07 +00:00
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
2000-09-18 16:07:07 +00:00
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
2000-09-18 16:07:07 +00:00
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
2000-09-18 16:07:07 +00:00
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
2000-09-18 16:07:07 +00:00
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_toolkit.hxx"
2000-09-18 16:07:07 +00:00
#ifndef _COM_SUN_STAR_AWT_XLAYOUTCONSTRAINS_HPP_
#include <com/sun/star/awt/XLayoutConstrains.hpp>
#endif
#ifndef _COM_SUN_STAR_AWT_XTEXTLAYOUTCONSTRAINS_HPP_
#include <com/sun/star/awt/XTextLayoutConstrains.hpp>
#endif
#include <toolkit/controls/unocontrolbase.hxx>
#include <toolkit/helper/property.hxx>
#include <tools/debug.hxx>
// ----------------------------------------------------
// class UnoControlBase
// ----------------------------------------------------
2001-10-11 13:58:22 +00:00
sal_Bool UnoControlBase::ImplHasProperty( sal_uInt16 nPropId )
{
::rtl::OUString aPropName( GetPropertyName( nPropId ) );
return ImplHasProperty( aPropName );
}
2000-09-18 16:07:07 +00:00
sal_Bool UnoControlBase::ImplHasProperty( const ::rtl::OUString& aPropertyName )
{
::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > xPSet( mxModel, ::com::sun::star::uno::UNO_QUERY );
if ( !xPSet.is() )
return sal_False;
2000-09-18 16:07:07 +00:00
::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > xInfo = xPSet->getPropertySetInfo();
if ( !xInfo.is() )
return sal_False;
2000-09-18 16:07:07 +00:00
return xInfo->hasPropertyByName( aPropertyName );
}
void UnoControlBase::ImplSetPropertyValue( const ::rtl::OUString& aPropertyName, const ::com::sun::star::uno::Any& aValue, sal_Bool bUpdateThis )
{
// Model ggf. schon abgemeldet, aber ein Event schlaegt noch zu...
if ( mxModel.is() )
{
::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > xPSet( mxModel, ::com::sun::star::uno::UNO_QUERY );
if ( !bUpdateThis )
{
DBG_ASSERT( msPropertyCurrentlyUpdating.getLength() == 0, "UnoControlBase::ImplSetPropertyValue: recursive calls not allowed!" );
msPropertyCurrentlyUpdating = aPropertyName;
}
try
{
xPSet->setPropertyValue( aPropertyName, aValue );
}
catch( const com::sun::star::uno::Exception& )
{
if ( !bUpdateThis )
msPropertyCurrentlyUpdating = ::rtl::OUString();
throw;
}
2000-09-18 16:07:07 +00:00
if ( !bUpdateThis )
msPropertyCurrentlyUpdating = ::rtl::OUString();
2000-09-18 16:07:07 +00:00
}
}
::com::sun::star::uno::Any UnoControlBase::ImplGetPropertyValue( const ::rtl::OUString& aPropertyName )
{
::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > xPSet( mxModel, ::com::sun::star::uno::UNO_QUERY );
if ( xPSet.is() )
return xPSet->getPropertyValue( aPropertyName );
else
return ::com::sun::star::uno::Any();
2000-09-18 16:07:07 +00:00
}
sal_Bool UnoControlBase::ImplGetPropertyValue_BOOL( sal_uInt16 nProp )
{
sal_Bool b = sal_False;
if ( mxModel.is() )
{
::com::sun::star::uno::Any aVal = ImplGetPropertyValue( GetPropertyName( nProp ) );
aVal >>= b;
}
return b;
}
sal_Int16 UnoControlBase::ImplGetPropertyValue_INT16( sal_uInt16 nProp )
{
sal_Int16 n = 0;
if ( mxModel.is() )
{
::com::sun::star::uno::Any aVal = ImplGetPropertyValue( GetPropertyName( nProp ) );
aVal >>= n;
}
return n;
}
sal_uInt16 UnoControlBase::ImplGetPropertyValue_UINT16( sal_uInt16 nProp )
{
sal_uInt16 n = 0;
if ( mxModel.is() )
{
::com::sun::star::uno::Any aVal = ImplGetPropertyValue( GetPropertyName( nProp ) );
aVal >>= n;
}
return n;
}
sal_Int32 UnoControlBase::ImplGetPropertyValue_INT32( sal_uInt16 nProp )
{
sal_Int32 n = 0;
if ( mxModel.is() )
{
::com::sun::star::uno::Any aVal = ImplGetPropertyValue( GetPropertyName( nProp ) );
aVal >>= n;
}
return n;
}
sal_uInt32 UnoControlBase::ImplGetPropertyValue_UINT32( sal_uInt16 nProp )
{
sal_uInt32 n = 0;
if ( mxModel.is() )
{
::com::sun::star::uno::Any aVal = ImplGetPropertyValue( GetPropertyName( nProp ) );
aVal >>= n;
}
return n;
}
double UnoControlBase::ImplGetPropertyValue_DOUBLE( sal_uInt16 nProp )
{
double n = 0;
if ( mxModel.is() )
{
::com::sun::star::uno::Any aVal = ImplGetPropertyValue( GetPropertyName( nProp ) );
aVal >>= n;
}
return n;
}
::rtl::OUString UnoControlBase::ImplGetPropertyValue_UString( sal_uInt16 nProp )
{
::rtl::OUString aStr;
if ( mxModel.is() )
{
::com::sun::star::uno::Any aVal = ImplGetPropertyValue( GetPropertyName( nProp ) );
aVal >>= aStr;
}
return aStr;
}
::com::sun::star::awt::Size UnoControlBase::Impl_getMinimumSize()
{
::com::sun::star::awt::Size aSz;
::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer > xP = ImplGetCompatiblePeer( sal_True );
DBG_ASSERT( xP.is(), "Layout: No Peer!" );
if ( xP.is() )
{
::com::sun::star::uno::Reference< ::com::sun::star::awt::XLayoutConstrains > xL( xP, ::com::sun::star::uno::UNO_QUERY );
if ( xL.is() )
aSz = xL->getMinimumSize();
if ( !getPeer().is() || ( getPeer() != xP ) )
2000-09-18 16:07:07 +00:00
xP->dispose();
}
return aSz;
}
::com::sun::star::awt::Size UnoControlBase::Impl_getPreferredSize()
{
::com::sun::star::awt::Size aSz;
::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer > xP = ImplGetCompatiblePeer( sal_True );
DBG_ASSERT( xP.is(), "Layout: No Peer!" );
if ( xP.is() )
{
::com::sun::star::uno::Reference< ::com::sun::star::awt::XLayoutConstrains > xL( xP, ::com::sun::star::uno::UNO_QUERY );
if ( xL.is() )
aSz = xL->getPreferredSize();
if ( !getPeer().is() || ( getPeer() != xP ) )
2000-09-18 16:07:07 +00:00
xP->dispose();
}
return aSz;
}
::com::sun::star::awt::Size UnoControlBase::Impl_calcAdjustedSize( const ::com::sun::star::awt::Size& rNewSize )
{
::com::sun::star::awt::Size aSz;
::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer > xP = ImplGetCompatiblePeer( sal_True );
DBG_ASSERT( xP.is(), "Layout: No Peer!" );
if ( xP.is() )
{
::com::sun::star::uno::Reference< ::com::sun::star::awt::XLayoutConstrains > xL( xP, ::com::sun::star::uno::UNO_QUERY );
if ( xL.is() )
aSz = xL->calcAdjustedSize( rNewSize );
if ( !getPeer().is() || ( getPeer() != xP ) )
2000-09-18 16:07:07 +00:00
xP->dispose();
}
return aSz;
}
::com::sun::star::awt::Size UnoControlBase::Impl_getMinimumSize( sal_Int16 nCols, sal_Int16 nLines )
{
::com::sun::star::awt::Size aSz;
::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer > xP = ImplGetCompatiblePeer( sal_True );
DBG_ASSERT( xP.is(), "Layout: No Peer!" );
if ( xP.is() )
{
::com::sun::star::uno::Reference< ::com::sun::star::awt::XTextLayoutConstrains > xL( xP, ::com::sun::star::uno::UNO_QUERY );
if ( xL.is() )
aSz = xL->getMinimumSize( nCols, nLines );
if ( !getPeer().is() || ( getPeer() != xP ) )
2000-09-18 16:07:07 +00:00
xP->dispose();
}
return aSz;
}
void UnoControlBase::Impl_getColumnsAndLines( sal_Int16& nCols, sal_Int16& nLines )
{
::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer > xP = ImplGetCompatiblePeer( sal_True );
DBG_ASSERT( xP.is(), "Layout: No Peer!" );
if ( xP.is() )
{
::com::sun::star::uno::Reference< ::com::sun::star::awt::XTextLayoutConstrains > xL( xP, ::com::sun::star::uno::UNO_QUERY );
if ( xL.is() )
xL->getColumnsAndLines( nCols, nLines );
if ( !getPeer().is() || ( getPeer() != xP ) )
2000-09-18 16:07:07 +00:00
xP->dispose();
}
}