]> git.sesse.net Git - vlc/blob - mozilla/vlcshell.cpp
NOTE: libvlc API changes
[vlc] / mozilla / vlcshell.cpp
1 /*****************************************************************************
2  * vlcshell.cpp: a VLC plugin for Mozilla
3  *****************************************************************************
4  * Copyright (C) 2002 VideoLAN
5  * $Id$
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /* XXX: disable VLC here */
25 #define USE_LIBVLC 1
26
27 /*****************************************************************************
28  * Preamble
29  *****************************************************************************/
30 #include "config.h"
31
32 #include <stdio.h>
33 #include <string.h>
34 #include <stdlib.h>
35
36 /* vlc stuff */
37 #ifdef USE_LIBVLC
38 #   include <vlc/vlc.h>
39 #endif
40
41 /* Mozilla stuff */
42 #ifdef HAVE_MOZILLA_CONFIG_H
43 #   include <mozilla-config.h>
44 #endif
45 #include <nsISupports.h>
46 #include <nsMemory.h>
47 #include <npapi.h>
48 #include <jri.h>
49
50 #if !defined(XP_MACOSX) && !defined(XP_UNIX) && !defined(XP_WIN)
51 #define XP_UNIX 1
52 #elif defined(XP_MACOSX)
53 #undef XP_UNIX
54 #endif
55
56 #ifdef XP_WIN
57     /* Windows stuff */
58 #endif
59
60 #ifdef XP_MACOSX
61     /* Mac OS X stuff */
62 #   include <Quickdraw.h>
63 #endif
64
65 #ifdef XP_UNIX
66     /* X11 stuff */
67 #   include <X11/Xlib.h>
68 #   include <X11/Intrinsic.h>
69 #   include <X11/StringDefs.h>
70 #endif
71
72 #include "vlcpeer.h"
73 #include "vlcplugin.h"
74
75 #if USE_LIBVLC
76 #   define WINDOW_TEXT "(no picture)"
77 #else
78 #   define WINDOW_TEXT "(no libvlc)"
79 #endif
80
81 /*****************************************************************************
82  * Unix-only declarations
83 ******************************************************************************/
84 #ifdef XP_UNIX
85 #   define VOUT_PLUGINS "xvideo,x11,dummy"
86 #   define AOUT_PLUGINS "oss,dummy"
87
88 static void Redraw( Widget w, XtPointer closure, XEvent *event );
89 #endif
90
91 /*****************************************************************************
92  * MacOS-only declarations
93 ******************************************************************************/
94 #ifdef XP_MACOSX
95 #   define VOUT_PLUGINS "macosx"
96 #   define AOUT_PLUGINS "macosx"
97
98 #endif
99
100 /*****************************************************************************
101  * Windows-only declarations
102  *****************************************************************************/
103 #ifdef XP_WIN
104 #   define VOUT_PLUGINS "directx,wingdi,dummy"
105 #   define AOUT_PLUGINS "directx,waveout,dummy"
106
107 #if defined(XP_WIN) && !USE_LIBVLC
108 LRESULT CALLBACK Manage( HWND, UINT, WPARAM, LPARAM );
109 #endif
110 #endif
111
112 /******************************************************************************
113  * UNIX-only API calls
114  *****************************************************************************/
115 char * NPP_GetMIMEDescription( void )
116 {
117     return PLUGIN_MIMETYPES;
118 }
119
120 NPError NPP_GetValue( NPP instance, NPPVariable variable, void *value )
121 {
122
123     static nsIID nsid = VLCINTF_IID;
124     static char psz_desc[1000];
125
126     switch( variable )
127     {
128         case NPPVpluginNameString:
129             *((char **)value) = PLUGIN_NAME;
130             return NPERR_NO_ERROR;
131
132         case NPPVpluginDescriptionString:
133 #if USE_LIBVLC
134             snprintf( psz_desc, 1000-1, PLUGIN_DESCRIPTION, VLC_Version() );
135 #else
136             snprintf( psz_desc, 1000-1, PLUGIN_DESCRIPTION, "(disabled)" );
137 #endif
138             psz_desc[1000-1] = 0;
139             *((char **)value) = psz_desc;
140             return NPERR_NO_ERROR;
141
142         default:
143             /* go on... */
144             break;
145     }
146
147     if( instance == NULL )
148     {
149         return NPERR_INVALID_INSTANCE_ERROR;
150     }
151
152     VlcPlugin* p_plugin = (VlcPlugin*) instance->pdata;
153
154     switch( variable )
155     {
156         case NPPVpluginScriptableInstance:
157             *(nsISupports**)value = p_plugin->GetPeer();
158             if( *(nsISupports**)value == NULL )
159             {
160                 return NPERR_OUT_OF_MEMORY_ERROR;
161             }
162             break;
163
164         case NPPVpluginScriptableIID:
165             *(nsIID**)value = (nsIID*)NPN_MemAlloc( sizeof(nsIID) );
166             if( *(nsIID**)value == NULL )
167             {
168                 return NPERR_OUT_OF_MEMORY_ERROR;
169             }
170             **(nsIID**)value = nsid;
171             break;
172
173         default:
174             return NPERR_GENERIC_ERROR;
175     }
176
177     return NPERR_NO_ERROR;
178 }
179
180 /******************************************************************************
181  * Mac-only API calls
182  *****************************************************************************/
183 #ifdef XP_MACOSX
184 int16 NPP_HandleEvent( NPP instance, void * event )
185 {
186     VlcPlugin *p_plugin = (VlcPlugin*)instance->pdata;
187     vlc_value_t value;
188
189     if( instance == NULL )
190     {
191         return false;
192     }
193
194     EventRecord *pouetEvent = (EventRecord*)event;
195
196     if (pouetEvent->what == 6)
197     {
198         value.i_int = 1;
199         VLC_Set( p_plugin->i_vlc, "drawableredraw", value );
200         return true;
201     }
202
203     Boolean eventHandled = false;
204
205     return eventHandled;
206 }
207 #endif
208
209 /******************************************************************************
210  * General Plug-in Calls
211  *****************************************************************************/
212 NPError NPP_Initialize( void )
213 {
214     return NPERR_NO_ERROR;
215 }
216
217 jref NPP_GetJavaClass( void )
218 {
219     return NULL;
220 }
221
222 void NPP_Shutdown( void )
223 {
224     ;
225 }
226
227 NPError NPP_New( NPMIMEType pluginType, NPP instance, uint16 mode, int16 argc,
228                  char* argn[], char* argv[], NPSavedData* saved )
229 {
230     int i;
231
232 #if USE_LIBVLC
233     vlc_value_t value;
234     int i_ret;
235
236 #endif
237
238     if( instance == NULL )
239     {
240         return NPERR_INVALID_INSTANCE_ERROR;
241     }
242
243     VlcPlugin * p_plugin = new VlcPlugin( instance );
244
245     if( p_plugin == NULL )
246     {
247         return NPERR_OUT_OF_MEMORY_ERROR;
248     }
249
250     instance->pdata = p_plugin;
251
252 #ifdef XP_WIN
253     p_plugin->p_hwnd = NULL;
254     p_plugin->pf_wndproc = NULL;
255 #endif
256
257 #ifdef XP_UNIX
258     p_plugin->window = 0;
259     p_plugin->p_display = NULL;
260 #endif
261
262     p_plugin->p_npwin = NULL;
263     p_plugin->i_npmode = mode;
264     p_plugin->i_width = 0;
265     p_plugin->i_height = 0;
266
267 #if USE_LIBVLC
268     p_plugin->i_vlc = VLC_Create();
269     if( p_plugin->i_vlc < 0 )
270     {
271         p_plugin->i_vlc = 0;
272         delete p_plugin;
273         p_plugin = NULL;
274         return NPERR_GENERIC_ERROR;
275     }
276
277     {
278 #ifdef XP_MACOSX
279         char *home_user;
280         char *directory;
281         char *plugin_path;
282         char *ppsz_argv[] = { "vlc", "--plugin-path", NULL };
283
284         home_user = strdup( getenv("HOME") );
285         directory = strdup( "/Library/Internet Plug-Ins/VLC Plugin.plugin/"
286                             "Contents/MacOS/modules" );
287         plugin_path = malloc( strlen( directory ) + strlen( home_user ) );
288         memcpy( plugin_path , home_user , strlen(home_user) );
289         memcpy( plugin_path + strlen( home_user ) , directory ,
290                 strlen( directory ) );
291
292         ppsz_argv[2] = plugin_path;
293
294 #elif defined(XP_WIN)
295         char *ppsz_argv[] = { NULL, "-vv" };
296         HKEY h_key;
297         DWORD i_type, i_data = MAX_PATH + 1;
298         char p_data[MAX_PATH + 1];
299         if( RegOpenKeyEx( HKEY_LOCAL_MACHINE, "Software\\VideoLAN\\VLC",
300                           0, KEY_READ, &h_key ) == ERROR_SUCCESS )
301         {
302              if( RegQueryValueEx( h_key, "InstallDir", 0, &i_type,
303                                   (LPBYTE)p_data, &i_data ) == ERROR_SUCCESS )
304              {
305                  if( i_type == REG_SZ )
306                  {
307                      strcat( p_data, "\\vlc" );
308                      ppsz_argv[0] = p_data;
309                  }
310              }
311              RegCloseKey( h_key );
312         }
313
314         if( !ppsz_argv[0] ) ppsz_argv[0] = "vlc";
315
316 #else
317         char *ppsz_argv[] =
318         {
319             "vlc"
320             /*, "--plugin-path", "/home/sam/videolan/vlc_MAIN/plugins"*/
321         };
322
323 #endif
324
325         i_ret = VLC_Init( p_plugin->i_vlc, sizeof(ppsz_argv)/sizeof(char*),
326                           ppsz_argv );
327
328 #ifdef XP_MACOSX
329         free( home_user );
330         free( directory );
331         free( plugin_path );
332 #endif
333     }
334
335     if( i_ret )
336     {
337         VLC_Destroy( p_plugin->i_vlc );
338         p_plugin->i_vlc = 0;
339         delete p_plugin;
340         p_plugin = NULL;
341         return NPERR_GENERIC_ERROR;
342     }
343
344     value.psz_string = "dummy";
345     VLC_Set( p_plugin->i_vlc, "conf::intf", value );
346     value.psz_string = VOUT_PLUGINS;
347     VLC_Set( p_plugin->i_vlc, "conf::vout", value );
348     value.psz_string = AOUT_PLUGINS;
349     VLC_Set( p_plugin->i_vlc, "conf::aout", value );
350
351 #else
352     p_plugin->i_vlc = 1;
353
354 #endif /* USE_LIBVLC */
355
356     p_plugin->b_stream = VLC_FALSE;
357     p_plugin->b_autoplay = VLC_FALSE;
358     p_plugin->psz_target = NULL;
359
360     for( i = 0; i < argc ; i++ )
361     {
362         if( !strcmp( argn[i], "target" ) )
363         {
364             p_plugin->psz_target = argv[i];
365         }
366         else if( !strcmp( argn[i], "autoplay" ) )
367         {
368             if( !strcmp( argv[i], "yes" ) )
369             {
370                 p_plugin->b_autoplay = 1;
371             }
372         }
373         else if( !strcmp( argn[i], "autostart" ) )
374         {
375             if( !strcmp( argv[i], "1" ) || !strcmp( argv[i], "true" ) )
376             {
377                 p_plugin->b_autoplay = 1;
378             }
379         }
380         else if( !strcmp( argn[i], "filename" ) )
381         {
382             p_plugin->psz_target = argv[i];
383         }
384         else if( !strcmp( argn[i], "src" ) )
385         {
386             p_plugin->psz_target = argv[i];
387         }
388
389 #if USE_LIBVLC
390         else if( !strcmp( argn[i], "loop" ) )
391         {
392             if( !strcmp( argv[i], "yes" ) )
393             {
394                 value.b_bool = VLC_TRUE;
395                 VLC_Set( p_plugin->i_vlc, "conf::loop", value );
396             }
397         }
398         else if( !strcmp( argn[i], "fullscreen" ) )
399         {
400             if( !strcmp( argv[i], "yes" ) )
401             {
402                 value.b_bool = VLC_TRUE;
403                 VLC_Set( p_plugin->i_vlc, "conf::fullscreen", value );
404             }
405         }
406 #endif
407     }
408
409     if( p_plugin->psz_target )
410     {
411         p_plugin->psz_target = strdup( p_plugin->psz_target );
412     }
413
414     return NPERR_NO_ERROR;
415 }
416
417 NPError NPP_Destroy( NPP instance, NPSavedData** save )
418 {
419     if( instance == NULL )
420     {
421         return NPERR_INVALID_INSTANCE_ERROR;
422     }
423
424     VlcPlugin* p_plugin = (VlcPlugin*)instance->pdata;
425
426     if( p_plugin != NULL )
427     {
428         if( p_plugin->i_vlc )
429         {
430 #if USE_LIBVLC
431             VLC_CleanUp( p_plugin->i_vlc );
432             VLC_Destroy( p_plugin->i_vlc );
433 #endif
434             p_plugin->i_vlc = 0;
435         }
436
437         if( p_plugin->psz_target )
438         {
439             free( p_plugin->psz_target );
440             p_plugin->psz_target = NULL;
441         }
442
443         delete p_plugin;
444     }
445
446     instance->pdata = NULL;
447
448     return NPERR_NO_ERROR;
449 }
450
451 NPError NPP_SetWindow( NPP instance, NPWindow* window )
452 {
453     vlc_value_t value;
454 #ifdef XP_MACOSX
455     vlc_value_t valuex;
456     vlc_value_t valuey;
457     vlc_value_t valuew;
458     vlc_value_t valueh;
459     vlc_value_t valuet;
460     vlc_value_t valuel;
461     vlc_value_t valueb;
462     vlc_value_t valuer;
463     vlc_value_t valueportx;
464     vlc_value_t valueporty;
465     Rect black_rect;
466     char * text;
467 #endif
468
469     if( instance == NULL )
470     {
471         return NPERR_INVALID_INSTANCE_ERROR;
472     }
473
474     VlcPlugin* p_plugin = (VlcPlugin*)instance->pdata;
475
476     /* Write the window ID for vlc */
477 #if USE_LIBVLC
478
479 #ifdef XP_MACOSX
480     value.i_int = ((NP_Port*) (window->window))->port;
481     VLC_Set( p_plugin->i_vlc, "drawable", value );
482
483     valueportx.i_int = ((NP_Port*) (window->window))->portx;
484     valueporty.i_int = ((NP_Port*) (window->window))->porty;
485     VLC_Set( p_plugin->i_vlc, "drawableportx", valueportx );
486     VLC_Set( p_plugin->i_vlc, "drawableporty", valueporty );
487
488     valuex.i_int = window->x;
489     valuey.i_int = window->y;
490     valuew.i_int = window->width;
491     valueh.i_int = window->height;
492     valuet.i_int = window->clipRect.top;
493     valuel.i_int = window->clipRect.left;
494     valueb.i_int = window->clipRect.bottom;
495     valuer.i_int = window->clipRect.right;
496
497     VLC_Set( p_plugin->i_vlc, "drawablet", valuet );
498     VLC_Set( p_plugin->i_vlc, "drawablel", valuel );
499     VLC_Set( p_plugin->i_vlc, "drawableb", valueb );
500     VLC_Set( p_plugin->i_vlc, "drawabler", valuer );
501     VLC_Set( p_plugin->i_vlc, "drawablex", valuex );
502     VLC_Set( p_plugin->i_vlc, "drawabley", valuey );
503     VLC_Set( p_plugin->i_vlc, "drawablew", valuew );
504     VLC_Set( p_plugin->i_vlc, "drawableh", valueh );
505
506     p_plugin->window = window;
507
508     /* draw the beautiful "No Picture" */
509
510     black_rect.top = valuet.i_int - valuey.i_int;
511     black_rect.left = valuel.i_int - valuex.i_int;
512     black_rect.bottom = valueb.i_int - valuey.i_int;
513     black_rect.right = valuer.i_int - valuex.i_int;
514
515     SetPort( value.i_int );
516     SetOrigin( valueportx.i_int , valueporty.i_int );
517     ForeColor(blackColor);
518     PenMode( patCopy );
519     PaintRect( &black_rect );
520
521     ForeColor(whiteColor);
522     text = strdup( WINDOW_TEXT );
523     MoveTo( valuew.i_int / 2 - 40 , valueh.i_int / 2 );
524     DrawText( text , 0 , strlen(text) );
525     free(text);
526
527 #else
528     /* FIXME: this cast sucks */
529     value.i_int = (int) (ptrdiff_t) (void *) window->window;
530     VLC_Set( p_plugin->i_vlc, "drawable", value );
531 #endif
532
533 #endif
534
535     /*
536      * PLUGIN DEVELOPERS:
537      *  Before setting window to point to the
538      *  new window, you may wish to compare the new window
539      *  info to the previous window (if any) to note window
540      *  size changes, etc.
541      */
542
543 #ifdef XP_WIN
544     if( !window || !window->window )
545     {
546         /* Window was destroyed. Invalidate everything. */
547         if( p_plugin->p_npwin )
548         {
549 #if !USE_LIBVLC
550             SetWindowLong( p_plugin->p_hwnd, GWL_WNDPROC,
551                            (LONG)p_plugin->pf_wndproc );
552 #endif
553             p_plugin->pf_wndproc = NULL;
554             p_plugin->p_hwnd = NULL;
555         }
556
557         p_plugin->p_npwin = window;
558         return NPERR_NO_ERROR;
559     }
560
561     if( p_plugin->p_npwin )
562     {
563         if( p_plugin->p_hwnd == (HWND)window->window )
564         {
565             /* Same window, but something may have changed. First we
566              * update the plugin structure, then we redraw the window */
567             p_plugin->i_width = window->width;
568             p_plugin->i_height = window->height;
569             p_plugin->p_npwin = window;
570 #if !USE_LIBVLC
571             InvalidateRect( p_plugin->p_hwnd, NULL, TRUE );
572             UpdateWindow( p_plugin->p_hwnd );
573 #endif
574             return NPERR_NO_ERROR;
575         }
576
577         /* Window has changed. Destroy the one we have, and go
578          * on as if it was a real initialization. */
579 #if !USE_LIBVLC
580         SetWindowLong( p_plugin->p_hwnd, GWL_WNDPROC,
581                        (LONG)p_plugin->pf_wndproc );
582 #endif
583         p_plugin->pf_wndproc = NULL;
584         p_plugin->p_hwnd = NULL;
585     }
586
587 #if !USE_LIBVLC
588     p_plugin->pf_wndproc = (WNDPROC)SetWindowLong( (HWND)window->window,
589                                                    GWL_WNDPROC, (LONG)Manage );
590 #endif
591
592     p_plugin->p_hwnd = (HWND)window->window;
593     SetProp( p_plugin->p_hwnd, "w00t", (HANDLE)p_plugin );
594     InvalidateRect( p_plugin->p_hwnd, NULL, TRUE );
595     UpdateWindow( p_plugin->p_hwnd );
596 #endif
597
598 #ifdef XP_UNIX
599     p_plugin->window = (Window) window->window;
600     p_plugin->p_display = ((NPSetWindowCallbackStruct *)window->ws_info)->display;
601
602     Widget w = XtWindowToWidget( p_plugin->p_display, p_plugin->window );
603     XtAddEventHandler( w, ExposureMask, FALSE,
604                        (XtEventHandler)Redraw, p_plugin );
605     Redraw( w, (XtPointer)p_plugin, NULL );
606 #endif
607
608     p_plugin->p_npwin = window;
609
610     p_plugin->i_width = window->width;
611     p_plugin->i_height = window->height;
612
613     if( !p_plugin->b_stream )
614     {
615         int i_mode = PLAYLIST_APPEND;
616
617         if( p_plugin->b_autoplay )
618         {
619             i_mode |= PLAYLIST_GO;
620         }
621
622         if( p_plugin->psz_target )
623         {
624 #if USE_LIBVLC
625             VLC_AddTarget( p_plugin->i_vlc, p_plugin->psz_target,
626                            0, 0, i_mode, PLAYLIST_END );
627 #endif
628             p_plugin->b_stream = VLC_TRUE;
629         }
630     }
631
632     return NPERR_NO_ERROR;
633 }
634
635 NPError NPP_NewStream( NPP instance, NPMIMEType type, NPStream *stream,
636                        NPBool seekable, uint16 *stype )
637 {
638     if( instance == NULL )
639     {
640         return NPERR_INVALID_INSTANCE_ERROR;
641     }
642
643 #if 0
644     VlcPlugin* p_plugin = (VlcPlugin*)instance->pdata;
645 #endif
646
647     /* fprintf(stderr, "NPP_NewStream - FILE mode !!\n"); */
648
649     /* We want a *filename* ! */
650     *stype = NP_ASFILE;
651
652 #if 0
653     if( !p_plugin->b_stream )
654     {
655         p_plugin->psz_target = strdup( stream->url );
656         p_plugin->b_stream = VLC_TRUE;
657     }
658 #endif
659
660     return NPERR_NO_ERROR;
661 }
662
663 int32 STREAMBUFSIZE = 0X0FFFFFFF; /* If we are reading from a file in NPAsFile
664                    * mode so we can take any size stream in our
665                    * write call (since we ignore it) */
666
667 #define SARASS_SIZE (1024*1024)
668
669 int32 NPP_WriteReady( NPP instance, NPStream *stream )
670 {
671     VlcPlugin* p_plugin;
672
673     /* fprintf(stderr, "NPP_WriteReady\n"); */
674
675     if (instance != NULL)
676     {
677         p_plugin = (VlcPlugin*) instance->pdata;
678         /* Muahahahahahahaha */
679         return STREAMBUFSIZE;
680         /*return SARASS_SIZE;*/
681     }
682
683     /* Number of bytes ready to accept in NPP_Write() */
684     return STREAMBUFSIZE;
685     /*return 0;*/
686 }
687
688
689 int32 NPP_Write( NPP instance, NPStream *stream, int32 offset,
690                  int32 len, void *buffer )
691 {
692     /* fprintf(stderr, "NPP_Write %i\n", (int)len); */
693
694     if( instance != NULL )
695     {
696         /*VlcPlugin* p_plugin = (VlcPlugin*) instance->pdata;*/
697     }
698
699     return len;         /* The number of bytes accepted */
700 }
701
702
703 NPError NPP_DestroyStream( NPP instance, NPStream *stream, NPError reason )
704 {
705     if( instance == NULL )
706     {
707         return NPERR_INVALID_INSTANCE_ERROR;
708     }
709
710     return NPERR_NO_ERROR;
711 }
712
713
714 void NPP_StreamAsFile( NPP instance, NPStream *stream, const char* fname )
715 {
716     if( instance == NULL )
717     {
718         return;
719     }
720
721     /* fprintf(stderr, "NPP_StreamAsFile %s\n", fname); */
722
723 #if USE_LIBVLC
724     VlcPlugin* p_plugin = (VlcPlugin*)instance->pdata;
725
726     VLC_AddTarget( p_plugin->i_vlc, fname, 0, 0,
727                    PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END );
728 #endif
729 }
730
731
732 void NPP_URLNotify( NPP instance, const char* url,
733                     NPReason reason, void* notifyData )
734 {
735     /***** Insert NPP_URLNotify code here *****\
736     PluginInstance* p_plugin;
737     if (instance != NULL)
738         p_plugin = (PluginInstance*) instance->pdata;
739     \*********************************************/
740 }
741
742
743 void NPP_Print( NPP instance, NPPrint* printInfo )
744 {
745     if( printInfo == NULL )
746     {
747         return;
748     }
749
750     if( instance != NULL )
751     {
752         /***** Insert NPP_Print code here *****\
753         PluginInstance* p_plugin = (PluginInstance*) instance->pdata;
754         \**************************************/
755
756         if( printInfo->mode == NP_FULL )
757         {
758             /*
759              * PLUGIN DEVELOPERS:
760              *  If your plugin would like to take over
761              *  printing completely when it is in full-screen mode,
762              *  set printInfo->pluginPrinted to TRUE and print your
763              *  plugin as you see fit.  If your plugin wants Netscape
764              *  to handle printing in this case, set
765              *  printInfo->pluginPrinted to FALSE (the default) and
766              *  do nothing.  If you do want to handle printing
767              *  yourself, printOne is true if the print button
768              *  (as opposed to the print menu) was clicked.
769              *  On the Macintosh, platformPrint is a THPrint; on
770              *  Windows, platformPrint is a structure
771              *  (defined in npapi.h) containing the printer name, port,
772              *  etc.
773              */
774
775             /***** Insert NPP_Print code here *****\
776             void* platformPrint =
777                 printInfo->print.fullPrint.platformPrint;
778             NPBool printOne =
779                 printInfo->print.fullPrint.printOne;
780             \**************************************/
781
782             /* Do the default*/
783             printInfo->print.fullPrint.pluginPrinted = FALSE;
784         }
785         else
786         {
787             /* If not fullscreen, we must be embedded */
788             /*
789              * PLUGIN DEVELOPERS:
790              *  If your plugin is embedded, or is full-screen
791              *  but you returned false in pluginPrinted above, NPP_Print
792              *  will be called with mode == NP_EMBED.  The NPWindow
793              *  in the printInfo gives the location and dimensions of
794              *  the embedded plugin on the printed page.  On the
795              *  Macintosh, platformPrint is the printer port; on
796              *  Windows, platformPrint is the handle to the printing
797              *  device context.
798              */
799
800             /***** Insert NPP_Print code here *****\
801             NPWindow* printWindow =
802                 &(printInfo->print.embedPrint.window);
803             void* platformPrint =
804                 printInfo->print.embedPrint.platformPrint;
805             \**************************************/
806         }
807     }
808 }
809
810 /******************************************************************************
811  * Windows-only methods
812  *****************************************************************************/
813 #if defined(XP_WIN) && !USE_LIBVLC
814 LRESULT CALLBACK Manage( HWND p_hwnd, UINT i_msg, WPARAM wpar, LPARAM lpar )
815 {
816     VlcPlugin* p_plugin = (VlcPlugin*) GetProp( p_hwnd, "w00t" );
817
818     switch( i_msg )
819     {
820         case WM_PAINT:
821         {
822             PAINTSTRUCT paintstruct;
823             HDC hdc;
824             RECT rect;
825
826             hdc = BeginPaint( p_hwnd, &paintstruct );
827
828             GetClientRect( p_hwnd, &rect );
829             FillRect( hdc, &rect, (HBRUSH)GetStockObject(WHITE_BRUSH) );
830             TextOut( hdc, p_plugin->i_width / 2 - 40, p_plugin->i_height / 2,
831                      WINDOW_TEXT, strlen(WINDOW_TEXT) );
832
833             EndPaint( p_hwnd, &paintstruct );
834             break;
835         }
836         default:
837             p_plugin->pf_wndproc( p_hwnd, i_msg, wpar, lpar );
838             break;
839     }
840     return 0;
841 }
842 #endif
843
844 /******************************************************************************
845  * UNIX-only methods
846  *****************************************************************************/
847 #ifdef XP_UNIX
848 static void Redraw( Widget w, XtPointer closure, XEvent *event )
849 {
850     VlcPlugin* p_plugin = (VlcPlugin*)closure;
851     GC gc;
852     XGCValues gcv;
853
854     gcv.foreground = BlackPixel( p_plugin->p_display, 0 );
855     gc = XCreateGC( p_plugin->p_display, p_plugin->window, GCForeground, &gcv );
856
857     XFillRectangle( p_plugin->p_display, p_plugin->window, gc,
858                     0, 0, p_plugin->i_width, p_plugin->i_height );
859
860     gcv.foreground = WhitePixel( p_plugin->p_display, 0 );
861     XChangeGC( p_plugin->p_display, gc, GCForeground, &gcv );
862
863     XDrawString( p_plugin->p_display, p_plugin->window, gc,
864                  p_plugin->i_width / 2 - 40, p_plugin->i_height / 2,
865                  WINDOW_TEXT, strlen(WINDOW_TEXT) );
866
867     XFreeGC( p_plugin->p_display, gc );
868 }
869 #endif
870