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 <stdio.h>
21 :
22 : #include <avmedia/mediawindow.hxx>
23 : #include "mediawindow_impl.hxx"
24 : #include "mediamisc.hxx"
25 : #include "mediawindow.hrc"
26 : #include <tools/urlobj.hxx>
27 : #include <vcl/msgbox.hxx>
28 : #include <unotools/pathoptions.hxx>
29 : #include <sfx2/filedlghelper.hxx>
30 : #include <comphelper/processfactory.hxx>
31 : #include <com/sun/star/lang/XMultiServiceFactory.hpp>
32 : #include <com/sun/star/media/XManager.hpp>
33 : #include "com/sun/star/ui/dialogs/ExtendedFilePickerElementIds.hpp"
34 : #include "com/sun/star/ui/dialogs/TemplateDescription.hpp"
35 : #include "com/sun/star/ui/dialogs/XFilePickerControlAccess.hpp"
36 :
37 : #define AVMEDIA_FRAMEGRABBER_DEFAULTFRAME_MEDIATIME 3.0
38 :
39 : using namespace ::com::sun::star;
40 :
41 : namespace avmedia {
42 :
43 : // ---------------
44 : // - MediaWindow -
45 : // ---------------
46 :
47 0 : MediaWindow::MediaWindow( Window* parent, bool bInternalMediaControl ) :
48 0 : mpImpl( new priv::MediaWindowImpl( parent, this, bInternalMediaControl ) )
49 : {
50 0 : mpImpl->Show();
51 0 : }
52 :
53 : // -------------------------------------------------------------------------
54 :
55 0 : MediaWindow::~MediaWindow()
56 : {
57 0 : mpImpl->cleanUp();
58 0 : delete mpImpl;
59 0 : mpImpl = NULL;
60 0 : }
61 :
62 : // -------------------------------------------------------------------------
63 :
64 0 : void MediaWindow::setURL( const OUString& rURL )
65 : {
66 0 : if( mpImpl )
67 0 : mpImpl->setURL( rURL, OUString() );
68 0 : }
69 :
70 : // -------------------------------------------------------------------------
71 :
72 0 : const OUString& MediaWindow::getURL() const
73 : {
74 0 : return mpImpl->getURL();
75 : }
76 :
77 : // -------------------------------------------------------------------------
78 :
79 0 : bool MediaWindow::isValid() const
80 : {
81 0 : return( mpImpl != NULL && mpImpl->isValid() );
82 : }
83 :
84 : // -------------------------------------------------------------------------
85 :
86 0 : void MediaWindow::MouseMove( const MouseEvent& /* rMEvt */ )
87 : {
88 0 : }
89 :
90 : // ---------------------------------------------------------------------
91 :
92 0 : void MediaWindow::MouseButtonDown( const MouseEvent& /* rMEvt */ )
93 : {
94 0 : }
95 :
96 : // ---------------------------------------------------------------------
97 :
98 0 : void MediaWindow::MouseButtonUp( const MouseEvent& /* rMEvt */ )
99 : {
100 0 : }
101 :
102 : // -------------------------------------------------------------------------
103 :
104 0 : void MediaWindow::KeyInput( const KeyEvent& /* rKEvt */ )
105 : {
106 0 : }
107 :
108 : // -------------------------------------------------------------------------
109 :
110 0 : void MediaWindow::KeyUp( const KeyEvent& /* rKEvt */ )
111 : {
112 0 : }
113 :
114 : // -------------------------------------------------------------------------
115 :
116 0 : void MediaWindow::Command( const CommandEvent& /* rCEvt */ )
117 : {
118 0 : }
119 :
120 : // -------------------------------------------------------------------------
121 :
122 0 : sal_Int8 MediaWindow::AcceptDrop( const AcceptDropEvent& /* rEvt */ )
123 : {
124 0 : return 0;
125 : }
126 :
127 : // -------------------------------------------------------------------------
128 :
129 0 : sal_Int8 MediaWindow::ExecuteDrop( const ExecuteDropEvent& /* rEvt */ )
130 : {
131 0 : return 0;
132 : }
133 :
134 : // -------------------------------------------------------------------------
135 :
136 0 : void MediaWindow::StartDrag( sal_Int8 /* nAction */, const Point& /* rPosPixel */ )
137 : {
138 0 : }
139 :
140 : // -------------------------------------------------------------------------
141 :
142 0 : Size MediaWindow::getPreferredSize() const
143 : {
144 0 : return mpImpl->getPreferredSize();
145 : }
146 :
147 : // -------------------------------------------------------------------------
148 :
149 0 : void MediaWindow::setPosSize( const Rectangle& rNewRect )
150 : {
151 0 : if( mpImpl )
152 : {
153 0 : mpImpl->setPosSize( rNewRect );
154 : }
155 0 : }
156 :
157 : // -------------------------------------------------------------------------
158 :
159 0 : void MediaWindow::setPointer( const Pointer& rPointer )
160 : {
161 0 : if( mpImpl )
162 0 : mpImpl->setPointer( rPointer );
163 0 : }
164 :
165 : // -------------------------------------------------------------------------
166 :
167 0 : bool MediaWindow::start()
168 : {
169 0 : return( mpImpl != NULL && mpImpl->start() );
170 : }
171 :
172 : // -------------------------------------------------------------------------
173 :
174 0 : void MediaWindow::updateMediaItem( MediaItem& rItem ) const
175 : {
176 0 : if( mpImpl )
177 0 : mpImpl->updateMediaItem( rItem );
178 0 : }
179 :
180 : // -------------------------------------------------------------------------
181 :
182 0 : void MediaWindow::executeMediaItem( const MediaItem& rItem )
183 : {
184 0 : if( mpImpl )
185 0 : mpImpl->executeMediaItem( rItem );
186 0 : }
187 :
188 : // -------------------------------------------------------------------------
189 :
190 0 : void MediaWindow::show()
191 : {
192 0 : if( mpImpl )
193 0 : mpImpl->Show();
194 0 : }
195 :
196 : // -------------------------------------------------------------------------
197 :
198 0 : void MediaWindow::hide()
199 : {
200 0 : if( mpImpl )
201 0 : mpImpl->Hide();
202 0 : }
203 :
204 : // -------------------------------------------------------------------------
205 :
206 0 : Window* MediaWindow::getWindow() const
207 : {
208 0 : return mpImpl;
209 : }
210 :
211 : // -------------------------------------------------------------------------
212 :
213 0 : void MediaWindow::getMediaFilters( FilterNameVector& rFilterNameVector )
214 : {
215 : static const char* pFilters[] = { "AIF Audio", "aif;aiff",
216 : "AU Audio", "au",
217 : "AVI", "avi",
218 : "CD Audio", "cda",
219 : "FLAC Audio", "flac",
220 : "Matroska Media", "mkv",
221 : "MIDI Audio", "mid;midi",
222 : "MPEG Audio", "mp2;mp3;mpa",
223 : "MPEG Video", "mpg;mpeg;mpv;mp4",
224 : "Ogg bitstream", "ogg",
225 : "Quicktime Video", "mov",
226 : "Vivo Video", "viv",
227 : "WAVE Audio", "wav",
228 : "WebM Video", "webm" };
229 :
230 0 : for( size_t i = 0; i < SAL_N_ELEMENTS(pFilters); i += 2 )
231 : {
232 : rFilterNameVector.push_back( ::std::make_pair< OUString, OUString >(
233 : OUString::createFromAscii(pFilters[i]),
234 0 : OUString::createFromAscii(pFilters[i+1]) ) );
235 : }
236 0 : }
237 :
238 : // -------------------------------------------------------------------------
239 :
240 0 : bool MediaWindow::executeMediaURLDialog(Window* /* pParent */,
241 : OUString& rURL, bool *const o_pbLink)
242 : {
243 : ::sfx2::FileDialogHelper aDlg( (o_pbLink)
244 : ? ui::dialogs::TemplateDescription::FILEOPEN_LINK_PREVIEW
245 0 : : ui::dialogs::TemplateDescription::FILEOPEN_SIMPLE, 0 );
246 0 : static const OUString aWildcard( "*." );
247 0 : FilterNameVector aFilters;
248 0 : const OUString aSeparator( ";" );
249 0 : OUString aAllTypes;
250 :
251 0 : aDlg.SetTitle( AVMEDIA_RESID( (o_pbLink)
252 0 : ? AVMEDIA_STR_INSERTMEDIA_DLG : AVMEDIA_STR_OPENMEDIA_DLG ) );
253 :
254 0 : getMediaFilters( aFilters );
255 :
256 : unsigned int i;
257 0 : for( i = 0; i < aFilters.size(); ++i )
258 : {
259 0 : for( sal_Int32 nIndex = 0; nIndex >= 0; )
260 : {
261 0 : if( !aAllTypes.isEmpty() )
262 0 : aAllTypes += aSeparator;
263 :
264 0 : ( aAllTypes += aWildcard ) += aFilters[ i ].second.getToken( 0, ';', nIndex );
265 : }
266 : }
267 :
268 : // add filter for all media types
269 0 : aDlg.AddFilter( AVMEDIA_RESID( AVMEDIA_STR_ALL_MEDIAFILES ), aAllTypes );
270 :
271 0 : for( i = 0; i < aFilters.size(); ++i )
272 : {
273 0 : OUString aTypes;
274 :
275 0 : for( sal_Int32 nIndex = 0; nIndex >= 0; )
276 : {
277 0 : if( !aTypes.isEmpty() )
278 0 : aTypes += aSeparator;
279 :
280 0 : ( aTypes += aWildcard ) += aFilters[ i ].second.getToken( 0, ';', nIndex );
281 : }
282 :
283 : // add single filters
284 0 : aDlg.AddFilter( aFilters[ i ].first, aTypes );
285 0 : }
286 :
287 : // add filter for all types
288 0 : aDlg.AddFilter( AVMEDIA_RESID( AVMEDIA_STR_ALL_FILES ), String( "*.*" ) );
289 :
290 0 : uno::Reference<ui::dialogs::XFilePicker> const xFP(aDlg.GetFilePicker());
291 : uno::Reference<ui::dialogs::XFilePickerControlAccess> const xCtrlAcc(xFP,
292 0 : uno::UNO_QUERY_THROW);
293 0 : if (o_pbLink)
294 : {
295 : // for video link should be the default
296 0 : xCtrlAcc->setValue(
297 : ui::dialogs::ExtendedFilePickerElementIds::CHECKBOX_LINK, 0,
298 0 : uno::makeAny(sal_True) );
299 : // disabled for now: TODO: preview?
300 0 : xCtrlAcc->enableControl(
301 : ui::dialogs::ExtendedFilePickerElementIds::CHECKBOX_PREVIEW,
302 0 : sal_False);
303 : }
304 :
305 0 : if( aDlg.Execute() == ERRCODE_NONE )
306 : {
307 0 : const INetURLObject aURL( aDlg.GetPath() );
308 0 : rURL = aURL.GetMainURL( INetURLObject::DECODE_UNAMBIGUOUS );
309 :
310 0 : if (o_pbLink)
311 : {
312 0 : uno::Any const any = xCtrlAcc->getValue(
313 0 : ui::dialogs::ExtendedFilePickerElementIds::CHECKBOX_LINK, 0);
314 0 : if (!(any >>= *o_pbLink))
315 : {
316 : SAL_WARN("avmedia", "invalid link property");
317 0 : *o_pbLink = true;
318 0 : }
319 0 : }
320 : }
321 0 : else if( !rURL.isEmpty() )
322 0 : rURL = OUString();
323 :
324 0 : return( !rURL.isEmpty() );
325 : }
326 :
327 : // -------------------------------------------------------------------------
328 :
329 0 : void MediaWindow::executeFormatErrorBox( Window* pParent )
330 : {
331 0 : ErrorBox aErrBox( pParent, AVMEDIA_RESID( AVMEDIA_ERR_URL ) );
332 :
333 0 : aErrBox.Execute();
334 0 : }
335 :
336 : // -------------------------------------------------------------------------
337 :
338 0 : bool MediaWindow::isMediaURL( const OUString& rURL, bool bDeep, Size* pPreferredSizePixel )
339 : {
340 0 : const INetURLObject aURL( rURL );
341 0 : bool bRet = false;
342 :
343 0 : if( aURL.GetProtocol() != INET_PROT_NOT_VALID )
344 : {
345 0 : if( bDeep || pPreferredSizePixel )
346 : {
347 : try
348 : {
349 : uno::Reference< media::XPlayer > xPlayer( priv::MediaWindowImpl::createPlayer(
350 0 : aURL.GetMainURL( INetURLObject::DECODE_UNAMBIGUOUS ) ) );
351 :
352 0 : if( xPlayer.is() )
353 : {
354 0 : bRet = true;
355 :
356 0 : if( pPreferredSizePixel )
357 : {
358 0 : const awt::Size aAwtSize( xPlayer->getPreferredPlayerWindowSize() );
359 :
360 0 : pPreferredSizePixel->Width() = aAwtSize.Width;
361 0 : pPreferredSizePixel->Height() = aAwtSize.Height;
362 : }
363 0 : }
364 : }
365 0 : catch( ... )
366 : {
367 0 : }
368 : }
369 : else
370 : {
371 0 : FilterNameVector aFilters;
372 0 : const OUString aExt( aURL.getExtension() );
373 :
374 0 : getMediaFilters( aFilters );
375 :
376 : unsigned int i;
377 0 : for( i = 0; ( i < aFilters.size() ) && !bRet; ++i )
378 : {
379 0 : for( sal_Int32 nIndex = 0; nIndex >= 0 && !bRet; )
380 : {
381 0 : if( aExt.equalsIgnoreAsciiCase( aFilters[ i ].second.getToken( 0, ';', nIndex ) ) )
382 0 : bRet = true;
383 : }
384 0 : }
385 : }
386 : }
387 :
388 0 : return bRet;
389 : }
390 :
391 : // -------------------------------------------------------------------------
392 :
393 0 : uno::Reference< media::XPlayer > MediaWindow::createPlayer( const OUString& rURL )
394 : {
395 0 : return priv::MediaWindowImpl::createPlayer( rURL );
396 : }
397 :
398 : // -------------------------------------------------------------------------
399 :
400 0 : uno::Reference< graphic::XGraphic > MediaWindow::grabFrame( const OUString& rURL,
401 : bool bAllowToCreateReplacementGraphic,
402 : double fMediaTime )
403 : {
404 0 : uno::Reference< media::XPlayer > xPlayer( createPlayer( rURL ) );
405 0 : uno::Reference< graphic::XGraphic > xRet;
406 0 : ::std::auto_ptr< Graphic > apGraphic;
407 :
408 0 : if( xPlayer.is() )
409 : {
410 0 : uno::Reference< media::XFrameGrabber > xGrabber( xPlayer->createFrameGrabber() );
411 :
412 0 : if( xGrabber.is() )
413 : {
414 0 : if( AVMEDIA_FRAMEGRABBER_DEFAULTFRAME == fMediaTime )
415 0 : fMediaTime = AVMEDIA_FRAMEGRABBER_DEFAULTFRAME_MEDIATIME;
416 :
417 0 : if( fMediaTime >= xPlayer->getDuration() )
418 0 : fMediaTime = ( xPlayer->getDuration() * 0.5 );
419 :
420 0 : xRet = xGrabber->grabFrame( fMediaTime );
421 : }
422 :
423 0 : if( !xRet.is() && bAllowToCreateReplacementGraphic )
424 : {
425 0 : awt::Size aPrefSize( xPlayer->getPreferredPlayerWindowSize() );
426 :
427 0 : if( !aPrefSize.Width && !aPrefSize.Height )
428 : {
429 0 : const BitmapEx aBmpEx( AVMEDIA_RESID( AVMEDIA_BMP_AUDIOLOGO ) );
430 0 : apGraphic.reset( new Graphic( aBmpEx ) );
431 : }
432 0 : }
433 : }
434 :
435 0 : if( !xRet.is() && !apGraphic.get() && bAllowToCreateReplacementGraphic )
436 : {
437 0 : const BitmapEx aBmpEx( AVMEDIA_RESID( AVMEDIA_BMP_EMPTYLOGO ) );
438 0 : apGraphic.reset( new Graphic( aBmpEx ) );
439 : }
440 :
441 0 : if( apGraphic.get() )
442 0 : xRet = apGraphic->GetXGraphic();
443 :
444 0 : return xRet;
445 : }
446 :
447 : } // namespace avemdia
448 :
449 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|