Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 :
21 : #include <sfx2/app.hxx>
22 : #include <sfx2/objface.hxx>
23 : #include <sfx2/request.hxx>
24 : #include <avmedia/mediaitem.hxx>
25 : #include <svl/whiter.hxx>
26 : #include <svx/svdomedia.hxx>
27 : #include <svx/sdr/contact/viewcontactofsdrmediaobj.hxx>
28 :
29 : #include "mediash.hxx"
30 : #include "sc.hrc"
31 : #include "viewdata.hxx"
32 : #include "drawview.hxx"
33 : #include "scresid.hxx"
34 :
35 : #define ScMediaShell
36 : #include "scslots.hxx"
37 :
38 : #define ITEMVALUE(ItemSet,Id,Cast) ((const Cast&)(ItemSet).Get(Id)).GetValue()
39 :
40 :
41 25 : SFX_IMPL_INTERFACE(ScMediaShell, ScDrawShell, ScResId(SCSTR_GRAPHICSHELL) )
42 : {
43 5 : SFX_OBJECTBAR_REGISTRATION( SFX_OBJECTBAR_OBJECT, ScResId(RID_MEDIA_OBJECTBAR) );
44 5 : SFX_POPUPMENU_REGISTRATION( ScResId(RID_POPUP_MEDIA) );
45 5 : }
46 :
47 0 : TYPEINIT1( ScMediaShell, ScDrawShell );
48 :
49 0 : ScMediaShell::ScMediaShell(ScViewData* pData) :
50 0 : ScDrawShell(pData)
51 : {
52 0 : SetHelpId(HID_SCSHELL_MEDIA);
53 0 : SetName( String( ScResId( SCSTR_MEDIASHELL ) ) );
54 0 : }
55 :
56 0 : ScMediaShell::~ScMediaShell()
57 : {
58 0 : }
59 :
60 0 : void ScMediaShell::GetMediaState( SfxItemSet& rSet )
61 : {
62 0 : ScDrawView* pView = GetViewData()->GetScDrawView();
63 :
64 0 : if( pView )
65 : {
66 0 : SfxWhichIter aIter( rSet );
67 0 : sal_uInt16 nWhich = aIter.FirstWhich();
68 :
69 0 : while( nWhich )
70 : {
71 0 : if( SID_AVMEDIA_TOOLBOX == nWhich )
72 : {
73 0 : SdrMarkList* pMarkList = new SdrMarkList( pView->GetMarkedObjectList() );
74 0 : bool bDisable = true;
75 :
76 0 : if( 1 == pMarkList->GetMarkCount() )
77 : {
78 0 : SdrObject* pObj = pMarkList->GetMark( 0 )->GetMarkedSdrObj();
79 :
80 0 : if( pObj && pObj->ISA( SdrMediaObj ) )
81 : {
82 0 : ::avmedia::MediaItem aItem( SID_AVMEDIA_TOOLBOX );
83 :
84 0 : static_cast< sdr::contact::ViewContactOfSdrMediaObj& >( pObj->GetViewContact() ).updateMediaItem( aItem );
85 0 : rSet.Put( aItem );
86 0 : bDisable = false;
87 : }
88 : }
89 :
90 0 : if( bDisable )
91 0 : rSet.DisableItem( SID_AVMEDIA_TOOLBOX );
92 :
93 0 : delete pMarkList;
94 : }
95 :
96 0 : nWhich = aIter.NextWhich();
97 0 : }
98 : }
99 0 : }
100 :
101 0 : void ScMediaShell::ExecuteMedia( SfxRequest& rReq )
102 : {
103 0 : ScDrawView* pView = GetViewData()->GetScDrawView();
104 :
105 0 : if( pView && SID_AVMEDIA_TOOLBOX == rReq.GetSlot() )
106 : {
107 0 : const SfxItemSet* pArgs = rReq.GetArgs();
108 : const SfxPoolItem* pItem;
109 :
110 0 : if( !pArgs || ( SFX_ITEM_SET != pArgs->GetItemState( SID_AVMEDIA_TOOLBOX, false, &pItem ) ) )
111 0 : pItem = NULL;
112 :
113 0 : if( pItem )
114 : {
115 0 : SdrMarkList* pMarkList = new SdrMarkList( pView->GetMarkedObjectList() );
116 :
117 0 : if( 1 == pMarkList->GetMarkCount() )
118 : {
119 0 : SdrObject* pObj = pMarkList->GetMark( 0 )->GetMarkedSdrObj();
120 :
121 0 : if( pObj && pObj->ISA( SdrMediaObj ) )
122 : {
123 0 : static_cast< sdr::contact::ViewContactOfSdrMediaObj& >( pObj->GetViewContact() ).executeMediaItem(
124 0 : static_cast< const ::avmedia::MediaItem& >( *pItem ) );
125 : }
126 :
127 0 : delete pMarkList;
128 : }
129 : }
130 : }
131 :
132 0 : Invalidate();
133 15 : }
134 :
135 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|