office-gobmx/avmedia/source/framework/mediatoolbox.cxx

163 lines
4.8 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.
*
* 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 .
*/
2004-08-23 03:04:42 -05:00
#include <avmedia/mediatoolbox.hxx>
#include <avmedia/mediaitem.hxx>
2004-08-23 03:04:42 -05:00
#include "mediacontrol.hxx"
#include <sfx2/app.hxx>
#include <sfx2/bindings.hxx>
#include <sfx2/dispatch.hxx>
#include <sfx2/sfxsids.hrc>
using namespace ::com::sun::star;
namespace avmedia
{
// -----------------------
// - MediaToolboxControl -
// -----------------------
class MediaToolBoxControl_Impl : public MediaControl
{
public:
MediaToolBoxControl_Impl( Window& rParent, MediaToolBoxControl& rControl );
~MediaToolBoxControl_Impl();
void update();
void execute( const MediaItem& rItem );
private:
MediaToolBoxControl* mpToolBoxControl;
};
// ---------------------------------------------------------------------
MediaToolBoxControl_Impl::MediaToolBoxControl_Impl( Window& rParent, MediaToolBoxControl& rControl ) :
MediaControl( &rParent, MEDIACONTROLSTYLE_SINGLELINE ),
mpToolBoxControl( &rControl )
{
SetSizePixel( getMinSizePixel() );
}
// ---------------------------------------------------------------------
MediaToolBoxControl_Impl::~MediaToolBoxControl_Impl()
{
}
// ---------------------------------------------------------------------
void MediaToolBoxControl_Impl::update()
{
mpToolBoxControl->implUpdateMediaControl();
}
// ---------------------------------------------------------------------
void MediaToolBoxControl_Impl::execute( const MediaItem& rItem )
{
mpToolBoxControl->implExecuteMediaControl( rItem );
}
// -----------------------
// - MediaToolBoxControl -
// -----------------------
SFX_IMPL_TOOLBOX_CONTROL( ::avmedia::MediaToolBoxControl, ::avmedia::MediaItem );
// -----------------------------------------------------------------------------
MediaToolBoxControl::MediaToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx ) :
2004-08-23 03:04:42 -05:00
SfxToolBoxControl( nSlotId, nId, rTbx )
{
rTbx.Invalidate();
}
// -----------------------------------------------------------------------------
MediaToolBoxControl::~MediaToolBoxControl()
{
}
// -----------------------------------------------------------------------------
void MediaToolBoxControl::StateChanged( sal_uInt16 /* nSID */, SfxItemState eState, const SfxPoolItem* pState )
2004-08-23 03:04:42 -05:00
{
MediaToolBoxControl_Impl* pCtrl = static_cast< MediaToolBoxControl_Impl* >( GetToolBox().GetItemWindow( GetId() ) );
DBG_ASSERT( pCtrl, "MediaToolBoxControl::StateChanged: media control not found" );
if( eState == SFX_ITEM_DISABLED )
{
pCtrl->Enable( false, false );
2004-08-23 03:04:42 -05:00
pCtrl->SetText( String() );
const MediaItem aEmptyMediaItem( 0, AVMEDIA_SETMASK_ALL );
pCtrl->setState( aEmptyMediaItem );
2004-08-23 03:04:42 -05:00
}
else
{
pCtrl->Enable( true, false );
2004-08-23 03:04:42 -05:00
const MediaItem* pMediaItem = PTR_CAST( MediaItem, pState );
if( pMediaItem && ( SFX_ITEM_AVAILABLE == eState ) )
pCtrl->setState( *pMediaItem );
}
}
// -----------------------------------------------------------------------------
Window* MediaToolBoxControl::CreateItemWindow( Window *pParent )
{
return( pParent ? new MediaToolBoxControl_Impl( *pParent, *this ) : NULL );
}
// -----------------------------------------------------------------------------
void MediaToolBoxControl::implUpdateMediaControl()
{
updateStatus( ".uno:AVMediaToolBox" );
2004-08-23 03:04:42 -05:00
}
// -----------------------------------------------------------------------------
void MediaToolBoxControl::implExecuteMediaControl( const MediaItem& rItem )
{
MediaItem aExecItem( SID_AVMEDIA_TOOLBOX );
uno::Sequence< beans::PropertyValue > aArgs( 1 );
uno::Any aAny;
aExecItem.merge( rItem );
aExecItem.QueryValue( aAny );
aArgs[ 0 ].Name = "AVMediaToolBox" ;
2004-08-23 03:04:42 -05:00
aArgs[ 0 ].Value = aAny;
Dispatch( ".uno:AVMediaToolBox" , aArgs );
2004-08-23 03:04:42 -05:00
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */