2001-02-01 13:08:06 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 08:01:24 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2001-02-01 13:08:06 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2001-02-01 13:08:06 +00:00
|
|
|
*
|
2008-04-11 08:01:24 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2001-02-01 13:08:06 +00:00
|
|
|
*
|
2008-04-11 08:01:24 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2001-02-01 13:08:06 +00:00
|
|
|
*
|
2008-04-11 08:01:24 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2001-02-01 13:08:06 +00:00
|
|
|
*
|
2008-04-11 08:01:24 +00:00
|
|
|
* OpenOffice.org 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 version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2001-02-01 13:08:06 +00:00
|
|
|
*
|
2008-04-11 08:01:24 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2001-02-01 13:08:06 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-17 11:14:44 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_vcl.hxx"
|
2010-01-05 17:11:23 +00:00
|
|
|
|
|
|
|
#include "svsys.h"
|
|
|
|
#include "vcl/xconnection.hxx"
|
|
|
|
#include "vcl/svdata.hxx"
|
|
|
|
#include "vcl/salinst.hxx"
|
|
|
|
#include "vcl/svapp.hxx"
|
|
|
|
|
2001-02-01 13:08:06 +00:00
|
|
|
using namespace rtl;
|
|
|
|
using namespace osl;
|
|
|
|
using namespace vcl;
|
|
|
|
using namespace com::sun::star::uno;
|
|
|
|
using namespace com::sun::star::awt;
|
|
|
|
|
2010-01-05 17:11:23 +00:00
|
|
|
|
2001-02-01 13:08:06 +00:00
|
|
|
DisplayConnection::DisplayConnection()
|
|
|
|
{
|
|
|
|
ImplSVData* pSVData = ImplGetSVData();
|
|
|
|
pSVData->mpDefInst->SetEventCallback( this, dispatchEvent );
|
|
|
|
pSVData->mpDefInst->SetErrorEventCallback( this, dispatchErrorEvent );
|
|
|
|
|
|
|
|
SalInstance::ConnectionIdentifierType eType;
|
|
|
|
int nBytes;
|
|
|
|
void* pBytes = pSVData->mpDefInst->GetConnectionIdentifier( eType, nBytes );
|
|
|
|
switch( eType )
|
|
|
|
{
|
|
|
|
case SalInstance::AsciiCString:
|
|
|
|
m_aAny <<= OUString::createFromAscii( (sal_Char*)pBytes );
|
|
|
|
break;
|
|
|
|
case SalInstance::Blob:
|
|
|
|
m_aAny <<= Sequence< sal_Int8 >( (sal_Int8*)pBytes, nBytes );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DisplayConnection::~DisplayConnection()
|
|
|
|
{
|
|
|
|
ImplSVData* pSVData = ImplGetSVData();
|
2006-10-13 07:32:21 +00:00
|
|
|
|
|
|
|
if( pSVData )
|
|
|
|
{
|
|
|
|
pSVData->mpDefInst->SetEventCallback( NULL, NULL );
|
|
|
|
pSVData->mpDefInst->SetErrorEventCallback( NULL, NULL );
|
|
|
|
}
|
2001-02-01 13:08:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-19 18:34:27 +00:00
|
|
|
void SAL_CALL DisplayConnection::addEventHandler( const Any& /*window*/, const Reference< XEventHandler >& handler, sal_Int32 /*eventMask*/ ) throw()
|
2001-02-01 13:08:06 +00:00
|
|
|
{
|
|
|
|
MutexGuard aGuard( m_aMutex );
|
|
|
|
|
|
|
|
m_aHandlers.push_back( handler );
|
|
|
|
}
|
|
|
|
|
2006-06-19 18:34:27 +00:00
|
|
|
void SAL_CALL DisplayConnection::removeEventHandler( const Any& /*window*/, const Reference< XEventHandler >& handler ) throw()
|
2001-02-01 13:08:06 +00:00
|
|
|
{
|
|
|
|
MutexGuard aGuard( m_aMutex );
|
|
|
|
|
|
|
|
m_aHandlers.remove( handler );
|
|
|
|
}
|
|
|
|
|
2001-09-11 14:52:22 +00:00
|
|
|
void SAL_CALL DisplayConnection::addErrorHandler( const Reference< XEventHandler >& handler ) throw()
|
2001-02-01 13:08:06 +00:00
|
|
|
{
|
|
|
|
MutexGuard aGuard( m_aMutex );
|
|
|
|
|
|
|
|
m_aErrorHandlers.push_back( handler );
|
|
|
|
}
|
|
|
|
|
2001-09-11 14:52:22 +00:00
|
|
|
void SAL_CALL DisplayConnection::removeErrorHandler( const Reference< XEventHandler >& handler ) throw()
|
2001-02-01 13:08:06 +00:00
|
|
|
{
|
|
|
|
MutexGuard aGuard( m_aMutex );
|
|
|
|
|
|
|
|
m_aErrorHandlers.remove( handler );
|
|
|
|
}
|
|
|
|
|
2001-09-11 14:52:22 +00:00
|
|
|
Any SAL_CALL DisplayConnection::getIdentifier() throw()
|
2001-02-01 13:08:06 +00:00
|
|
|
{
|
|
|
|
return m_aAny;
|
|
|
|
}
|
|
|
|
|
2006-07-10 15:35:54 +00:00
|
|
|
void DisplayConnection::dispatchDowningEvent()
|
|
|
|
{
|
2010-01-05 17:11:23 +00:00
|
|
|
SolarMutexReleaser aRel;
|
|
|
|
|
2006-07-10 15:35:54 +00:00
|
|
|
MutexGuard aGuard( m_aMutex );
|
|
|
|
Any aEvent;
|
|
|
|
std::list< Reference< XEventHandler > > aLocalList( m_aHandlers );
|
|
|
|
for( ::std::list< Reference< XEventHandler > >::const_iterator it = aLocalList.begin(); it != aLocalList.end(); ++it )
|
|
|
|
(*it)->handleEvent( aEvent );
|
|
|
|
}
|
|
|
|
|
2001-02-01 13:08:06 +00:00
|
|
|
bool DisplayConnection::dispatchEvent( void* pThis, void* pData, int nBytes )
|
|
|
|
{
|
2010-01-05 17:11:23 +00:00
|
|
|
SolarMutexReleaser aRel;
|
|
|
|
|
2001-02-01 13:08:06 +00:00
|
|
|
DisplayConnection* This = (DisplayConnection*)pThis;
|
|
|
|
|
|
|
|
Sequence< sal_Int8 > aSeq( (sal_Int8*)pData, nBytes );
|
|
|
|
Any aEvent;
|
|
|
|
aEvent <<= aSeq;
|
2010-03-01 11:46:25 +01:00
|
|
|
::std::list< Reference< XEventHandler > > handlers;
|
|
|
|
{
|
|
|
|
MutexGuard aGuard( This->m_aMutex );
|
|
|
|
handlers = This->m_aHandlers;
|
|
|
|
}
|
|
|
|
for( ::std::list< Reference< XEventHandler > >::const_iterator it = handlers.begin(); it != handlers.end(); ++it )
|
2001-02-01 13:08:06 +00:00
|
|
|
if( (*it)->handleEvent( aEvent ) )
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DisplayConnection::dispatchErrorEvent( void* pThis, void* pData, int nBytes )
|
|
|
|
{
|
2010-01-05 17:11:23 +00:00
|
|
|
SolarMutexReleaser aRel;
|
|
|
|
|
2001-02-01 13:08:06 +00:00
|
|
|
DisplayConnection* This = (DisplayConnection*)pThis;
|
|
|
|
|
|
|
|
Sequence< sal_Int8 > aSeq( (sal_Int8*)pData, nBytes );
|
|
|
|
Any aEvent;
|
|
|
|
aEvent <<= aSeq;
|
2010-03-01 11:46:25 +01:00
|
|
|
::std::list< Reference< XEventHandler > > handlers;
|
|
|
|
{
|
|
|
|
MutexGuard aGuard( This->m_aMutex );
|
|
|
|
handlers = This->m_aErrorHandlers;
|
|
|
|
}
|
|
|
|
for( ::std::list< Reference< XEventHandler > >::const_iterator it = handlers.begin(); it != handlers.end(); ++it )
|
2001-02-01 13:08:06 +00:00
|
|
|
if( (*it)->handleEvent( aEvent ) )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|