]> git.sesse.net Git - vlc/blob - projects/mozilla/vlcplugin.cpp
mozilla: really fix compilation (and check the return code).
[vlc] / projects / mozilla / vlcplugin.cpp
1 /*****************************************************************************
2  * vlcplugin.cpp: a VLC plugin for Mozilla
3  *****************************************************************************
4  * Copyright (C) 2002-2009 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *          Damien Fouilleul <damienf.fouilleul@laposte.net>
9  *          Jean-Paul Saman <jpsaman@videolan.org>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29 #include "config.h"
30
31 #ifdef HAVE_MOZILLA_CONFIG_H
32 #   include <mozilla-config.h>
33 #endif
34
35 #include "vlcplugin.h"
36 #include "control/npolibvlc.h"
37
38 #include <ctype.h>
39 #include <pthread.h>
40 #include <stdio.h>
41
42 /*****************************************************************************
43  * VlcPlugin constructor and destructor
44  *****************************************************************************/
45 VlcPlugin::VlcPlugin( NPP instance, uint16 mode ) :
46     i_npmode(mode),
47     b_stream(0),
48     b_autoplay(1),
49     b_toolbar(0),
50     psz_text(NULL),
51     psz_target(NULL),
52     playlist_index(-1),
53     libvlc_instance(NULL),
54     libvlc_media_list(NULL),
55     libvlc_media_player(NULL),
56     p_scriptClass(NULL),
57     p_browser(instance),
58     psz_baseURL(NULL)
59 #if defined(XP_WIN)
60     ,pf_wndproc(NULL)
61 #endif
62 #if defined(XP_UNIX)
63     ,i_width((unsigned)-1)
64     ,i_height((unsigned)-1)
65     ,i_tb_width(0)
66     ,i_tb_height(0)
67     ,i_last_position(0)
68     ,p_btnPlay(NULL)
69     ,p_btnPause(NULL)
70     ,p_btnStop(NULL)
71     ,p_btnMute(NULL)
72     ,p_btnUnmute(NULL)
73     ,p_btnFullscreen(NULL)
74     ,p_btnTime(NULL)
75     ,p_timeline(NULL)
76 #endif
77 {
78     memset(&npwindow, 0, sizeof(NPWindow));
79 #if defined(XP_UNIX)
80     memset(&npvideo, 0, sizeof(Window));
81     memset(&npcontrol, 0, sizeof(Window));
82 #endif
83 }
84
85 static bool boolValue(const char *value) {
86     return ( !strcmp(value, "1") ||
87              !strcasecmp(value, "true") ||
88              !strcasecmp(value, "yes") );
89 }
90
91
92 void EventObj::deliver(NPP browser)
93 {
94     NPVariant result;
95     NPVariant params[1];
96
97     pthread_mutex_lock(&mutex);
98
99     for( ev_l::iterator i=_elist.begin();i!=_elist.end();++i )
100     {
101         libvlc_event_type_t event = *i;
102         STRINGZ_TO_NPVARIANT(libvlc_event_type_name(event), params[0]);
103
104         // Invalid events aren't supposed to be queued up.
105         // if( !have_event(event) ) continue;
106
107         for( lr_l::iterator j=_llist.begin();j!=_llist.end();++j )
108         {
109             if (j->get(event))
110             {
111                 NPN_InvokeDefault(browser, j->listener(), params, 1, &result);
112                 NPN_ReleaseVariantValue(&result);
113             }
114         }
115     }
116     _elist.clear();
117
118     pthread_mutex_unlock(&mutex);
119 }
120
121 void VlcPlugin::eventAsync(void *param)
122 {
123     VlcPlugin *plugin = (VlcPlugin*)param;
124     plugin->events.deliver(plugin->getBrowser());
125 }
126
127 void EventObj::callback(const libvlc_event_t* event)
128 {
129     pthread_mutex_lock(&mutex);
130
131     if( have_event(event->type) )
132         _elist.push_back(event->type);
133
134     pthread_mutex_unlock(&mutex);
135 }
136
137 void VlcPlugin::event_callback(const libvlc_event_t* event, void *param)
138 {
139     VlcPlugin *plugin = (VlcPlugin*)param;
140 #ifdef XP_UNIX
141     plugin->events.callback(event);
142     NPN_PluginThreadAsyncCall(plugin->getBrowser(), eventAsync, plugin);
143 #else
144 #warning NPN_PluginThreadAsyncCall not implemented yet.
145     printf("%s","No NPN_PluginThreadAsyncCall(), doing nothing.");
146 #endif
147 }
148
149 inline EventObj::event_t EventObj::find_event(const char *s) const
150 {
151     event_t i;
152     for(i=0;i<maxbit();++i)
153         if(!strcmp(s,libvlc_event_type_name(i)))
154             break;
155     return i;
156 }
157
158 bool EventObj::insert(const NPString &s, NPObject *l, bool b)
159 {
160     event_t e = find_event(s.utf8characters);
161     if( e>=maxbit() )
162         return false;
163
164     if( !have_event(e) && !ask_for_event(e) )
165         return false;
166
167     lr_l::iterator i;
168     for(i=_llist.begin();i!=_llist.end();++i)
169         if(i->listener()==l && i->bubble()==b)
170             break;
171
172     if( i == _llist.end() ) {
173         _llist.push_back(Listener(e,l,b));
174     } else {
175         if( i->get(e) )
176             return false;
177         i->get(e);
178     }
179 }
180
181
182 bool EventObj::remove(const NPString &s, NPObject *l, bool b)
183 {
184     event_t e = find_event(s.utf8characters);
185     if( e>=maxbit() || !get(e) )
186         return false;
187
188     bool any=false;
189     for(lr_l::iterator i=_llist.begin();i!=_llist.end();)
190     {
191         if(i->listener()!=l || i->bubble()!=b)
192             any|=i->get(e);
193         else
194         {
195             i->reset(e);
196             if(i->empty())
197             {
198                 i=_llist.erase(i);
199                 continue;
200             }
201         }
202         ++i;
203     }
204     if(!any)
205         unask_for_event(e);
206 }
207
208
209 void EventObj::hook_manager(libvlc_event_manager_t *em,
210                             libvlc_callback_t cb, void *udata)
211 {
212     _em = em; _cb = cb; _ud = udata;
213     if( !_em )
214         return;
215     for(size_t i=0;i<maxbit();++i)
216         if(get(i))
217             libvlc_event_attach(_em, i, _cb, _ud);
218 }
219
220 void EventObj::unhook_manager()
221 {
222     if( !_em )
223     return;
224     for(size_t i=0;i<maxbit();++i)
225         if(get(i))
226             libvlc_event_detach(_em, i, _cb, _ud);
227 }
228
229
230 bool EventObj::ask_for_event(event_t e)
231 {
232     return _em?0==libvlc_event_attach(_em, e, _cb, _ud):false;
233 }
234
235
236 void EventObj::unask_for_event(event_t e)
237 {
238     if(_em) libvlc_event_detach(_em, e, _cb, _ud);
239 }
240
241
242 NPError VlcPlugin::init(int argc, char* const argn[], char* const argv[])
243 {
244     /* prepare VLC command line */
245     const char *ppsz_argv[32];
246     int ppsz_argc = 0;
247
248 #ifndef NDEBUG
249     ppsz_argv[ppsz_argc++] = "--no-plugins-cache";
250 #endif
251
252     /* locate VLC module path */
253 #ifdef XP_MACOSX
254     ppsz_argv[ppsz_argc++] = "--plugin-path=/Library/Internet\\ Plug-Ins/VLC\\ Plugin.plugin/Contents/MacOS/modules";
255     ppsz_argv[ppsz_argc++] = "--vout=minimal_macosx";
256 #elif defined(XP_WIN)
257     HKEY h_key;
258     DWORD i_type, i_data = MAX_PATH + 1;
259     char p_data[MAX_PATH + 1];
260     if( RegOpenKeyEx( HKEY_LOCAL_MACHINE, "Software\\VideoLAN\\VLC",
261                       0, KEY_READ, &h_key ) == ERROR_SUCCESS )
262     {
263          if( RegQueryValueEx( h_key, "InstallDir", 0, &i_type,
264                               (LPBYTE)p_data, &i_data ) == ERROR_SUCCESS )
265          {
266              if( i_type == REG_SZ )
267              {
268                  strcat( p_data, "\\plugins" );
269                  ppsz_argv[ppsz_argc++] = "--plugin-path";
270                  ppsz_argv[ppsz_argc++] = p_data;
271              }
272          }
273          RegCloseKey( h_key );
274     }
275     ppsz_argv[ppsz_argc++] = "--no-one-instance";
276
277 #endif /* XP_MACOSX */
278
279     /* common settings */
280     ppsz_argv[ppsz_argc++] = "-vv";
281     ppsz_argv[ppsz_argc++] = "--no-stats";
282     ppsz_argv[ppsz_argc++] = "--no-media-library";
283     ppsz_argv[ppsz_argc++] = "--intf=dummy";
284     ppsz_argv[ppsz_argc++] = "--no-video-title-show";
285
286     const char *progid = NULL;
287
288     /* parse plugin arguments */
289     for( int i = 0; (i < argc) && (ppsz_argc < 32); i++ )
290     {
291        /* fprintf(stderr, "argn=%s, argv=%s\n", argn[i], argv[i]); */
292
293         if( !strcmp( argn[i], "target" )
294          || !strcmp( argn[i], "mrl")
295          || !strcmp( argn[i], "filename")
296          || !strcmp( argn[i], "src") )
297         {
298             psz_target = argv[i];
299         }
300         else if( !strcmp( argn[i], "text" ) )
301         {
302             free( psz_text );
303             psz_text = strdup( argv[i] );
304         }
305         else if( !strcmp( argn[i], "autoplay")
306               || !strcmp( argn[i], "autostart") )
307         {
308             b_autoplay = boolValue(argv[i]);
309         }
310         else if( !strcmp( argn[i], "fullscreen" ) )
311         {
312             if( boolValue(argv[i]) )
313             {
314                 ppsz_argv[ppsz_argc++] = "--fullscreen";
315             }
316             else
317             {
318                 ppsz_argv[ppsz_argc++] = "--no-fullscreen";
319             }
320         }
321         else if( !strcmp( argn[i], "mute" ) )
322         {
323             if( boolValue(argv[i]) )
324             {
325                 ppsz_argv[ppsz_argc++] = "--volume=0";
326             }
327         }
328         else if( !strcmp( argn[i], "loop")
329               || !strcmp( argn[i], "autoloop") )
330         {
331             if( boolValue(argv[i]) )
332             {
333                 ppsz_argv[ppsz_argc++] = "--loop";
334             }
335             else
336             {
337                 ppsz_argv[ppsz_argc++] = "--no-loop";
338             }
339         }
340         else if( !strcmp( argn[i], "version")
341               || !strcmp( argn[i], "progid") )
342         {
343             progid = argv[i];
344         }
345         else if( !strcmp( argn[i], "toolbar" ) )
346         {
347 /* FIXME: Remove this when toolbar functionality has been implemented on
348  * MacOS X and Win32 for Firefox/Mozilla/Safari. */
349 #ifdef XP_UNIX
350             b_toolbar = boolValue(argv[i]);
351 #endif
352         }
353     }
354
355     libvlc_instance = libvlc_new(ppsz_argc, ppsz_argv);
356     if( !libvlc_instance )
357         return NPERR_GENERIC_ERROR;
358     libvlc_media_list = libvlc_media_list_new(libvlc_instance);
359
360     /*
361     ** fetch plugin base URL, which is the URL of the page containing the plugin
362     ** this URL is used for making absolute URL from relative URL that may be
363     ** passed as an MRL argument
364     */
365     NPObject *plugin = NULL;
366
367     if( NPERR_NO_ERROR == NPN_GetValue(p_browser, NPNVWindowNPObject, &plugin) )
368     {
369         /*
370         ** is there a better way to get that info ?
371         */
372         static const char docLocHref[] = "document.location.href";
373         NPString script;
374         NPVariant result;
375
376         script.utf8characters = docLocHref;
377         script.utf8length = sizeof(docLocHref)-1;
378
379         if( NPN_Evaluate(p_browser, plugin, &script, &result) )
380         {
381             if( NPVARIANT_IS_STRING(result) )
382             {
383                 NPString &location = NPVARIANT_TO_STRING(result);
384
385                 psz_baseURL = (char *) malloc(location.utf8length+1);
386                 if( psz_baseURL )
387                 {
388                     strncpy(psz_baseURL, location.utf8characters, location.utf8length);
389                     psz_baseURL[location.utf8length] = '\0';
390                 }
391             }
392             NPN_ReleaseVariantValue(&result);
393         }
394         NPN_ReleaseObject(plugin);
395     }
396
397     if( psz_target )
398     {
399         // get absolute URL from src
400         char *psz_absurl = getAbsoluteURL(psz_target);
401         psz_target = psz_absurl ? psz_absurl : strdup(psz_target);
402     }
403
404     /* assign plugin script root class */
405     /* new APIs */
406     p_scriptClass = RuntimeNPClass<LibvlcRootNPObject>::getClass();
407
408     if( !events.init() )
409         return NPERR_GENERIC_ERROR;
410
411     return NPERR_NO_ERROR;
412 }
413
414 VlcPlugin::~VlcPlugin()
415 {
416     free(psz_baseURL);
417     free(psz_target);
418     free(psz_text);
419
420     if( libvlc_media_player )
421     {
422         events.unhook_manager();
423         libvlc_media_player_release( libvlc_media_player );
424     }
425     if( libvlc_media_list )
426         libvlc_media_list_release( libvlc_media_list );
427     if( libvlc_instance )
428         libvlc_release(libvlc_instance);
429 }
430
431 /*****************************************************************************
432  * VlcPlugin playlist replacement methods
433  *****************************************************************************/
434 void VlcPlugin::set_player_window()
435 {
436 #ifdef XP_UNIX
437     libvlc_media_player_set_xwindow(libvlc_media_player,
438                                     (libvlc_drawable_t)getVideoWindow());
439 #endif
440 #ifdef XP_MACOSX
441     // XXX FIXME insert appropriate call here
442 #endif
443 #ifdef XP_WIN
444     libvlc_media_player_set_hwnd(libvlc_media_player,
445                                  getWindow().window);
446 #endif
447 }
448
449 int VlcPlugin::playlist_add( const char *mrl, libvlc_exception_t *ex )
450 {
451     int item = -1;
452     libvlc_media_t *p_m = libvlc_media_new(libvlc_instance,mrl,ex);
453     if( libvlc_exception_raised(ex) )
454         return -1;
455
456     libvlc_media_list_lock(libvlc_media_list);
457     libvlc_media_list_add_media(libvlc_media_list,p_m,ex);
458     if( !libvlc_exception_raised(ex) )
459         item = libvlc_media_list_count(libvlc_media_list)-1;
460     libvlc_media_list_unlock(libvlc_media_list);
461
462     libvlc_media_release(p_m);
463
464     return item;
465 }
466
467 int VlcPlugin::playlist_add_extended_untrusted( const char *mrl, const char *name,
468                     int optc, const char **optv, libvlc_exception_t *ex )
469 {
470     libvlc_media_t *p_m = libvlc_media_new(libvlc_instance, mrl,ex);
471     int item = -1;
472     if( libvlc_exception_raised(ex) )
473         return -1;
474
475     for( int i = 0; i < optc; ++i )
476         libvlc_media_add_option_flag(p_m, optv[i], libvlc_media_option_unique);
477
478     libvlc_media_list_lock(libvlc_media_list);
479     libvlc_media_list_add_media(libvlc_media_list,p_m,ex);
480     if( !libvlc_exception_raised(ex) )
481         item = libvlc_media_list_count(libvlc_media_list)-1;
482     libvlc_media_list_unlock(libvlc_media_list);
483     libvlc_media_release(p_m);
484
485     return item;
486 }
487
488 bool VlcPlugin::playlist_select( int idx, libvlc_exception_t *ex )
489 {
490     libvlc_media_t *p_m = NULL;
491
492     libvlc_media_list_lock(libvlc_media_list);
493
494     int count = libvlc_media_list_count(libvlc_media_list);
495
496     if( idx<0||idx>=count )
497         goto bad_unlock;
498
499     playlist_index = idx;
500
501     p_m = libvlc_media_list_item_at_index(libvlc_media_list,playlist_index,ex);
502     libvlc_media_list_unlock(libvlc_media_list);
503
504     if( libvlc_exception_raised(ex) )
505         return false;
506
507     if( libvlc_media_player )
508     {
509         events.unhook_manager();
510         libvlc_media_player_release( libvlc_media_player );
511         libvlc_media_player = NULL;
512     }
513
514     libvlc_media_player = libvlc_media_player_new_from_media(p_m);
515     if( libvlc_media_player )
516     {
517         set_player_window();
518         events.hook_manager(
519                       libvlc_media_player_event_manager(libvlc_media_player),
520                       event_callback, this);
521     }
522
523     libvlc_media_release( p_m );
524     return true;
525
526 bad_unlock:
527     libvlc_media_list_unlock(libvlc_media_list);
528     return false;
529 }
530
531 void VlcPlugin::playlist_delete_item( int idx, libvlc_exception_t *ex )
532 {
533     libvlc_media_list_lock(libvlc_media_list);
534     libvlc_media_list_remove_index(libvlc_media_list,idx,ex);
535     libvlc_media_list_unlock(libvlc_media_list);
536 }
537
538 void VlcPlugin::playlist_clear( libvlc_exception_t *ex )
539 {
540     if( libvlc_media_list )
541         libvlc_media_list_release(libvlc_media_list);
542     libvlc_media_list = libvlc_media_list_new(getVLC());
543 }
544
545 int VlcPlugin::playlist_count()
546 {
547     int items_count = 0;
548     libvlc_media_list_lock(libvlc_media_list);
549     items_count = libvlc_media_list_count(libvlc_media_list);
550     libvlc_media_list_unlock(libvlc_media_list);
551     return items_count;
552 }
553
554 void VlcPlugin::toggle_fullscreen( libvlc_exception_t *ex )
555 {
556     if( playlist_isplaying() )
557         libvlc_toggle_fullscreen(libvlc_media_player,ex);
558 }
559 void VlcPlugin::set_fullscreen( int yes, libvlc_exception_t *ex )
560 {
561     if( playlist_isplaying() )
562         libvlc_set_fullscreen(libvlc_media_player,yes,ex);
563 }
564 int  VlcPlugin::get_fullscreen( libvlc_exception_t *ex )
565 {
566     int r = 0;
567     if( playlist_isplaying() )
568         r = libvlc_get_fullscreen(libvlc_media_player,ex);
569     return r;
570 }
571
572 bool  VlcPlugin::player_has_vout( libvlc_exception_t *ex )
573 {
574     bool r = false;
575     if( playlist_isplaying() )
576         r = libvlc_media_player_has_vout(libvlc_media_player);
577     return r;
578 }
579
580 /*****************************************************************************
581  * VlcPlugin methods
582  *****************************************************************************/
583
584 char *VlcPlugin::getAbsoluteURL(const char *url)
585 {
586     if( NULL != url )
587     {
588         // check whether URL is already absolute
589         const char *end=strchr(url, ':');
590         if( (NULL != end) && (end != url) )
591         {
592             // validate protocol header
593             const char *start = url;
594             char c = *start;
595             if( isalpha(c) )
596             {
597                 ++start;
598                 while( start != end )
599                 {
600                     c  = *start;
601                     if( ! (isalnum(c)
602                        || ('-' == c)
603                        || ('+' == c)
604                        || ('.' == c)
605                        || ('/' == c)) ) /* VLC uses / to allow user to specify a demuxer */
606                         // not valid protocol header, assume relative URL
607                         goto relativeurl;
608                     ++start;
609                 }
610                 /* we have a protocol header, therefore URL is absolute */
611                 return strdup(url);
612             }
613             // not a valid protocol header, assume relative URL
614         }
615
616 relativeurl:
617
618         if( psz_baseURL )
619         {
620             size_t baseLen = strlen(psz_baseURL);
621             char *href = (char *) malloc(baseLen+strlen(url)+1);
622             if( href )
623             {
624                 /* prepend base URL */
625                 memcpy(href, psz_baseURL, baseLen+1);
626
627                 /*
628                 ** relative url could be empty,
629                 ** in which case return base URL
630                 */
631                 if( '\0' == *url )
632                     return href;
633
634                 /*
635                 ** locate pathname part of base URL
636                 */
637
638                 /* skip over protocol part  */
639                 char *pathstart = strchr(href, ':');
640                 char *pathend = href+baseLen;
641                 if( pathstart )
642                 {
643                     if( '/' == *(++pathstart) )
644                     {
645                         if( '/' == *(++pathstart) )
646                         {
647                             ++pathstart;
648                         }
649                     }
650                     /* skip over host part */
651                     pathstart = strchr(pathstart, '/');
652                     if( ! pathstart )
653                     {
654                         // no path, add a / past end of url (over '\0')
655                         pathstart = pathend;
656                         *pathstart = '/';
657                     }
658                 }
659                 else
660                 {
661                     /* baseURL is just a UNIX path */
662                     if( '/' != *href )
663                     {
664                         /* baseURL is not an absolute path */
665                         free(href);
666                         return NULL;
667                     }
668                     pathstart = href;
669                 }
670
671                 /* relative URL made of an absolute path ? */
672                 if( '/' == *url )
673                 {
674                     /* replace path completely */
675                     strcpy(pathstart, url);
676                     return href;
677                 }
678
679                 /* find last path component and replace it */
680                 while( '/' != *pathend)
681                     --pathend;
682
683                 /*
684                 ** if relative url path starts with one or more '../',
685                 ** factor them out of href so that we return a
686                 ** normalized URL
687                 */
688                 while( pathend != pathstart )
689                 {
690                     const char *p = url;
691                     if( '.' != *p )
692                         break;
693                     ++p;
694                     if( '\0' == *p  )
695                     {
696                         /* relative url is just '.' */
697                         url = p;
698                         break;
699                     }
700                     if( '/' == *p  )
701                     {
702                         /* relative url starts with './' */
703                         url = ++p;
704                         continue;
705                     }
706                     if( '.' != *p )
707                         break;
708                     ++p;
709                     if( '\0' == *p )
710                     {
711                         /* relative url is '..' */
712                     }
713                     else
714                     {
715                         if( '/' != *p )
716                             break;
717                         /* relative url starts with '../' */
718                         ++p;
719                     }
720                     url = p;
721                     do
722                     {
723                         --pathend;
724                     }
725                     while( '/' != *pathend );
726                 }
727                 /* skip over '/' separator */
728                 ++pathend;
729                 /* concatenate remaining base URL and relative URL */
730                 strcpy(pathend, url);
731             }
732             return href;
733         }
734     }
735     return NULL;
736 }
737
738 #if defined(XP_UNIX)
739 int  VlcPlugin::setSize(unsigned width, unsigned height)
740 {
741     int diff = (width != i_width) || (height != i_height);
742
743     i_width = width;
744     i_height = height;
745
746     /* return size */
747     return diff;
748 }
749
750 #define BTN_SPACE ((unsigned int)4)
751 void VlcPlugin::showToolbar()
752 {
753     const NPWindow& window = getWindow();
754     Window control = getControlWindow();
755     Window video = getVideoWindow();
756     Display *p_display = ((NPSetWindowCallbackStruct *)window.ws_info)->display;
757     unsigned int i_height = 0, i_width = BTN_SPACE;
758
759     /* load icons */
760     if( !p_btnPlay )
761         XpmReadFileToImage( p_display, DATA_PATH "/mozilla/play.xpm",
762                             &p_btnPlay, NULL, NULL);
763     if( p_btnPlay )
764     {
765         i_height = __MAX( i_height, p_btnPlay->height );
766     }
767     if( !p_btnPause )
768         XpmReadFileToImage( p_display, DATA_PATH "/mozilla/pause.xpm",
769                             &p_btnPause, NULL, NULL);
770     if( p_btnPause )
771     {
772         i_height = __MAX( i_height, p_btnPause->height );
773     }
774     i_width += __MAX( p_btnPause->width, p_btnPlay->width );
775
776     if( !p_btnStop )
777         XpmReadFileToImage( p_display, DATA_PATH "/mozilla/stop.xpm",
778                             &p_btnStop, NULL, NULL );
779     if( p_btnStop )
780     {
781         i_height = __MAX( i_height, p_btnStop->height );
782         i_width += BTN_SPACE + p_btnStop->width;
783     }
784     if( !p_timeline )
785         XpmReadFileToImage( p_display, DATA_PATH "/mozilla/time_line.xpm",
786                             &p_timeline, NULL, NULL);
787     if( p_timeline )
788     {
789         i_height = __MAX( i_height, p_timeline->height );
790         i_width += BTN_SPACE + p_timeline->width;
791     }
792     if( !p_btnTime )
793         XpmReadFileToImage( p_display, DATA_PATH "/mozilla/time_icon.xpm",
794                             &p_btnTime, NULL, NULL);
795     if( p_btnTime )
796     {
797         i_height = __MAX( i_height, p_btnTime->height );
798         i_width += BTN_SPACE + p_btnTime->width;
799     }
800     if( !p_btnFullscreen )
801         XpmReadFileToImage( p_display, DATA_PATH "/mozilla/fullscreen.xpm",
802                             &p_btnFullscreen, NULL, NULL);
803     if( p_btnFullscreen )
804     {
805         i_height = __MAX( i_height, p_btnFullscreen->height );
806         i_width += BTN_SPACE + p_btnFullscreen->width;
807     }
808     if( !p_btnMute )
809         XpmReadFileToImage( p_display, DATA_PATH "/mozilla/volume_max.xpm",
810                             &p_btnMute, NULL, NULL);
811     if( p_btnMute )
812     {
813         i_height = __MAX( i_height, p_btnMute->height );
814     }
815     if( !p_btnUnmute )
816         XpmReadFileToImage( p_display, DATA_PATH "/mozilla/volume_mute.xpm",
817                             &p_btnUnmute, NULL, NULL);
818     if( p_btnUnmute )
819     {
820         i_height = __MAX( i_height, p_btnUnmute->height );
821     }
822     i_width += BTN_SPACE + __MAX( p_btnUnmute->width, p_btnMute->width );
823
824     setToolbarSize( i_width, i_height );
825
826     if( !p_btnPlay || !p_btnPause || !p_btnStop || !p_timeline ||
827         !p_btnTime || !p_btnFullscreen || !p_btnMute || !p_btnUnmute )
828         fprintf(stderr, "Error: some button images not found in %s\n", DATA_PATH );
829
830     /* reset panels position and size */
831     /* XXX  use i_width */
832     XResizeWindow( p_display, video, window.width, window.height - i_height);
833     XMoveWindow( p_display, control, 0, window.height - i_height );
834     XResizeWindow( p_display, control, window.width, i_height -1);
835
836     b_toolbar = 1; /* says toolbar is now shown */
837     redrawToolbar();
838 }
839
840 void VlcPlugin::hideToolbar()
841 {
842     const NPWindow& window = getWindow();
843     Display *p_display = ((NPSetWindowCallbackStruct *)window.ws_info)->display;
844     Window control = getControlWindow();
845     Window video = getVideoWindow();
846
847     i_tb_width = i_tb_height = 0;
848
849     if( p_btnPlay )  XDestroyImage( p_btnPlay );
850     if( p_btnPause ) XDestroyImage( p_btnPause );
851     if( p_btnStop )  XDestroyImage( p_btnStop );
852     if( p_timeline ) XDestroyImage( p_timeline );
853     if( p_btnTime )  XDestroyImage( p_btnTime );
854     if( p_btnFullscreen ) XDestroyImage( p_btnFullscreen );
855     if( p_btnMute )  XDestroyImage( p_btnMute );
856     if( p_btnUnmute ) XDestroyImage( p_btnUnmute );
857
858     p_btnPlay = NULL;
859     p_btnPause = NULL;
860     p_btnStop = NULL;
861     p_timeline = NULL;
862     p_btnTime = NULL;
863     p_btnFullscreen = NULL;
864     p_btnMute = NULL;
865     p_btnUnmute = NULL;
866
867     /* reset panels position and size */
868     /* XXX  use i_width */
869     XResizeWindow( p_display, video, window.width, window.height );
870     XMoveWindow( p_display, control, 0, window.height-1 );
871     XResizeWindow( p_display, control, window.width, 1 );
872
873     b_toolbar = 0; /* says toolbar is now hidden */
874     redrawToolbar();
875 }
876
877 void VlcPlugin::redrawToolbar()
878 {
879     int is_playing = 0;
880     bool b_mute = false;
881     unsigned int dst_x, dst_y;
882     GC gc;
883     XGCValues gcv;
884     unsigned int i_tb_width, i_tb_height;
885
886     /* This method does nothing if toolbar is hidden. */
887     if( !b_toolbar )
888         return;
889
890     const NPWindow& window = getWindow();
891     Window control = getControlWindow();
892     Display *p_display = ((NPSetWindowCallbackStruct *)window.ws_info)->display;
893
894     getToolbarSize( &i_tb_width, &i_tb_height );
895
896
897     /* get mute info */
898     b_mute = libvlc_audio_get_mute( libvlc_media_player );
899
900     gcv.foreground = BlackPixel( p_display, 0 );
901     gc = XCreateGC( p_display, control, GCForeground, &gcv );
902
903     XFillRectangle( p_display, control, gc,
904                     0, 0, window.width, i_tb_height );
905     gcv.foreground = WhitePixel( p_display, 0 );
906     XChangeGC( p_display, gc, GCForeground, &gcv );
907
908     /* position icons */
909     dst_x = BTN_SPACE;
910     dst_y = i_tb_height >> 1; /* baseline = vertical middle */
911
912     if( p_btnPause && (is_playing == 1) )
913     {
914         XPutImage( p_display, control, gc, p_btnPause, 0, 0, dst_x,
915                    dst_y - (p_btnPause->height >> 1),
916                    p_btnPause->width, p_btnPause->height );
917         dst_x += BTN_SPACE + p_btnPause->width;
918     }
919     else if( p_btnPlay )
920     {
921         XPutImage( p_display, control, gc, p_btnPlay, 0, 0, dst_x,
922                    dst_y - (p_btnPlay->height >> 1),
923                    p_btnPlay->width, p_btnPlay->height );
924         dst_x += BTN_SPACE + p_btnPlay->width;
925     }
926
927     if( p_btnStop )
928         XPutImage( p_display, control, gc, p_btnStop, 0, 0, dst_x,
929                    dst_y - (p_btnStop->height >> 1),
930                    p_btnStop->width, p_btnStop->height );
931
932     dst_x += BTN_SPACE + ( p_btnStop ? p_btnStop->width : 0 );
933
934     if( p_btnFullscreen )
935         XPutImage( p_display, control, gc, p_btnFullscreen, 0, 0, dst_x,
936                    dst_y - (p_btnFullscreen->height >> 1),
937                    p_btnFullscreen->width, p_btnFullscreen->height );
938
939     dst_x += BTN_SPACE + ( p_btnFullscreen ? p_btnFullscreen->width : 0 );
940
941     if( p_btnUnmute && b_mute )
942     {
943         XPutImage( p_display, control, gc, p_btnUnmute, 0, 0, dst_x,
944                    dst_y - (p_btnUnmute->height >> 1),
945                    p_btnUnmute->width, p_btnUnmute->height );
946
947         dst_x += BTN_SPACE + ( p_btnUnmute ? p_btnUnmute->width : 0 );
948     }
949     else if( p_btnMute )
950     {
951         XPutImage( p_display, control, gc, p_btnMute, 0, 0, dst_x,
952                    dst_y - (p_btnMute->height >> 1),
953                    p_btnMute->width, p_btnMute->height );
954
955         dst_x += BTN_SPACE + ( p_btnMute ? p_btnMute->width : 0 );
956     }
957
958     if( p_timeline )
959         XPutImage( p_display, control, gc, p_timeline, 0, 0, dst_x,
960                    dst_y - (p_timeline->height >> 1),
961                    (window.width-(dst_x+BTN_SPACE)), p_timeline->height );
962
963     /* get movie position in % */
964     if( playlist_isplaying() )
965     {
966         i_last_position = (int)((window.width-(dst_x+BTN_SPACE))*
967                    libvlc_media_player_get_position(libvlc_media_player));
968     }
969
970     if( p_btnTime )
971         XPutImage( p_display, control, gc, p_btnTime,
972                    0, 0, (dst_x+i_last_position),
973                    dst_y - (p_btnTime->height >> 1),
974                    p_btnTime->width, p_btnTime->height );
975
976     XFreeGC( p_display, gc );
977 }
978
979 vlc_toolbar_clicked_t VlcPlugin::getToolbarButtonClicked( int i_xpos, int i_ypos )
980 {
981     unsigned int i_dest = BTN_SPACE;
982     int is_playing = 0;
983     bool b_mute = false;
984
985 #ifndef NDEBUG
986     fprintf( stderr, "ToolbarButtonClicked:: "
987                      "trying to match (%d,%d) (%d,%d)\n",
988              i_xpos, i_ypos, i_tb_height, i_tb_width );
989 #endif
990     if( i_ypos >= i_tb_width )
991         return clicked_Unknown;
992
993     /* Note: the order of testing is dependend on the original
994      * drawing positions of the icon buttons. Buttons are tested
995      * left to right.
996      */
997
998     /* get isplaying */
999     is_playing = playlist_isplaying();
1000
1001     /* get mute info */
1002     b_mute = libvlc_audio_get_mute( libvlc_media_player );
1003
1004     /* is Pause of Play button clicked */
1005     if( (is_playing != 1) &&
1006         (i_xpos >= (BTN_SPACE>>1)) &&
1007         (i_xpos <= i_dest + p_btnPlay->width + (BTN_SPACE>>1)) )
1008         return clicked_Play;
1009     else if( (i_xpos >= (BTN_SPACE>>1))  &&
1010              (i_xpos <= i_dest + p_btnPause->width) )
1011         return clicked_Pause;
1012
1013     /* is Stop button clicked */
1014     if( is_playing != 1 )
1015         i_dest += (p_btnPlay->width + (BTN_SPACE>>1));
1016     else
1017         i_dest += (p_btnPause->width + (BTN_SPACE>>1));
1018
1019     if( (i_xpos >= i_dest) &&
1020         (i_xpos <= i_dest + p_btnStop->width + (BTN_SPACE>>1)) )
1021         return clicked_Stop;
1022
1023     /* is Fullscreen button clicked */
1024     i_dest += (p_btnStop->width + (BTN_SPACE>>1));
1025     if( (i_xpos >= i_dest) &&
1026         (i_xpos <= i_dest + p_btnFullscreen->width + (BTN_SPACE>>1)) )
1027         return clicked_Fullscreen;
1028
1029     /* is Mute or Unmute button clicked */
1030     i_dest += (p_btnFullscreen->width + (BTN_SPACE>>1));
1031     if( !b_mute && (i_xpos >= i_dest) &&
1032         (i_xpos <= i_dest + p_btnMute->width + (BTN_SPACE>>1)) )
1033         return clicked_Mute;
1034     else if( (i_xpos >= i_dest) &&
1035              (i_xpos <= i_dest + p_btnUnmute->width + (BTN_SPACE>>1)) )
1036         return clicked_Unmute;
1037
1038     /* is timeline clicked */
1039     if( !b_mute )
1040         i_dest += (p_btnMute->width + (BTN_SPACE>>1));
1041     else
1042         i_dest += (p_btnUnmute->width + (BTN_SPACE>>1));
1043     if( (i_xpos >= i_dest) &&
1044         (i_xpos <= i_dest + p_timeline->width + (BTN_SPACE>>1)) )
1045         return clicked_timeline;
1046
1047     /* is time button clicked */
1048     i_dest += (p_timeline->width + (BTN_SPACE>>1));
1049     if( (i_xpos >= i_dest) &&
1050         (i_xpos <= i_dest + p_btnTime->width + (BTN_SPACE>>1)) )
1051         return clicked_Time;
1052
1053     return clicked_Unknown;
1054 }
1055 #undef BTN_SPACE
1056 #endif
1057
1058 // Verifies the version of the NPAPI.
1059 // The eventListeners use a NPAPI function available
1060 // since Gecko 1.9.
1061 bool VlcPlugin::canUseEventListener()
1062 {
1063     int plugin_major, plugin_minor;
1064     int browser_major, browser_minor;
1065
1066     NPN_Version(&plugin_major, &plugin_minor,
1067                 &browser_major, &browser_minor);
1068
1069     if (browser_minor >= 19 || browser_major > 0)
1070         return true;
1071     return false;
1072 }
1073