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