]> git.sesse.net Git - vlc/blob - mozilla/vlcplugin.h
* ./mozilla/vlcshell.cpp: ported the Mozilla plugin to Windows.
[vlc] / mozilla / vlcplugin.h
1 /*****************************************************************************
2  * vlcplugin.h: a VideoLAN plugin for Mozilla
3  *****************************************************************************
4  * Copyright (C) 2002 VideoLAN
5  * $Id: vlcplugin.h,v 1.6 2002/10/22 21:10:28 sam Exp $
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 /*******************************************************************************
25  * Instance state information about the plugin.
26  ******************************************************************************/
27 class VlcPlugin
28 {
29 public:
30              VlcPlugin( NPP ); 
31     virtual ~VlcPlugin();
32
33     void     SetInstance( NPP );
34     NPP      GetInstance();
35     VlcIntf* GetPeer();
36
37     void     SetFileName( const char* );
38
39     /* Window settings */
40     NPWindow* fWindow;
41     uint16 fMode;
42
43 #ifdef WIN32
44
45 #else
46     /* UNIX data members */
47     Window window;
48     Display *display;
49     uint32 x, y;
50     uint32 width, height;
51 #endif
52
53     /* vlc data members */
54     int      i_vlc;
55     int      b_stream;
56     int      b_autoplay;
57     char *   psz_target;
58
59 private:
60     NPP      p_instance;
61     VlcPeer* p_peer;
62 };
63
64 /*******************************************************************************
65  * Plugin properties.
66  ******************************************************************************/
67 #define PLUGIN_NAME         "VideoLAN Client Plugin"
68 #define PLUGIN_DESCRIPTION \
69     "VideoLAN Client Multimedia Player Plugin <br>" \
70     " <br>" \
71     "version %s <br>" \
72     "VideoLAN WWW: <a href=\"http://www.videolan.org/\">http://www.videolan.org/</a>"
73
74 #define PLUGIN_MIMETYPES \
75     /* MPEG-1 and MPEG-2 */ \
76     "audio/mpeg:mp2,mp3,mpga,mpega:MPEG audio;" \
77     "audio/x-mpeg:mp2,mp3,mpga,mpega:MPEG audio;" \
78     "video/mpeg:mpg,mpeg,mpe:MPEG video;" \
79     "video/x-mpeg:mpg,mpeg,mpe:MPEG video;" \
80     "video/mpeg-system:mpg,mpeg,mpe,vob:MPEG video;" \
81     "video/x-mpeg-system:mpg,mpeg,mpe,vob:MPEG video;" \
82     /* MPEG-4 */ \
83     "video/mpeg4:mp4,mpg4:MPEG-4 video;" \
84     "audio/mpeg4:mp4,mpg4:MPEG-4 audio;" \
85     "application/mpeg4-iod:mp4,mpg4:MPEG-4 video;" \
86     "application/mpeg4-muxcodetable:mp4,mpg4:MPEG-4 video;" \
87     /* AVI */ \
88     "video/x-msvideo:avi:AVI video;" \
89     /* QuickTime */ \
90     "video/quicktime:mov,qt:QuickTime video;" \
91     /* explicit plugin call */ \
92     "application/x-vlc-plugin::VLC plugin"
93