Files
libreoffice/avmedia/source/viewer/mediawindow_impl.cxx

803 lines
22 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
2004-08-23 08:04:42 +00:00
*
* 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/.
2004-08-23 08:04:42 +00:00
*
* This file incorporates work covered by the following license notice:
2004-08-23 08:04:42 +00:00
*
* 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 <config_features.h>
#include <iostream>
2004-08-23 08:04:42 +00:00
#include "mediawindow_impl.hxx"
#include "mediaevent_impl.hxx"
#include "mediamisc.hxx"
#include "mediawindow.hrc"
#include "helpids.hrc"
2004-08-23 08:04:42 +00:00
#include <algorithm>
#include <cmath>
#include <comphelper/processfactory.hxx>
2004-08-23 08:04:42 +00:00
#include <osl/mutex.hxx>
#include <tools/urlobj.hxx>
#include <unotools/securityoptions.hxx>
2004-08-23 08:04:42 +00:00
#include <vcl/svapp.hxx>
#include <com/sun/star/awt/SystemPointer.hpp>
#include <com/sun/star/lang/XComponent.hpp>
#include <com/sun/star/media/XManager.hpp>
#include <vcl/sysdata.hxx>
#include <vcl/opengl/OpenGLContext.hxx>
2004-08-23 08:04:42 +00:00
using namespace ::com::sun::star;
namespace avmedia { namespace priv {
2004-08-23 08:04:42 +00:00
// - MediaWindowControl -
2004-08-23 08:04:42 +00:00
MediaWindowControl::MediaWindowControl( Window* pParent ) :
MediaControl( pParent, MEDIACONTROLSTYLE_MULTILINE )
{
}
2004-08-23 08:04:42 +00:00
MediaWindowControl::~MediaWindowControl()
{
}
2004-08-23 08:04:42 +00:00
void MediaWindowControl::update()
{
MediaItem aItem;
static_cast< MediaWindowImpl* >( GetParent() )->updateMediaItem( aItem );
setState( aItem );
}
2004-08-23 08:04:42 +00:00
void MediaWindowControl::execute( const MediaItem& rItem )
{
static_cast< MediaWindowImpl* >( GetParent() )->executeMediaItem( rItem );
}
2004-08-23 08:04:42 +00:00
// - MediaChildWindow -
2004-08-23 08:04:42 +00:00
MediaChildWindow::MediaChildWindow( Window* pParent ) :
SystemChildWindow( pParent, WB_CLIPCHILDREN )
2004-08-23 08:04:42 +00:00
{
}
#if HAVE_FEATURE_GLTF
MediaChildWindow::MediaChildWindow( Window* pParent, SystemWindowData* pData ) :
SystemChildWindow( pParent, WB_CLIPCHILDREN, pData )
{
}
#endif
2004-08-23 08:04:42 +00:00
MediaChildWindow::~MediaChildWindow()
{
}
2004-08-23 08:04:42 +00:00
void MediaChildWindow::MouseMove( const MouseEvent& rMEvt )
{
const MouseEvent aTransformedEvent( GetParent()->ScreenToOutputPixel( OutputToScreenPixel( rMEvt.GetPosPixel() ) ),
rMEvt.GetClicks(), rMEvt.GetMode(), rMEvt.GetButtons(), rMEvt.GetModifier() );
SystemChildWindow::MouseMove( rMEvt );
2004-08-23 08:04:42 +00:00
GetParent()->MouseMove( aTransformedEvent );
}
2004-08-23 08:04:42 +00:00
void MediaChildWindow::MouseButtonDown( const MouseEvent& rMEvt )
{
const MouseEvent aTransformedEvent( GetParent()->ScreenToOutputPixel( OutputToScreenPixel( rMEvt.GetPosPixel() ) ),
rMEvt.GetClicks(), rMEvt.GetMode(), rMEvt.GetButtons(), rMEvt.GetModifier() );
SystemChildWindow::MouseButtonDown( rMEvt );
2004-08-23 08:04:42 +00:00
GetParent()->MouseButtonDown( aTransformedEvent );
}
2004-08-23 08:04:42 +00:00
void MediaChildWindow::MouseButtonUp( const MouseEvent& rMEvt )
{
const MouseEvent aTransformedEvent( GetParent()->ScreenToOutputPixel( OutputToScreenPixel( rMEvt.GetPosPixel() ) ),
rMEvt.GetClicks(), rMEvt.GetMode(), rMEvt.GetButtons(), rMEvt.GetModifier() );
SystemChildWindow::MouseButtonUp( rMEvt );
2004-08-23 08:04:42 +00:00
GetParent()->MouseButtonUp( aTransformedEvent );
}
2004-08-23 08:04:42 +00:00
void MediaChildWindow::KeyInput( const KeyEvent& rKEvt )
{
SystemChildWindow::KeyInput( rKEvt );
2004-08-23 08:04:42 +00:00
GetParent()->KeyInput( rKEvt );
}
2004-08-23 08:04:42 +00:00
void MediaChildWindow::KeyUp( const KeyEvent& rKEvt )
{
SystemChildWindow::KeyUp( rKEvt );
2004-08-23 08:04:42 +00:00
GetParent()->KeyUp( rKEvt );
}
2004-08-23 08:04:42 +00:00
void MediaChildWindow::Command( const CommandEvent& rCEvt )
{
const CommandEvent aTransformedEvent( GetParent()->ScreenToOutputPixel( OutputToScreenPixel( rCEvt.GetMousePosPixel() ) ),
rCEvt.GetCommand(), rCEvt.IsMouseEvent(), rCEvt.GetData() );
SystemChildWindow::Command( rCEvt );
2004-08-23 08:04:42 +00:00
GetParent()->Command( aTransformedEvent );
}
2004-08-23 08:04:42 +00:00
// - MediaWindowImpl -
2004-08-23 08:04:42 +00:00
MediaWindowImpl::MediaWindowImpl( Window* pParent, MediaWindow* pMediaWindow, bool bInternalMediaControl ) :
Control( pParent ),
DropTargetHelper( this ),
DragSourceHelper( this ),
mpMediaWindow( pMediaWindow ),
mpEvents( NULL ),
mbEventTransparent(true),
2004-08-23 08:04:42 +00:00
mpMediaWindowControl( bInternalMediaControl ? new MediaWindowControl( this ) : NULL ),
mpEmptyBmpEx( NULL ),
mpAudioBmpEx( NULL )
{
if( mpMediaWindowControl )
{
mpMediaWindowControl->SetSizePixel( mpMediaWindowControl->getMinSizePixel() );
mpMediaWindowControl->Show();
}
}
2004-08-23 08:04:42 +00:00
MediaWindowImpl::~MediaWindowImpl()
{
if( mpEvents )
mpEvents->cleanUp();
2004-08-23 08:04:42 +00:00
if( mxPlayerWindow.is() )
2004-08-23 08:04:42 +00:00
{
mxPlayerWindow->removeKeyListener( uno::Reference< awt::XKeyListener >( mxEventsIf, uno::UNO_QUERY ) );
mxPlayerWindow->removeMouseListener( uno::Reference< awt::XMouseListener >( mxEventsIf, uno::UNO_QUERY ) );
mxPlayerWindow->removeMouseMotionListener( uno::Reference< awt::XMouseMotionListener >( mxEventsIf, uno::UNO_QUERY ) );
2004-08-23 08:04:42 +00:00
uno::Reference< lang::XComponent > xComponent( mxPlayerWindow, uno::UNO_QUERY );
2004-08-23 08:04:42 +00:00
if( xComponent.is() )
xComponent->dispose();
mxPlayerWindow.clear();
2004-08-23 08:04:42 +00:00
}
uno::Reference< lang::XComponent > xComponent( mxPlayer, uno::UNO_QUERY );
if( xComponent.is() ) // this stops the player
xComponent->dispose();
mxPlayer.clear();
mpMediaWindow = NULL;
delete mpEmptyBmpEx;
delete mpAudioBmpEx;
delete mpMediaWindowControl;
2004-08-23 08:04:42 +00:00
}
uno::Reference< media::XPlayer > MediaWindowImpl::createPlayer( const OUString& rURL, const OUString& rReferer, const OUString* pMimeType )
{
uno::Reference< media::XPlayer > xPlayer;
if( rURL.isEmpty() )
return xPlayer;
if (SvtSecurityOptions().isUntrustedReferer(rReferer)) {
return xPlayer;
}
uno::Reference< uno::XComponentContext > xContext( ::comphelper::getProcessComponentContext() );
if ( !pMimeType || *pMimeType == AVMEDIA_MIMETYPE_COMMON )
{
static const char * aServiceManagers[] = {
AVMEDIA_MANAGER_SERVICE_PREFERRED,
AVMEDIA_MANAGER_SERVICE_NAME,
// a fallback path just for gstreamer which has
// two significant versions deployed at once ...
#ifdef AVMEDIA_MANAGER_SERVICE_NAME_OLD
AVMEDIA_MANAGER_SERVICE_NAME_OLD
#endif
// fallback to AVMedia framework on OS X
#ifdef AVMEDIA_MANAGER_SERVICE_NAME_FALLBACK1
AVMEDIA_MANAGER_SERVICE_NAME_FALLBACK1
#endif
};
for( sal_uInt32 i = 0; !xPlayer.is() && i < SAL_N_ELEMENTS( aServiceManagers ); ++i )
{
const OUString aServiceName( aServiceManagers[ i ],
strlen( aServiceManagers[ i ] ),
RTL_TEXTENCODING_ASCII_US );
xPlayer = createPlayer(rURL, aServiceName, xContext);
}
}
#if HAVE_FEATURE_GLTF
else if ( *pMimeType == AVMEDIA_MIMETYPE_JSON )
{
xPlayer = createPlayer(rURL, AVMEDIA_OPENGL_MANAGER_SERVICE_NAME, xContext);
}
#endif
return xPlayer;
}
uno::Reference< media::XPlayer > MediaWindowImpl::createPlayer(
const OUString& rURL, const OUString& rManagerServName,
uno::Reference< uno::XComponentContext > xContext)
{
uno::Reference< media::XPlayer > xPlayer;
try
{
uno::Reference< media::XManager > xManager (
xContext->getServiceManager()->createInstanceWithContext(rManagerServName, xContext),
uno::UNO_QUERY );
if( xManager.is() )
xPlayer = uno::Reference< media::XPlayer >( xManager->createPlayer( rURL ), uno::UNO_QUERY );
else
SAL_WARN( "avmedia", "failed to create media player service " << rManagerServName );
} catch ( const uno::Exception &e )
{
SAL_WARN( "avmedia", "couldn't create media player " << rManagerServName
<< ", exception '" << e.Message << '\'');
}
return xPlayer;
}
void MediaWindowImpl::setURL( const OUString& rURL,
OUString const& rTempURL, OUString const& rReferer)
{
maReferer = rReferer;
if( rURL != getURL() )
{
if( mxPlayer.is() )
mxPlayer->stop();
if( mxPlayerWindow.is() )
{
mxPlayerWindow->setVisible( false );
mxPlayerWindow.clear();
}
mxPlayer.clear();
mTempFileURL = OUString();
if (!rTempURL.isEmpty())
{
maFileURL = rURL;
mTempFileURL = rTempURL;
}
else
{
INetURLObject aURL( rURL );
if (aURL.GetProtocol() != INET_PROT_NOT_VALID)
maFileURL = aURL.GetMainURL(INetURLObject::DECODE_UNAMBIGUOUS);
else
maFileURL = rURL;
}
mxPlayer = createPlayer((!mTempFileURL.isEmpty()) ? mTempFileURL : maFileURL, rReferer, &m_sMimeType );
onURLChanged();
}
}
const OUString& MediaWindowImpl::getURL() const
{
return maFileURL;
}
bool MediaWindowImpl::isValid() const
{
return( mxPlayer.is() );
}
Size MediaWindowImpl::getPreferredSize() const
{
Size aRet;
if( mxPlayer.is() )
{
awt::Size aPrefSize( mxPlayer->getPreferredPlayerWindowSize() );
aRet.Width() = aPrefSize.Width;
aRet.Height() = aPrefSize.Height;
}
return aRet;
}
bool MediaWindowImpl::start()
{
return mxPlayer.is() && ( mxPlayer->start(), true );
}
void MediaWindowImpl::updateMediaItem( MediaItem& rItem ) const
{
if( isPlaying() )
rItem.setState( MEDIASTATE_PLAY );
else
rItem.setState( ( 0.0 == getMediaTime() ) ? MEDIASTATE_STOP : MEDIASTATE_PAUSE );
rItem.setDuration( getDuration() );
rItem.setTime( getMediaTime() );
rItem.setLoop( isPlaybackLoop() );
rItem.setMute( isMute() );
rItem.setVolumeDB( getVolumeDB() );
rItem.setZoom( getZoom() );
rItem.setURL( getURL(), mTempFileURL, maReferer );
}
void MediaWindowImpl::executeMediaItem( const MediaItem& rItem )
{
const sal_uInt32 nMaskSet = rItem.getMaskSet();
// set URL first
if( nMaskSet & AVMEDIA_SETMASK_URL )
{
m_sMimeType = rItem.getMimeType();
setURL( rItem.getURL(), rItem.getTempURL(), rItem.getReferer() );
}
// set different states next
if( nMaskSet & AVMEDIA_SETMASK_TIME )
setMediaTime( ::std::min( rItem.getTime(), getDuration() ) );
if( nMaskSet & AVMEDIA_SETMASK_LOOP )
setPlaybackLoop( rItem.isLoop() );
if( nMaskSet & AVMEDIA_SETMASK_MUTE )
setMute( rItem.isMute() );
if( nMaskSet & AVMEDIA_SETMASK_VOLUMEDB )
setVolumeDB( rItem.getVolumeDB() );
if( nMaskSet & AVMEDIA_SETMASK_ZOOM )
setZoom( rItem.getZoom() );
// set play state at last
if( nMaskSet & AVMEDIA_SETMASK_STATE )
{
switch( rItem.getState() )
{
case( MEDIASTATE_PLAY ):
{
if( !isPlaying() )
start();
}
break;
case( MEDIASTATE_PAUSE ):
{
if( isPlaying() )
stop();
}
break;
case( MEDIASTATE_STOP ):
{
if( isPlaying() )
{
setMediaTime( 0.0 );
stop();
setMediaTime( 0.0 );
}
}
break;
}
}
}
bool MediaWindowImpl::setZoom( ::com::sun::star::media::ZoomLevel eLevel )
{
return mxPlayerWindow.is() && mxPlayerWindow->setZoomLevel( eLevel );
}
::com::sun::star::media::ZoomLevel MediaWindowImpl::getZoom() const
{
return( mxPlayerWindow.is() ? mxPlayerWindow->getZoomLevel() : media::ZoomLevel_NOT_AVAILABLE );
}
void MediaWindowImpl::stop()
{
if( mxPlayer.is() )
mxPlayer->stop();
}
bool MediaWindowImpl::isPlaying() const
{
return( mxPlayer.is() && mxPlayer->isPlaying() );
}
double MediaWindowImpl::getDuration() const
{
return( mxPlayer.is() ? mxPlayer->getDuration() : 0.0 );
}
void MediaWindowImpl::setMediaTime( double fTime )
{
if( mxPlayer.is() )
mxPlayer->setMediaTime( fTime );
}
double MediaWindowImpl::getMediaTime() const
{
return( mxPlayer.is() ? mxPlayer->getMediaTime() : 0.0 );
}
void MediaWindowImpl::setPlaybackLoop( bool bSet )
{
if( mxPlayer.is() )
mxPlayer->setPlaybackLoop( bSet );
}
bool MediaWindowImpl::isPlaybackLoop() const
{
return mxPlayer.is() && mxPlayer->isPlaybackLoop();
}
void MediaWindowImpl::setMute( bool bSet )
{
if( mxPlayer.is() )
mxPlayer->setMute( bSet );
}
bool MediaWindowImpl::isMute() const
{
return mxPlayer.is() && mxPlayer->isMute();
}
void MediaWindowImpl::setVolumeDB( sal_Int16 nVolumeDB )
{
if( mxPlayer.is() )
mxPlayer->setVolumeDB( nVolumeDB );
}
sal_Int16 MediaWindowImpl::getVolumeDB() const
{
return( mxPlayer.is() ? mxPlayer->getVolumeDB() : 0 );
}
void MediaWindowImpl::stopPlayingInternal( bool bStop )
{
if( isPlaying() )
{
bStop ? mxPlayer->stop() : mxPlayer->start();
}
}
2004-08-23 08:04:42 +00:00
void MediaWindowImpl::onURLChanged()
{
if( m_sMimeType == AVMEDIA_MIMETYPE_COMMON )
{
mpChildWindow.reset(new MediaChildWindow(this) );
}
#if HAVE_FEATURE_GLTF
else if ( m_sMimeType == AVMEDIA_MIMETYPE_JSON )
{
SystemWindowData aWinData = OpenGLContext::generateWinData(this, false);
mpChildWindow.reset(new MediaChildWindow(this,&aWinData));
mbEventTransparent = false;
}
#endif
if( !mpChildWindow )
return;
mpChildWindow->SetHelpId( HID_AVMEDIA_PLAYERWINDOW );
mxEventsIf.set( static_cast< ::cppu::OWeakObject* >( mpEvents = new MediaEventListenersImpl( *mpChildWindow.get() ) ) );
if( mxPlayer.is() )
2004-08-23 08:04:42 +00:00
{
Resize();
uno::Sequence< uno::Any > aArgs( 3 );
uno::Reference< media::XPlayerWindow > xPlayerWindow;
const Point aPoint;
const Size aSize( mpChildWindow->GetSizePixel() );
2004-08-23 08:04:42 +00:00
aArgs[ 0 ] = uno::makeAny( mpChildWindow->GetParentWindowHandle() );
2004-08-23 08:04:42 +00:00
aArgs[ 1 ] = uno::makeAny( awt::Rectangle( aPoint.X(), aPoint.Y(), aSize.Width(), aSize.Height() ) );
aArgs[ 2 ] = uno::makeAny( reinterpret_cast< sal_IntPtr >( mpChildWindow.get() ) );
2004-08-23 08:04:42 +00:00
try
{
xPlayerWindow = mxPlayer->createPlayerWindow( aArgs );
}
catch( uno::RuntimeException )
{
// happens eg, on MacOSX where Java frames cannot be created from X11 window handles
}
mxPlayerWindow = xPlayerWindow;
2004-08-23 08:04:42 +00:00
if( xPlayerWindow.is() )
{
xPlayerWindow->addKeyListener( uno::Reference< awt::XKeyListener >( mxEventsIf, uno::UNO_QUERY ) );
xPlayerWindow->addMouseListener( uno::Reference< awt::XMouseListener >( mxEventsIf, uno::UNO_QUERY ) );
xPlayerWindow->addMouseMotionListener( uno::Reference< awt::XMouseMotionListener >( mxEventsIf, uno::UNO_QUERY ) );
xPlayerWindow->addFocusListener( uno::Reference< awt::XFocusListener >( mxEventsIf, uno::UNO_QUERY ) );
}
}
else
mxPlayerWindow.clear();
2004-08-23 08:04:42 +00:00
if( mxPlayerWindow.is() )
mpChildWindow->Show();
2004-08-23 08:04:42 +00:00
else
mpChildWindow->Hide();
2004-08-23 08:04:42 +00:00
if( mpMediaWindowControl )
{
MediaItem aItem;
updateMediaItem( aItem );
mpMediaWindowControl->setState( aItem );
}
}
2004-08-23 08:04:42 +00:00
void MediaWindowImpl::setPosSize( const Rectangle& rRect )
{
SetPosSizePixel( rRect.TopLeft(), rRect.GetSize() );
2004-08-23 08:04:42 +00:00
}
2004-08-23 08:04:42 +00:00
void MediaWindowImpl::setPointer( const Pointer& rPointer )
{
SetPointer( rPointer );
if( mpChildWindow )
mpChildWindow->SetPointer( rPointer );
2004-08-23 08:04:42 +00:00
if( mxPlayerWindow.is() )
2004-08-23 08:04:42 +00:00
{
long nPointer;
switch( rPointer.GetStyle() )
{
case( POINTER_CROSS ): nPointer = awt::SystemPointer::CROSS; break;
case( POINTER_HAND ): nPointer = awt::SystemPointer::HAND; break;
case( POINTER_MOVE ): nPointer = awt::SystemPointer::MOVE; break;
case( POINTER_WAIT ): nPointer = awt::SystemPointer::WAIT; break;
default: nPointer = awt::SystemPointer::ARROW; break;
}
mxPlayerWindow->setPointerType( nPointer );
2004-08-23 08:04:42 +00:00
}
}
2004-08-23 08:04:42 +00:00
void MediaWindowImpl::Resize()
{
const Size aCurSize( GetOutputSizePixel() );
const sal_Int32 nOffset( mpMediaWindowControl ? AVMEDIA_CONTROLOFFSET : 0 );
Size aPlayerWindowSize( aCurSize.Width() - ( nOffset << 1 ),
aCurSize.Height() - ( nOffset << 1 ) );
if( mpMediaWindowControl )
{
const sal_Int32 nControlHeight = mpMediaWindowControl->GetSizePixel().Height();
const sal_Int32 nControlY = ::std::max( aCurSize.Height() - nControlHeight - nOffset, 0L );
aPlayerWindowSize.Height() = ( nControlY - ( nOffset << 1 ) );
mpMediaWindowControl->SetPosSizePixel( Point( nOffset, nControlY ), Size( aCurSize.Width() - ( nOffset << 1 ), nControlHeight ) );
}
if( mpChildWindow )
mpChildWindow->SetPosSizePixel( Point( 0, 0 ), aPlayerWindowSize );
if( mxPlayerWindow.is() )
mxPlayerWindow->setPosSize( 0, 0, aPlayerWindowSize.Width(), aPlayerWindowSize.Height(), 0 );
2004-08-23 08:04:42 +00:00
}
2004-08-23 08:04:42 +00:00
void MediaWindowImpl::StateChanged( StateChangedType eType )
{
if( mxPlayerWindow.is() )
2004-08-23 08:04:42 +00:00
{
// stop playing when going disabled or hidden
switch( eType )
{
case STATE_CHANGE_VISIBLE:
{
stopPlayingInternal( !IsVisible() );
mxPlayerWindow->setVisible( IsVisible() );
2004-08-23 08:04:42 +00:00
}
break;
case STATE_CHANGE_ENABLE:
{
stopPlayingInternal( !IsEnabled() );
mxPlayerWindow->setEnable( IsEnabled() );
2004-08-23 08:04:42 +00:00
}
break;
default:
break;
}
}
}
2004-08-23 08:04:42 +00:00
void MediaWindowImpl::Paint( const Rectangle& )
{
if( mxPlayerWindow.is() )
mxPlayerWindow->update();
2004-08-23 08:04:42 +00:00
BitmapEx* pLogo = NULL;
if( !mxPlayer.is() )
2004-08-23 08:04:42 +00:00
{
if( !mpEmptyBmpEx )
mpEmptyBmpEx = new BitmapEx( AVMEDIA_RESID( AVMEDIA_BMP_EMPTYLOGO ) );
pLogo = mpEmptyBmpEx;
}
else if( !mxPlayerWindow.is() )
2004-08-23 08:04:42 +00:00
{
if( !mpAudioBmpEx )
mpAudioBmpEx = new BitmapEx( AVMEDIA_RESID( AVMEDIA_BMP_AUDIOLOGO ) );
pLogo = mpAudioBmpEx;
}
if( !mpChildWindow )
return;
const Point aBasePos( mpChildWindow->GetPosPixel() );
const Rectangle aVideoRect( aBasePos, mpChildWindow->GetSizePixel() );
2004-08-23 08:04:42 +00:00
if( pLogo && !pLogo->IsEmpty() && ( aVideoRect.GetWidth() > 0 ) && ( aVideoRect.GetHeight() > 0 ) )
{
Size aLogoSize( pLogo->GetSizePixel() );
const Color aBackgroundColor( 67, 67, 67 );
2004-08-23 08:04:42 +00:00
SetLineColor( aBackgroundColor );
SetFillColor( aBackgroundColor );
DrawRect( aVideoRect );
if( ( aLogoSize.Width() > aVideoRect.GetWidth() || aLogoSize.Height() > aVideoRect.GetHeight() ) &&
( aLogoSize.Height() > 0 ) )
{
const double fLogoWH = (double) aLogoSize.Width() / aLogoSize.Height();
if( fLogoWH < ( (double) aVideoRect.GetWidth() / aVideoRect.GetHeight() ) )
{
aLogoSize.Width() = (long) ( aVideoRect.GetHeight() * fLogoWH );
aLogoSize.Height()= aVideoRect.GetHeight();
}
else
{
aLogoSize.Width() = aVideoRect.GetWidth();
aLogoSize.Height()= (long) ( aVideoRect.GetWidth() / fLogoWH );
}
}
DrawBitmapEx( Point( aBasePos.X() + ( ( aVideoRect.GetWidth() - aLogoSize.Width() ) >> 1 ),
aBasePos.Y() + ( ( aVideoRect.GetHeight() - aLogoSize.Height() ) >> 1 ) ),
aLogoSize, *pLogo );
}
}
2004-08-23 08:04:42 +00:00
void MediaWindowImpl::GetFocus()
{
}
2004-08-23 08:04:42 +00:00
void MediaWindowImpl::MouseMove( const MouseEvent& rMEvt )
{
if( mpMediaWindow && mbEventTransparent )
mpMediaWindow->MouseMove( rMEvt );
2004-08-23 08:04:42 +00:00
}
2004-08-23 08:04:42 +00:00
void MediaWindowImpl::MouseButtonDown( const MouseEvent& rMEvt )
{
if( mpMediaWindow && mbEventTransparent )
mpMediaWindow->MouseButtonDown( rMEvt );
2004-08-23 08:04:42 +00:00
}
2004-08-23 08:04:42 +00:00
void MediaWindowImpl::MouseButtonUp( const MouseEvent& rMEvt )
{
if( mpMediaWindow && mbEventTransparent )
mpMediaWindow->MouseButtonUp( rMEvt );
2004-08-23 08:04:42 +00:00
}
2004-08-23 08:04:42 +00:00
void MediaWindowImpl::KeyInput( const KeyEvent& rKEvt )
{
if( mpMediaWindow && mbEventTransparent )
mpMediaWindow->KeyInput( rKEvt );
2004-08-23 08:04:42 +00:00
}
2004-08-23 08:04:42 +00:00
void MediaWindowImpl::KeyUp( const KeyEvent& rKEvt )
{
if( mpMediaWindow && mbEventTransparent )
mpMediaWindow->KeyUp( rKEvt );
2004-08-23 08:04:42 +00:00
}
2004-08-23 08:04:42 +00:00
void MediaWindowImpl::Command( const CommandEvent& rCEvt )
{
if( mpMediaWindow && mbEventTransparent )
mpMediaWindow->Command( rCEvt );
2004-08-23 08:04:42 +00:00
}
2004-08-23 08:04:42 +00:00
sal_Int8 MediaWindowImpl::AcceptDrop( const AcceptDropEvent& rEvt )
{
return( mpMediaWindow && mbEventTransparent ? mpMediaWindow->AcceptDrop( rEvt ) : 0 );
2004-08-23 08:04:42 +00:00
}
2004-08-23 08:04:42 +00:00
sal_Int8 MediaWindowImpl::ExecuteDrop( const ExecuteDropEvent& rEvt )
{
return( mpMediaWindow && mbEventTransparent ? mpMediaWindow->ExecuteDrop( rEvt ) : 0 );
2004-08-23 08:04:42 +00:00
}
2004-08-23 08:04:42 +00:00
void MediaWindowImpl::StartDrag( sal_Int8 nAction, const Point& rPosPixel )
{
if( mpMediaWindow && mbEventTransparent )
mpMediaWindow->StartDrag( nAction, rPosPixel );
2004-08-23 08:04:42 +00:00
}
} // namespace priv
} // namespace avmedia
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */