INTEGRATION: CWS chart26_DEV300 (1.11.20.1.6); FILE MERGED
2008/04/09 08:15:44 iha 1.11.20.1.6.3: #i72994# simpler access to 3D settings 2008/04/08 15:57:35 iha 1.11.20.1.6.2: #i72994# simpler access to 3D settings 2008/04/07 15:59:21 iha 1.11.20.1.6.1: #i72994# simpler access to 3D settings - joined from CWS xmlfilter04
This commit is contained in:
parent
e05da186be
commit
ede0d23741
1 changed files with 26 additions and 1 deletions
|
@ -7,7 +7,7 @@
|
|||
* OpenOffice.org - a multi-platform office productivity suite
|
||||
*
|
||||
* $RCSfile: DiagramWrapper.cxx,v $
|
||||
* $Revision: 1.16 $
|
||||
* $Revision: 1.17 $
|
||||
*
|
||||
* This file is part of OpenOffice.org.
|
||||
*
|
||||
|
@ -1063,6 +1063,31 @@ Reference<
|
|||
return m_xFloor;
|
||||
}
|
||||
|
||||
// ____ X3DDefaultSetter ____
|
||||
void SAL_CALL DiagramWrapper::set3DSettingsToDefault()
|
||||
throw (uno::RuntimeException)
|
||||
{
|
||||
Reference< X3DDefaultSetter > x3DDefaultSetter( m_spChart2ModelContact->getChart2Diagram(), uno::UNO_QUERY );
|
||||
if( x3DDefaultSetter.is() )
|
||||
x3DDefaultSetter->set3DSettingsToDefault();
|
||||
}
|
||||
|
||||
void SAL_CALL DiagramWrapper::setDefaultRotation()
|
||||
throw (uno::RuntimeException)
|
||||
{
|
||||
Reference< X3DDefaultSetter > x3DDefaultSetter( m_spChart2ModelContact->getChart2Diagram(), uno::UNO_QUERY );
|
||||
if( x3DDefaultSetter.is() )
|
||||
x3DDefaultSetter->setDefaultRotation();
|
||||
}
|
||||
|
||||
void SAL_CALL DiagramWrapper::setDefaultIllumination()
|
||||
throw (uno::RuntimeException)
|
||||
{
|
||||
Reference< X3DDefaultSetter > x3DDefaultSetter( m_spChart2ModelContact->getChart2Diagram(), uno::UNO_QUERY );
|
||||
if( x3DDefaultSetter.is() )
|
||||
x3DDefaultSetter->setDefaultIllumination();
|
||||
}
|
||||
|
||||
// ____ XComponent ____
|
||||
void SAL_CALL DiagramWrapper::dispose()
|
||||
throw (uno::RuntimeException)
|
||||
|
|
Loading…
Reference in a new issue