LCOV - code coverage report
Current view: top level - svx/source/sdr/contact - viewobjectcontactofsdrmediaobj.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 1 44 2.3 %
Date: 2014-11-03 Functions: 2 9 22.2 %
Legend: Lines: hit not hit

          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             : #include <config_features.h>
      21             : 
      22             : #include <sdr/contact/viewobjectcontactofsdrmediaobj.hxx>
      23             : #include <svx/sdr/contact/viewcontactofsdrmediaobj.hxx>
      24             : #include <svx/sdr/contact/displayinfo.hxx>
      25             : #include <svx/sdr/contact/objectcontact.hxx>
      26             : #include <svx/svdomedia.hxx>
      27             : #include <svx/svdpagv.hxx>
      28             : #include <vcl/outdev.hxx>
      29             : #include <vcl/window.hxx>
      30             : #include <avmedia/mediaitem.hxx>
      31             : #include "sdrmediawindow.hxx"
      32             : 
      33             : namespace sdr { namespace contact {
      34             : 
      35           0 : ViewObjectContactOfSdrMediaObj::ViewObjectContactOfSdrMediaObj( ObjectContact& rObjectContact,
      36             :                                                                 ViewContact& rViewContact,
      37             :                                                                 const ::avmedia::MediaItem& rMediaItem ) :
      38             :     ViewObjectContactOfSdrObj( rObjectContact, rViewContact ),
      39           0 :     mpMediaWindow( NULL )
      40             : {
      41             : #if HAVE_FEATURE_AVMEDIA
      42           0 :     vcl::Window* pWindow = getWindow();
      43             : 
      44           0 :     if( pWindow )
      45             :     {
      46           0 :         mpMediaWindow = new SdrMediaWindow( pWindow, *this );
      47           0 :         mpMediaWindow->hide();
      48           0 :         executeMediaItem( rMediaItem );
      49             :     }
      50             : #else
      51             :     (void) rMediaItem;
      52             : #endif
      53           0 : }
      54             : 
      55           0 : ViewObjectContactOfSdrMediaObj::~ViewObjectContactOfSdrMediaObj()
      56             : {
      57           0 :     delete mpMediaWindow;
      58           0 :     mpMediaWindow = NULL;
      59           0 : }
      60             : 
      61             : 
      62             : 
      63           0 : vcl::Window* ViewObjectContactOfSdrMediaObj::getWindow() const
      64             : {
      65           0 :     vcl::Window* pRetval = 0;
      66             : 
      67           0 :     boost::optional<const OutputDevice&> oPageOutputDev = getPageViewOutputDevice();
      68           0 :     if( oPageOutputDev )
      69             :     {
      70           0 :         if(OUTDEV_WINDOW == oPageOutputDev->GetOutDevType())
      71             :         {
      72           0 :             pRetval = static_cast< vcl::Window* >(&const_cast<OutputDevice&>(oPageOutputDev.get()));
      73             :         }
      74             :     }
      75             : 
      76           0 :     return pRetval;
      77             : }
      78             : 
      79             : 
      80             : 
      81           0 : Size ViewObjectContactOfSdrMediaObj::getPreferredSize() const
      82             : {
      83           0 :     Size aRet;
      84             : 
      85           0 :     if( mpMediaWindow )
      86           0 :         aRet = mpMediaWindow->getPreferredSize();
      87             : 
      88           0 :     return aRet;
      89             : }
      90             : 
      91             : 
      92             : 
      93           0 : void ViewObjectContactOfSdrMediaObj::updateMediaItem( ::avmedia::MediaItem& rItem ) const
      94             : {
      95           0 :     if( mpMediaWindow )
      96             :     {
      97           0 :         mpMediaWindow->updateMediaItem( rItem );
      98             : 
      99             :         // show/hide is now dependent of play state
     100           0 :         if(avmedia::MEDIASTATE_STOP == rItem.getState())
     101             :         {
     102           0 :             mpMediaWindow->hide();
     103             :         }
     104             :         else
     105             :         {
     106           0 :             basegfx::B2DRange aViewRange(getObjectRange());
     107           0 :             aViewRange.transform(GetObjectContact().getViewInformation2D().getViewTransformation());
     108             : 
     109             :             const Rectangle aViewRectangle(
     110           0 :                 (sal_Int32)floor(aViewRange.getMinX()), (sal_Int32)floor(aViewRange.getMinY()),
     111           0 :                 (sal_Int32)ceil(aViewRange.getMaxX()), (sal_Int32)ceil(aViewRange.getMaxY()));
     112             : 
     113           0 :             mpMediaWindow->setPosSize(aViewRectangle);
     114           0 :             mpMediaWindow->show();
     115             :         }
     116             :     }
     117           0 : }
     118             : 
     119             : 
     120             : 
     121           0 : void ViewObjectContactOfSdrMediaObj::executeMediaItem( const ::avmedia::MediaItem& rItem )
     122             : {
     123           0 :     if( mpMediaWindow )
     124             :     {
     125           0 :         ::avmedia::MediaItem aUpdatedItem;
     126             : 
     127           0 :         mpMediaWindow->executeMediaItem( rItem );
     128             : 
     129             :         // query new properties after trying to set the new properties
     130           0 :         updateMediaItem( aUpdatedItem );
     131           0 :         static_cast< ViewContactOfSdrMediaObj& >( GetViewContact() ).mediaPropertiesChanged( aUpdatedItem );
     132             :     }
     133           0 : }
     134             : 
     135             : 
     136             : 
     137         651 : }} // end of namespace sdr::contact
     138             : 
     139             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10