LCOV - code coverage report
Current view: top level - avmedia/source/framework - mediacontrol.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 1 298 0.3 %
Date: 2015-06-13 12:38:46 Functions: 2 26 7.7 %
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 "mediacontrol.hxx"
      21             : #include "mediacontrol.hrc"
      22             : #include "mediamisc.hxx"
      23             : #include <avmedia/mediawindow.hxx>
      24             : #include <avmedia/mediaplayer.hxx>
      25             : #include "helpids.hrc"
      26             : #include <tools/time.hxx>
      27             : #include <svtools/miscopt.hxx>
      28             : #include <vcl/svapp.hxx>
      29             : #include <vcl/settings.hxx>
      30             : #include <vcl/lstbox.hxx>
      31             : #include <unotools/syslocale.hxx>
      32             : #include <sfx2/viewfrm.hxx>
      33             : #include <math.h>
      34             : #include <algorithm>
      35             : 
      36             : #define AVMEDIA_TIME_RANGE          2048
      37             : #define AVMEDIA_DB_RANGE            -40
      38             : #define AVMEDIA_LINEINCREMENT       1.0
      39             : #define AVMEDIA_PAGEINCREMENT       10.0
      40             : 
      41             : #define AVMEDIA_TOOLBOXITEM_PLAY    0x0001
      42             : #define AVMEDIA_TOOLBOXITEM_PAUSE   0x0004
      43             : #define AVMEDIA_TOOLBOXITEM_STOP    0x0008
      44             : #define AVMEDIA_TOOLBOXITEM_MUTE    0x0010
      45             : #define AVMEDIA_TOOLBOXITEM_LOOP    0x0011
      46             : #define AVMEDIA_TOOLBOXITEM_ZOOM    0x0012
      47             : #define AVMEDIA_TOOLBOXITEM_OPEN    0x0014
      48             : #define AVMEDIA_TOOLBOXITEM_INSERT  0x0018
      49             : 
      50             : #define AVMEDIA_ZOOMLEVEL_50        0
      51             : #define AVMEDIA_ZOOMLEVEL_100       1
      52             : #define AVMEDIA_ZOOMLEVEL_200       2
      53             : #define AVMEDIA_ZOOMLEVEL_FIT       3
      54             : #define AVMEDIA_ZOOMLEVEL_SCALED    4
      55             : #define AVMEDIA_ZOOMLEVEL_INVALID   65535
      56             : 
      57             : namespace avmedia
      58             : {
      59             : 
      60             : 
      61             : // - MediaControl -
      62             : 
      63             : 
      64           0 : MediaControl::MediaControl( vcl::Window* pParent, MediaControlStyle eControlStyle ) :
      65             :     Control( pParent ),
      66           0 :     maImageList( SvtMiscOptions().AreCurrentSymbolsLarge() ? AVMEDIA_RESID( AVMEDIA_IMGLST_L ) : AVMEDIA_RESID( AVMEDIA_IMGLST ) ),
      67             :     maItem( 0, AVMediaSetMask::ALL ),
      68             :     maPlayToolBox( VclPtr<ToolBox>::Create(this, WB_3DLOOK) ),
      69             :     maTimeSlider( VclPtr<Slider>::Create(this, WB_HORZ | WB_DRAG | WB_3DLOOK | WB_SLIDERSET) ),
      70             :     maMuteToolBox( VclPtr<ToolBox>::Create(this, WB_3DLOOK) ),
      71             :     maVolumeSlider( VclPtr<Slider>::Create(this, WB_HORZ | WB_DRAG | WB_SLIDERSET) ),
      72             :     maZoomToolBox( VclPtr<ToolBox>::Create(this, WB_3DLOOK) ),
      73           0 :     mpZoomListBox( VclPtr<ListBox>::Create( maZoomToolBox.get(), WB_BORDER | WB_DROPDOWN | WB_AUTOHSCROLL | WB_3DLOOK ) ),
      74             :     maTimeEdit( VclPtr<Edit>::Create(this, WB_CENTER | WB_READONLY | WB_BORDER | WB_3DLOOK | WB_READONLY) ),
      75             :     meControlStyle( eControlStyle ),
      76           0 :     mbLocked( false )
      77             : {
      78           0 :     const OUString aTimeText( " 00:00:00/00:00:00 " );
      79             : 
      80           0 :     SetBackground();
      81           0 :     SetPaintTransparent( true );
      82           0 :     SetParentClipMode( ParentClipMode::NoClip );
      83             : 
      84           0 :     if( MEDIACONTROLSTYLE_SINGLELINE != meControlStyle )
      85             :     {
      86           0 :         maPlayToolBox->InsertItem( AVMEDIA_TOOLBOXITEM_OPEN, implGetImage( AVMEDIA_IMG_OPEN ), OUString( AVMEDIA_RESID( AVMEDIA_STR_OPEN ) ) );
      87           0 :         maPlayToolBox->SetHelpId( AVMEDIA_TOOLBOXITEM_OPEN, HID_AVMEDIA_TOOLBOXITEM_OPEN );
      88             : 
      89           0 :         maPlayToolBox->InsertItem( AVMEDIA_TOOLBOXITEM_INSERT, implGetImage( AVMEDIA_IMG_INSERT ), OUString( AVMEDIA_RESID( AVMEDIA_STR_INSERT ) ) );
      90           0 :         maPlayToolBox->SetHelpId( AVMEDIA_TOOLBOXITEM_INSERT, HID_AVMEDIA_TOOLBOXITEM_INSERT );
      91             : 
      92           0 :         maPlayToolBox->InsertSeparator();
      93             :     }
      94             :     else
      95             :     {
      96           0 :         mpZoomListBox->SetBackground();
      97             : 
      98           0 :         maZoomToolBox->SetBackground();
      99           0 :         maZoomToolBox->SetPaintTransparent( true );
     100           0 :         maPlayToolBox->SetBackground();
     101           0 :         maPlayToolBox->SetPaintTransparent( true );
     102           0 :         maMuteToolBox->SetBackground();
     103           0 :         maMuteToolBox->SetPaintTransparent( true );
     104             : 
     105             :     }
     106             : 
     107           0 :     maPlayToolBox->InsertItem( AVMEDIA_TOOLBOXITEM_PLAY, implGetImage( AVMEDIA_IMG_PLAY ), OUString( AVMEDIA_RESID( AVMEDIA_STR_PLAY ) ), ToolBoxItemBits::CHECKABLE );
     108           0 :        maPlayToolBox->SetHelpId( AVMEDIA_TOOLBOXITEM_PLAY, HID_AVMEDIA_TOOLBOXITEM_PLAY );
     109             : 
     110           0 :     maPlayToolBox->InsertItem( AVMEDIA_TOOLBOXITEM_PAUSE, implGetImage( AVMEDIA_IMG_PAUSE ), OUString( AVMEDIA_RESID( AVMEDIA_STR_PAUSE ) ), ToolBoxItemBits::CHECKABLE );
     111           0 :        maPlayToolBox->SetHelpId( AVMEDIA_TOOLBOXITEM_PAUSE, HID_AVMEDIA_TOOLBOXITEM_PAUSE );
     112             : 
     113           0 :     maPlayToolBox->InsertItem( AVMEDIA_TOOLBOXITEM_STOP, implGetImage( AVMEDIA_IMG_STOP ), OUString( AVMEDIA_RESID( AVMEDIA_STR_STOP ) ), ToolBoxItemBits::CHECKABLE );
     114           0 :        maPlayToolBox->SetHelpId( AVMEDIA_TOOLBOXITEM_STOP, HID_AVMEDIA_TOOLBOXITEM_STOP );
     115             : 
     116           0 :     maPlayToolBox->InsertSeparator();
     117             : 
     118           0 :     maPlayToolBox->InsertItem( AVMEDIA_TOOLBOXITEM_LOOP, implGetImage( AVMEDIA_IMG_ENDLESS ), OUString( AVMEDIA_RESID( AVMEDIA_STR_ENDLESS ) ) );
     119           0 :        maPlayToolBox->SetHelpId( AVMEDIA_TOOLBOXITEM_LOOP, HID_AVMEDIA_TOOLBOXITEM_LOOP );
     120             : 
     121           0 :     if( MEDIACONTROLSTYLE_SINGLELINE == meControlStyle )
     122           0 :         maPlayToolBox->InsertSeparator();
     123             : 
     124           0 :     maPlayToolBox->SetSelectHdl( LINK( this, MediaControl, implSelectHdl ) );
     125           0 :     maPlayToolBox->SetSizePixel( maPlayToolBox->CalcWindowSizePixel() );
     126           0 :     maPlayToolBox->Show();
     127           0 :     maMinSize = maPlayToolBox->GetSizePixel();
     128             : 
     129           0 :     maTimeSlider->SetSlideHdl( LINK( this, MediaControl, implTimeHdl ) );
     130           0 :     maTimeSlider->SetEndSlideHdl( LINK( this, MediaControl, implTimeEndHdl ) );
     131           0 :     maTimeSlider->SetRange( Range( 0, AVMEDIA_TIME_RANGE ) );
     132           0 :     maTimeSlider->SetHelpId( HID_AVMEDIA_TIMESLIDER );
     133           0 :     maTimeSlider->SetUpdateMode( true );
     134           0 :     maTimeSlider->SetSizePixel( Size( 128, maPlayToolBox->GetSizePixel().Height() ) );
     135           0 :     maTimeSlider->Show();
     136           0 :     maMinSize.Width() += maTimeSlider->GetSizePixel().Width();
     137             : 
     138           0 :     maTimeEdit->SetText( aTimeText );
     139           0 :     maTimeEdit->SetUpdateMode( true );
     140           0 :     maTimeEdit->SetSizePixel( Size( maTimeEdit->GetTextWidth( aTimeText ) + 8, maPlayToolBox->GetSizePixel().Height() ) );
     141           0 :     maTimeEdit->SetControlBackground( Application::GetSettings().GetStyleSettings().GetWindowColor() );
     142           0 :     maTimeEdit->SetHelpId( HID_AVMEDIA_TIMEEDIT );
     143           0 :     maTimeEdit->Disable();
     144           0 :     maTimeEdit->Show();
     145           0 :     maMinSize.Width() += maTimeEdit->GetSizePixel().Width();
     146             : 
     147           0 :     if( MEDIACONTROLSTYLE_SINGLELINE == meControlStyle )
     148           0 :         maMuteToolBox->InsertSeparator();
     149             : 
     150           0 :     maMuteToolBox->InsertItem( AVMEDIA_TOOLBOXITEM_MUTE, implGetImage( AVMEDIA_IMG_MUTE ), OUString( AVMEDIA_RESID( AVMEDIA_STR_MUTE ) ) );
     151           0 :        maMuteToolBox->SetHelpId( AVMEDIA_TOOLBOXITEM_MUTE, HID_AVMEDIA_TOOLBOXITEM_MUTE );
     152             : 
     153           0 :     maMuteToolBox->SetSelectHdl( LINK( this, MediaControl, implSelectHdl ) );
     154           0 :     maMuteToolBox->SetSizePixel( maMuteToolBox->CalcWindowSizePixel() );
     155           0 :     maMuteToolBox->Show();
     156           0 :     maMinSize.Width() += maMuteToolBox->GetSizePixel().Width();
     157             : 
     158           0 :     maVolumeSlider->SetSlideHdl( LINK( this, MediaControl, implVolumeHdl ) );
     159           0 :     maVolumeSlider->SetRange( Range( AVMEDIA_DB_RANGE, 0 ) );
     160           0 :     maVolumeSlider->SetUpdateMode( true );
     161           0 :     maVolumeSlider->SetHelpId( HID_AVMEDIA_VOLUMESLIDER );
     162           0 :     maVolumeSlider->SetSizePixel( Size( 48, maPlayToolBox->GetSizePixel().Height() ) );
     163           0 :     maVolumeSlider->Show();
     164           0 :     maMinSize.Width() += maVolumeSlider->GetSizePixel().Width();
     165             : 
     166           0 :     mpZoomListBox->SetSizePixel( Size( maTimeEdit->GetSizePixel().Width(), 260 ) );
     167           0 :     mpZoomListBox->InsertEntry( OUString( AVMEDIA_RESID( AVMEDIA_STR_ZOOM_50 ) ), AVMEDIA_ZOOMLEVEL_50 );
     168           0 :     mpZoomListBox->InsertEntry( OUString( AVMEDIA_RESID( AVMEDIA_STR_ZOOM_100 ) ), AVMEDIA_ZOOMLEVEL_100 );
     169           0 :     mpZoomListBox->InsertEntry( OUString( AVMEDIA_RESID( AVMEDIA_STR_ZOOM_200 ) ), AVMEDIA_ZOOMLEVEL_200 );
     170           0 :     mpZoomListBox->InsertEntry( OUString( AVMEDIA_RESID( AVMEDIA_STR_ZOOM_FIT ) ), AVMEDIA_ZOOMLEVEL_FIT );
     171           0 :     mpZoomListBox->SetSelectHdl( LINK( this, MediaControl, implZoomSelectHdl ) );
     172           0 :     mpZoomListBox->SetHelpId( HID_AVMEDIA_ZOOMLISTBOX );
     173             : 
     174           0 :     maZoomToolBox->InsertItem( AVMEDIA_TOOLBOXITEM_ZOOM, OUString( AVMEDIA_RESID( AVMEDIA_STR_ZOOM ) ) );
     175           0 :     maZoomToolBox->SetHelpId( AVMEDIA_TOOLBOXITEM_ZOOM, HID_AVMEDIA_ZOOMLISTBOX );
     176             : 
     177           0 :     maZoomToolBox->SetItemWindow( AVMEDIA_TOOLBOXITEM_ZOOM, mpZoomListBox );
     178           0 :     maZoomToolBox->SetSelectHdl( LINK( this, MediaControl, implSelectHdl ) );
     179           0 :     maZoomToolBox->SetSizePixel( maZoomToolBox->CalcWindowSizePixel() );
     180           0 :     maZoomToolBox->Show();
     181           0 :     maMinSize.Width() += maZoomToolBox->GetSizePixel().Width();
     182             : 
     183           0 :     if( MEDIACONTROLSTYLE_MULTILINE == meControlStyle )
     184             :     {
     185           0 :         maMinSize.Width() = 256;
     186           0 :         maMinSize.Height() = ( maMinSize.Height() << 1 ) + AVMEDIA_CONTROLOFFSET;
     187             :     }
     188             : 
     189           0 :     maIdle.SetPriority( SchedulerPriority::LOW );
     190           0 :     maIdle.SetIdleHdl( LINK( this, MediaControl, implTimeoutHdl ) );
     191           0 :     maIdle.Start();
     192           0 : }
     193             : 
     194             : 
     195             : 
     196           0 : MediaControl::~MediaControl()
     197             : {
     198           0 :     disposeOnce();
     199           0 : }
     200             : 
     201           0 : void MediaControl::dispose()
     202             : {
     203           0 :     maZoomToolBox->SetItemWindow( AVMEDIA_TOOLBOXITEM_ZOOM, NULL );
     204           0 :     mpZoomListBox.disposeAndClear();
     205           0 :     maTimeEdit.disposeAndClear();
     206           0 :     maZoomToolBox.disposeAndClear();
     207           0 :     maVolumeSlider.disposeAndClear();
     208           0 :     maMuteToolBox.disposeAndClear();
     209           0 :     maTimeSlider.disposeAndClear();
     210           0 :     maPlayToolBox.disposeAndClear();
     211           0 :     Control::dispose();
     212           0 : }
     213             : 
     214             : 
     215             : 
     216           0 : const Size& MediaControl::getMinSizePixel() const
     217             : {
     218           0 :     return maMinSize;
     219             : }
     220             : 
     221             : 
     222             : 
     223           0 : void MediaControl::Resize()
     224             : {
     225           0 :     Point           aPos( 0, 0 );
     226           0 :     const sal_Int32 nPlayToolBoxWidth = maPlayToolBox->GetSizePixel().Width();
     227           0 :     const sal_Int32 nMuteToolBoxWidth = maMuteToolBox->GetSizePixel().Width();
     228           0 :     const sal_Int32 nVolumeSliderWidth = maVolumeSlider->GetSizePixel().Width();
     229           0 :     const sal_Int32 nZoomToolBoxWidth = maZoomToolBox->GetSizePixel().Width();
     230           0 :     const sal_Int32 nTimeEditWidth = maTimeEdit->GetSizePixel().Width();
     231           0 :     const sal_Int32 nTimeSliderHeight = maTimeSlider->GetSizePixel().Height();
     232             : 
     233           0 :     if( MEDIACONTROLSTYLE_SINGLELINE == meControlStyle )
     234             :     {
     235           0 :         const sal_Int32 nTimeSliderWidth = GetSizePixel().Width() - ( AVMEDIA_CONTROLOFFSET * 3 ) -
     236           0 :                                            nPlayToolBoxWidth - nMuteToolBoxWidth - nVolumeSliderWidth - nTimeEditWidth - nZoomToolBoxWidth;
     237             : 
     238           0 :         maPlayToolBox->SetPosSizePixel( aPos, maPlayToolBox->GetSizePixel() );
     239             : 
     240           0 :         aPos.X() += nPlayToolBoxWidth;
     241           0 :         maTimeSlider->SetPosSizePixel( aPos, Size( nTimeSliderWidth, nTimeSliderHeight ) );
     242             : 
     243           0 :         aPos.X() += nTimeSliderWidth + AVMEDIA_CONTROLOFFSET;
     244           0 :         maTimeEdit->SetPosSizePixel( aPos, maTimeEdit->GetSizePixel() );
     245             : 
     246           0 :         aPos.X() += nTimeEditWidth + AVMEDIA_CONTROLOFFSET;
     247           0 :         maMuteToolBox->SetPosSizePixel( aPos, maMuteToolBox->GetSizePixel() );
     248             : 
     249           0 :         aPos.X() += nMuteToolBoxWidth;
     250           0 :         maVolumeSlider->SetPosSizePixel( aPos, maVolumeSlider->GetSizePixel() );
     251             : 
     252           0 :         aPos.X() += nVolumeSliderWidth + AVMEDIA_CONTROLOFFSET;
     253           0 :         maZoomToolBox->SetPosSizePixel( aPos, maZoomToolBox->GetSizePixel() );
     254             :     }
     255             :     else
     256             :     {
     257           0 :         const sal_Int32 nTimeSliderWidth = GetSizePixel().Width() - AVMEDIA_CONTROLOFFSET - nTimeEditWidth;
     258             : 
     259           0 :         maTimeSlider->SetPosSizePixel( aPos, Size( nTimeSliderWidth, nTimeSliderHeight ) );
     260             : 
     261           0 :         aPos.X() += nTimeSliderWidth + AVMEDIA_CONTROLOFFSET;
     262           0 :         maTimeEdit->SetPosSizePixel( aPos, maTimeEdit->GetSizePixel() );
     263             : 
     264           0 :         aPos.X() = 0;
     265           0 :         aPos.Y() += nTimeSliderHeight + AVMEDIA_CONTROLOFFSET;
     266           0 :         maPlayToolBox->SetPosSizePixel( aPos, maPlayToolBox->GetSizePixel() );
     267             : 
     268           0 :         aPos.X() = GetSizePixel().Width() - nVolumeSliderWidth - nMuteToolBoxWidth - nZoomToolBoxWidth - AVMEDIA_CONTROLOFFSET;
     269           0 :         maMuteToolBox->SetPosSizePixel( aPos, maMuteToolBox->GetSizePixel() );
     270             : 
     271           0 :         aPos.X() += nMuteToolBoxWidth;
     272           0 :         maVolumeSlider->SetPosSizePixel( aPos, maVolumeSlider->GetSizePixel() );
     273             : 
     274           0 :         aPos.X() = GetSizePixel().Width() - nZoomToolBoxWidth;
     275           0 :         maZoomToolBox->SetPosSizePixel( aPos, maZoomToolBox->GetSizePixel() );
     276             :     }
     277           0 : }
     278             : 
     279             : 
     280             : 
     281           0 : void MediaControl::setState( const MediaItem& rItem )
     282             : {
     283           0 :     if( !mbLocked )
     284             :     {
     285           0 :         maItem.merge( rItem );
     286             : 
     287           0 :         implUpdateToolboxes();
     288           0 :         implUpdateTimeSlider();
     289           0 :         implUpdateVolumeSlider();
     290           0 :         implUpdateTimeField( maItem.getTime() );
     291             :     }
     292           0 : }
     293             : 
     294             : 
     295             : 
     296           0 : void MediaControl::implUpdateToolboxes()
     297             : {
     298           0 :     const bool bValidURL = !maItem.getURL().isEmpty();
     299             : 
     300           0 :     maPlayToolBox->EnableItem( AVMEDIA_TOOLBOXITEM_INSERT, bValidURL );
     301           0 :     maPlayToolBox->EnableItem( AVMEDIA_TOOLBOXITEM_PLAY, bValidURL );
     302           0 :     maPlayToolBox->EnableItem( AVMEDIA_TOOLBOXITEM_PAUSE, bValidURL );
     303           0 :     maPlayToolBox->EnableItem( AVMEDIA_TOOLBOXITEM_STOP, bValidURL );
     304           0 :     maPlayToolBox->EnableItem( AVMEDIA_TOOLBOXITEM_LOOP, bValidURL );
     305           0 :     maMuteToolBox->EnableItem( AVMEDIA_TOOLBOXITEM_MUTE, bValidURL );
     306             : 
     307           0 :     if( !bValidURL || !IsEnabled() )
     308             :     {
     309           0 :         mpZoomListBox->Disable();
     310             : 
     311           0 :         if( MEDIACONTROLSTYLE_SINGLELINE == meControlStyle )
     312           0 :             maPlayToolBox->Disable();
     313             : 
     314           0 :         maMuteToolBox->Disable();
     315             :     }
     316             :     else
     317             :     {
     318           0 :         maPlayToolBox->Enable();
     319           0 :         maMuteToolBox->Enable();
     320             : 
     321           0 :         if( MediaState::Play == maItem.getState() )
     322             :         {
     323           0 :             maPlayToolBox->CheckItem( AVMEDIA_TOOLBOXITEM_PLAY, true );
     324           0 :             maPlayToolBox->CheckItem( AVMEDIA_TOOLBOXITEM_PAUSE, false );
     325           0 :             maPlayToolBox->CheckItem( AVMEDIA_TOOLBOXITEM_STOP, false );
     326             :         }
     327           0 :         else if( maItem.getTime() > 0.0 && ( maItem.getTime() < maItem.getDuration() ) )
     328             :         {
     329           0 :             maPlayToolBox->CheckItem( AVMEDIA_TOOLBOXITEM_PLAY, false );
     330           0 :             maPlayToolBox->CheckItem( AVMEDIA_TOOLBOXITEM_PAUSE, true );
     331           0 :             maPlayToolBox->CheckItem( AVMEDIA_TOOLBOXITEM_STOP, false );
     332             :         }
     333             :         else
     334             :         {
     335           0 :             maPlayToolBox->CheckItem( AVMEDIA_TOOLBOXITEM_PLAY, false );
     336           0 :             maPlayToolBox->CheckItem( AVMEDIA_TOOLBOXITEM_PAUSE, false );
     337           0 :             maPlayToolBox->CheckItem( AVMEDIA_TOOLBOXITEM_STOP, true );
     338             :         }
     339             : 
     340           0 :         maPlayToolBox->CheckItem( AVMEDIA_TOOLBOXITEM_LOOP, maItem.isLoop() );
     341           0 :         maMuteToolBox->CheckItem( AVMEDIA_TOOLBOXITEM_MUTE, maItem.isMute() );
     342             : 
     343           0 :         if( !mpZoomListBox->IsTravelSelect() && !mpZoomListBox->IsInDropDown() )
     344             :         {
     345             :             sal_uInt16 nSelectEntryPos ;
     346             : 
     347           0 :             switch( maItem.getZoom() )
     348             :             {
     349           0 :                 case( ::com::sun::star::media::ZoomLevel_ZOOM_1_TO_2 ): nSelectEntryPos = AVMEDIA_ZOOMLEVEL_50; break;
     350           0 :                 case( ::com::sun::star::media::ZoomLevel_ORIGINAL ): nSelectEntryPos = AVMEDIA_ZOOMLEVEL_100; break;
     351           0 :                 case( ::com::sun::star::media::ZoomLevel_ZOOM_2_TO_1 ): nSelectEntryPos = AVMEDIA_ZOOMLEVEL_200; break;
     352           0 :                 case( ::com::sun::star::media::ZoomLevel_FIT_TO_WINDOW_FIXED_ASPECT ): nSelectEntryPos = AVMEDIA_ZOOMLEVEL_FIT; break;
     353           0 :                 case( ::com::sun::star::media::ZoomLevel_FIT_TO_WINDOW ): nSelectEntryPos = AVMEDIA_ZOOMLEVEL_SCALED; break;
     354             : 
     355           0 :                 default: nSelectEntryPos = AVMEDIA_ZOOMLEVEL_INVALID; break;
     356             :             }
     357             : 
     358           0 :             if( nSelectEntryPos != AVMEDIA_ZOOMLEVEL_INVALID )
     359             :             {
     360           0 :                 mpZoomListBox->Enable();
     361           0 :                 mpZoomListBox->SelectEntryPos( nSelectEntryPos );
     362             :             }
     363             :             else
     364           0 :                 mpZoomListBox->Disable();
     365             :         }
     366             :     }
     367           0 : }
     368             : 
     369             : 
     370             : 
     371           0 : void MediaControl::implUpdateTimeSlider()
     372             : {
     373           0 :     if( maItem.getURL().isEmpty() || !IsEnabled() )
     374           0 :         maTimeSlider->Disable();
     375             :     else
     376             :     {
     377           0 :         maTimeSlider->Enable();
     378             : 
     379           0 :         const double fDuration = maItem.getDuration();
     380             : 
     381           0 :         if( fDuration > 0.0 )
     382             :         {
     383           0 :             const double fTime = ::std::min( maItem.getTime(), fDuration );
     384             : 
     385           0 :             if( !maTimeSlider->GetLineSize() )
     386           0 :                 maTimeSlider->SetLineSize( static_cast< sal_uInt32 >( AVMEDIA_TIME_RANGE * AVMEDIA_LINEINCREMENT / fDuration ) );
     387             : 
     388           0 :             if( !maTimeSlider->GetPageSize() )
     389           0 :                 maTimeSlider->SetPageSize( static_cast< sal_uInt32 >( AVMEDIA_TIME_RANGE * AVMEDIA_PAGEINCREMENT / fDuration ) );
     390             : 
     391           0 :             maTimeSlider->SetThumbPos( static_cast< sal_Int32 >( fTime / fDuration * AVMEDIA_TIME_RANGE ) );
     392             :         }
     393             :     }
     394           0 : }
     395             : 
     396             : 
     397             : 
     398           0 : void MediaControl::implUpdateVolumeSlider()
     399             : {
     400           0 :     if( maItem.getURL().isEmpty() || !IsEnabled() )
     401           0 :         maVolumeSlider->Disable();
     402             :     else
     403             :     {
     404           0 :         maVolumeSlider->Enable();
     405             : 
     406           0 :         const sal_Int32 nVolumeDB = maItem.getVolumeDB();
     407             : 
     408           0 :         maVolumeSlider->SetThumbPos( ::std::min( ::std::max( nVolumeDB, static_cast< sal_Int32 >( AVMEDIA_DB_RANGE ) ),
     409           0 :                                                 static_cast< sal_Int32 >( 0 ) ) );
     410             :     }
     411           0 : }
     412             : 
     413             : 
     414             : 
     415           0 : void MediaControl::implUpdateTimeField( double fCurTime )
     416             : {
     417           0 :     if( !maItem.getURL().isEmpty() )
     418             :     {
     419           0 :         OUString              aTimeString;
     420             : 
     421           0 :         SvtSysLocale aSysLocale;
     422           0 :         const LocaleDataWrapper& rLocaleData = aSysLocale.GetLocaleData();
     423             : 
     424           0 :         aTimeString += rLocaleData.getDuration( tools::Time( 0, 0, static_cast< sal_uInt32 >( floor( fCurTime ) ) ) ) +
     425           0 :             " / " +
     426           0 :             rLocaleData.getDuration( tools::Time( 0, 0, static_cast< sal_uInt32 >( floor( maItem.getDuration() ) )) );
     427             : 
     428           0 :         if( maTimeEdit->GetText() != aTimeString )
     429           0 :             maTimeEdit->SetText( aTimeString );
     430             :     }
     431           0 : }
     432             : 
     433             : 
     434             : 
     435           0 : Image MediaControl::implGetImage( sal_Int32 nImageId ) const
     436             : {
     437           0 :     return maImageList.GetImage( static_cast< sal_uInt16 >( nImageId ) );
     438             : }
     439             : 
     440             : 
     441             : 
     442           0 : IMPL_LINK( MediaControl, implTimeHdl, Slider*, p )
     443             : {
     444           0 :     mbLocked = true;
     445           0 :     maIdle.Stop();
     446           0 :     implUpdateTimeField( p->GetThumbPos() * maItem.getDuration() / AVMEDIA_TIME_RANGE );
     447             : 
     448           0 :     return 0;
     449             : }
     450             : 
     451             : 
     452             : 
     453           0 : IMPL_LINK( MediaControl, implTimeEndHdl, Slider*, p )
     454             : {
     455           0 :     MediaItem aExecItem;
     456             : 
     457           0 :     aExecItem.setTime( p->GetThumbPos() * maItem.getDuration() / AVMEDIA_TIME_RANGE );
     458           0 :     execute( aExecItem );
     459           0 :     update();
     460           0 :     maIdle.Start();
     461           0 :     mbLocked = false;
     462             : 
     463           0 :     return 0;
     464             : }
     465             : 
     466             : 
     467             : 
     468           0 : IMPL_LINK( MediaControl, implVolumeHdl, Slider*, p )
     469             : {
     470           0 :     MediaItem aExecItem;
     471             : 
     472           0 :     aExecItem.setVolumeDB( static_cast< sal_Int16 >( p->GetThumbPos() ) );
     473           0 :     execute( aExecItem );
     474           0 :     update();
     475             : 
     476           0 :     return 0;
     477             : }
     478             : 
     479             : 
     480             : 
     481           0 : IMPL_LINK_TYPED( MediaControl, implSelectHdl, ToolBox*, p, void )
     482             : {
     483           0 :     if( p )
     484             :     {
     485           0 :         MediaItem aExecItem;
     486             : 
     487           0 :         switch( p->GetCurItemId() )
     488             :         {
     489             :             case( AVMEDIA_TOOLBOXITEM_OPEN ):
     490             :             {
     491           0 :                 OUString aURL;
     492             : 
     493           0 :                  if (::avmedia::MediaWindow::executeMediaURLDialog(
     494           0 :                              GetParent(), aURL, 0))
     495             :                  {
     496           0 :                      if( !::avmedia::MediaWindow::isMediaURL( aURL, ""/*TODO?*/, true ) )
     497           0 :                         ::avmedia::MediaWindow::executeFormatErrorBox( this );
     498             :                     else
     499             :                     {
     500           0 :                         aExecItem.setURL( aURL, "", ""/*TODO?*/ );
     501           0 :                         aExecItem.setState( MediaState::Play );
     502             :                     }
     503           0 :                 }
     504             :             }
     505           0 :             break;
     506             : 
     507             :             case( AVMEDIA_TOOLBOXITEM_INSERT ):
     508             :             {
     509           0 :                 MediaFloater* pFloater = avmedia::getMediaFloater();
     510             : 
     511           0 :                 if( pFloater )
     512           0 :                     pFloater->dispatchCurrentURL();
     513             :             }
     514           0 :             break;
     515             : 
     516             :             case( AVMEDIA_TOOLBOXITEM_PLAY ):
     517             :             {
     518           0 :                 aExecItem.setState( MediaState::Play );
     519             : 
     520           0 :                 if( maItem.getTime() == maItem.getDuration() )
     521           0 :                     aExecItem.setTime( 0.0 );
     522             :                 else
     523           0 :                     aExecItem.setTime( maItem.getTime() );
     524             :             }
     525           0 :             break;
     526             : 
     527             :             case( AVMEDIA_TOOLBOXITEM_PAUSE ):
     528             :             {
     529           0 :                 aExecItem.setState( MediaState::Pause );
     530             :             }
     531           0 :             break;
     532             : 
     533             :             case( AVMEDIA_TOOLBOXITEM_STOP ):
     534             :             {
     535           0 :                 aExecItem.setState( MediaState::Stop );
     536           0 :                 aExecItem.setTime( 0.0 );
     537             :             }
     538           0 :             break;
     539             : 
     540             :             case( AVMEDIA_TOOLBOXITEM_MUTE ):
     541             :             {
     542           0 :                 aExecItem.setMute( !maMuteToolBox->IsItemChecked( AVMEDIA_TOOLBOXITEM_MUTE ) );
     543             :             }
     544           0 :             break;
     545             : 
     546             :             case( AVMEDIA_TOOLBOXITEM_LOOP ):
     547             :             {
     548           0 :                 aExecItem.setLoop( !maPlayToolBox->IsItemChecked( AVMEDIA_TOOLBOXITEM_LOOP ) );
     549             :             }
     550           0 :             break;
     551             : 
     552             :             default:
     553           0 :             break;
     554             :         }
     555             : 
     556           0 :         if( aExecItem.getMaskSet() != AVMediaSetMask::NONE )
     557           0 :             execute( aExecItem );
     558             :     }
     559             : 
     560           0 :     update();
     561           0 :     if(p)
     562             :     {
     563           0 :         p->Invalidate( InvalidateFlags::Update );
     564             :     }
     565           0 : }
     566             : 
     567             : 
     568             : 
     569           0 : IMPL_LINK( MediaControl, implZoomSelectHdl, ListBox*, p )
     570             : {
     571           0 :     if( p )
     572             :     {
     573           0 :         MediaItem aExecItem;
     574             :         ::com::sun::star::media::ZoomLevel eLevel;
     575             : 
     576           0 :         switch( p->GetSelectEntryPos() )
     577             :         {
     578           0 :             case( AVMEDIA_ZOOMLEVEL_50 ): eLevel = ::com::sun::star::media::ZoomLevel_ZOOM_1_TO_2; break;
     579           0 :             case( AVMEDIA_ZOOMLEVEL_100 ): eLevel = ::com::sun::star::media::ZoomLevel_ORIGINAL; break;
     580           0 :             case( AVMEDIA_ZOOMLEVEL_200 ): eLevel = ::com::sun::star::media::ZoomLevel_ZOOM_2_TO_1; break;
     581           0 :             case( AVMEDIA_ZOOMLEVEL_FIT ): eLevel = ::com::sun::star::media::ZoomLevel_FIT_TO_WINDOW_FIXED_ASPECT; break;
     582           0 :             case( AVMEDIA_ZOOMLEVEL_SCALED ): eLevel = ::com::sun::star::media::ZoomLevel_FIT_TO_WINDOW; break;
     583             : 
     584           0 :             default: eLevel = ::com::sun::star::media::ZoomLevel_NOT_AVAILABLE; break;
     585             :         }
     586             : 
     587           0 :         aExecItem.setZoom( eLevel );
     588           0 :         execute( aExecItem );
     589           0 :         update();
     590             :     }
     591             : 
     592           0 :     return 0;
     593             : }
     594             : 
     595             : 
     596             : 
     597           0 : IMPL_LINK_NOARG_TYPED(MediaControl, implTimeoutHdl, Idle *, void)
     598             : {
     599           0 :     update();
     600           0 : }
     601             : 
     602         435 : }
     603             : 
     604             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11