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

165 lines
4 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>
#include <comphelper/propertysequence.hxx>
2004-08-23 03:04:42 -05:00
using namespace ::com::sun::star;
namespace avmedia
{
2004-08-23 03:04:42 -05:00
// - MediaToolboxControl -
2004-08-23 03:04:42 -05:00
class MediaToolBoxControl_Impl : public MediaControl
{
public:
MediaToolBoxControl_Impl( vcl::Window& rParent, MediaToolBoxControl& rControl );
virtual ~MediaToolBoxControl_Impl();
2004-08-23 03:04:42 -05:00
void update() SAL_OVERRIDE;
void execute( const MediaItem& rItem ) SAL_OVERRIDE;
2004-08-23 03:04:42 -05:00
private:
MediaToolBoxControl* mpToolBoxControl;
};
2004-08-23 03:04:42 -05:00
MediaToolBoxControl_Impl::MediaToolBoxControl_Impl( vcl::Window& rParent, MediaToolBoxControl& rControl ) :
2004-08-23 03:04:42 -05:00
MediaControl( &rParent, MEDIACONTROLSTYLE_SINGLELINE ),
mpToolBoxControl( &rControl )
{
SetSizePixel( getMinSizePixel() );
}
2004-08-23 03:04:42 -05:00
MediaToolBoxControl_Impl::~MediaToolBoxControl_Impl()
{
}
2004-08-23 03:04:42 -05:00
void MediaToolBoxControl_Impl::update()
{
mpToolBoxControl->implUpdateMediaControl();
}
2004-08-23 03:04:42 -05:00
void MediaToolBoxControl_Impl::execute( const MediaItem& rItem )
{
mpToolBoxControl->implExecuteMediaControl( rItem );
}
2004-08-23 03:04:42 -05:00
// - MediaToolBoxControl -
2004-08-23 03:04:42 -05:00
SFX_IMPL_TOOLBOX_CONTROL( ::avmedia::MediaToolBoxControl, ::avmedia::MediaItem );
2004-08-23 03:04:42 -05:00
MediaToolBoxControl::MediaToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx ) :
2004-08-23 03:04:42 -05:00
SfxToolBoxControl( nSlotId, nId, rTbx )
{
rTbx.Invalidate();
}
2004-08-23 03:04:42 -05:00
MediaToolBoxControl::~MediaToolBoxControl()
{
}
2004-08-23 03:04:42 -05:00
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 == SfxItemState::DISABLED )
2004-08-23 03:04:42 -05:00
{
pCtrl->Enable( false, false );
pCtrl->SetText( OUString() );
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 && ( SfxItemState::DEFAULT == eState ) )
2004-08-23 03:04:42 -05:00
pCtrl->setState( *pMediaItem );
}
}
2004-08-23 03:04:42 -05:00
vcl::Window* MediaToolBoxControl::CreateItemWindow( vcl::Window *pParent )
2004-08-23 03:04:42 -05:00
{
return( pParent ? new MediaToolBoxControl_Impl( *pParent, *this ) : NULL );
}
2004-08-23 03:04:42 -05:00
void MediaToolBoxControl::implUpdateMediaControl()
{
updateStatus( ".uno:AVMediaToolBox" );
2004-08-23 03:04:42 -05:00
}
2004-08-23 03:04:42 -05:00
void MediaToolBoxControl::implExecuteMediaControl( const MediaItem& rItem )
{
MediaItem aExecItem( SID_AVMEDIA_TOOLBOX );
uno::Any aAny;
auto aArgs(::comphelper::InitPropertySequence({
{ "AVMediaToolBox", makeAny(aAny) }
}));
2004-08-23 03:04:42 -05:00
aExecItem.merge( rItem );
aExecItem.QueryValue( aAny );
Dispatch( ".uno:AVMediaToolBox" , aArgs );
2004-08-23 03:04:42 -05:00
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */