/* -*- 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 . */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define SwMediaShell #include #include "swslots.hxx" #include "swabstdlg.hxx" SFX_IMPL_INTERFACE(SwMediaShell, SwBaseShell, SW_RES(STR_SHELLNAME_MEDIA)) void SwMediaShell::InitInterface_Impl() { GetStaticInterface()->RegisterPopupMenu(SW_RES(MN_MEDIA_POPUPMENU)); GetStaticInterface()->RegisterObjectBar(SFX_OBJECTBAR_OBJECT, SW_RES(RID_MEDIA_TOOLBOX)); } void SwMediaShell::ExecMedia(SfxRequest &rReq) { SwWrtShell* pSh = &GetShell(); SdrView* pSdrView = pSh->GetDrawView(); if( pSdrView ) { const SfxItemSet* pArgs = rReq.GetArgs(); sal_uInt16 nSlotId = rReq.GetSlot(); bool bChanged = pSdrView->GetModel()->IsChanged(); pSdrView->GetModel()->SetChanged( false ); switch( nSlotId ) { case SID_DELETE: { if( pSh->IsObjSelected() ) { pSh->SetModified(); pSh->DelSelectedObj(); if( pSh->IsSelFrmMode() ) pSh->LeaveSelFrmMode(); GetView().AttrChangedNotify( pSh ); } } break; case( SID_AVMEDIA_TOOLBOX ): { if( pSh->IsObjSelected() ) { const SfxPoolItem* pItem; if( !pArgs || ( SFX_ITEM_SET != pArgs->GetItemState( SID_AVMEDIA_TOOLBOX, false, &pItem ) ) ) pItem = NULL; if( pItem ) { SdrMarkList* pMarkList = new SdrMarkList( pSdrView->GetMarkedObjectList() ); if( 1 == pMarkList->GetMarkCount() ) { SdrObject* pObj = pMarkList->GetMark( 0 )->GetMarkedSdrObj(); if( pObj && pObj->ISA( SdrMediaObj ) ) { static_cast< sdr::contact::ViewContactOfSdrMediaObj& >( pObj->GetViewContact() ).executeMediaItem( static_cast< const ::avmedia::MediaItem& >( *pItem ) ); } } delete pMarkList; } } } break; default: break; } if( pSdrView->GetModel()->IsChanged() ) GetShell().SetModified(); else if( bChanged ) pSdrView->GetModel()->SetChanged(true); } } void SwMediaShell::GetMediaState(SfxItemSet &rSet) { SfxWhichIter aIter( rSet ); sal_uInt16 nWhich = aIter.FirstWhich(); while( nWhich ) { if( SID_AVMEDIA_TOOLBOX == nWhich ) { SwWrtShell& rSh = GetShell(); SdrView* pView = rSh.GetDrawView(); if( pView ) { bool bDisable = true; SdrMarkList* pMarkList = new SdrMarkList( pView->GetMarkedObjectList() ); if( 1 == pMarkList->GetMarkCount() ) { SdrObject* pObj = pMarkList->GetMark( 0 )->GetMarkedSdrObj(); if( pObj && pObj->ISA( SdrMediaObj ) ) { ::avmedia::MediaItem aItem( SID_AVMEDIA_TOOLBOX ); static_cast< sdr::contact::ViewContactOfSdrMediaObj& >( pObj->GetViewContact() ).updateMediaItem( aItem ); rSet.Put( aItem ); bDisable = false; } } if( bDisable ) rSet.DisableItem( SID_AVMEDIA_TOOLBOX ); delete pMarkList; } } nWhich = aIter.NextWhich(); } } SwMediaShell::SwMediaShell(SwView &_rView) : SwBaseShell(_rView) { SetName(OUString("Media Playback")); SetHelpId(SW_MEDIASHELL); SfxShell::SetContextName(sfx2::sidebar::EnumContext::GetContextName(sfx2::sidebar::EnumContext::Context_Media)); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */