~ubuntu-branches/debian/wheezy/vlc/wheezy

« back to all changes in this revision

Viewing changes to mozilla/vlcpeer.cpp

Tags: upstream-0.7.2.final
ImportĀ upstreamĀ versionĀ 0.7.2.final

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*****************************************************************************
 
2
 * vlcpeer.cpp: scriptable peer descriptor
 
3
 *****************************************************************************
 
4
 * Copyright (C) 2002 VideoLAN
 
5
 * $Id: vlcpeer.cpp 6961 2004-03-05 17:34:23Z sam $
 
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
 * Preamble
 
26
 *****************************************************************************/
 
27
#include "config.h"
 
28
 
 
29
#include <vlc/vlc.h>
 
30
 
 
31
#ifdef DEBUG
 
32
/* We do not want to use nsDebug.h */
 
33
#   undef DEBUG
 
34
#endif
 
35
 
 
36
#ifdef HAVE_MOZILLA_CONFIG_H
 
37
#   include <mozilla-config.h>
 
38
#endif
 
39
#include <nsISupports.h>
 
40
#include <nsMemory.h>
 
41
#include <npapi.h>
 
42
 
 
43
#if !defined(XP_MACOSX) && !defined(XP_UNIX) && !defined(XP_WIN)
 
44
#define XP_UNIX 1
 
45
#elif defined(XP_MACOSX)
 
46
#undef XP_UNIX
 
47
#endif
 
48
 
 
49
#include "vlcpeer.h"
 
50
#include "vlcplugin.h"
 
51
 
 
52
NS_IMPL_ISUPPORTS2( VlcPeer, VlcIntf, nsIClassInfo )
 
53
 
 
54
/*****************************************************************************
 
55
 * Scriptable peer constructor and destructor
 
56
 *****************************************************************************/
 
57
VlcPeer::VlcPeer()
 
58
{
 
59
    NS_INIT_ISUPPORTS();
 
60
}
 
61
 
 
62
VlcPeer::VlcPeer( VlcPlugin * plugin )
 
63
{
 
64
    NS_INIT_ISUPPORTS();
 
65
    p_plugin = plugin;
 
66
}
 
67
 
 
68
VlcPeer::~VlcPeer()
 
69
{
 
70
    ;
 
71
}
 
72
 
 
73
/*****************************************************************************
 
74
 * Scriptable peer methods
 
75
 *****************************************************************************/
 
76
void VlcPeer::Disable()
 
77
{
 
78
    p_plugin = NULL;
 
79
}
 
80
 
 
81
/*****************************************************************************
 
82
 * Scriptable peer plugin methods
 
83
 *****************************************************************************/
 
84
NS_IMETHODIMP VlcPeer::Play()
 
85
{
 
86
    if( p_plugin )
 
87
    {
 
88
        if( !p_plugin->b_stream && p_plugin->psz_target )
 
89
        {
 
90
            VLC_AddTarget( p_plugin->i_vlc, p_plugin->psz_target, 0, 0,
 
91
                           PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END );
 
92
            p_plugin->b_stream = 1;
 
93
        }
 
94
 
 
95
        VLC_Play( p_plugin->i_vlc );
 
96
    }
 
97
    return NS_OK;
 
98
}
 
99
 
 
100
NS_IMETHODIMP VlcPeer::Pause()
 
101
{
 
102
    if( p_plugin )
 
103
    {
 
104
        VLC_Pause( p_plugin->i_vlc );
 
105
    }
 
106
    return NS_OK;
 
107
}
 
108
 
 
109
NS_IMETHODIMP VlcPeer::Stop()
 
110
{
 
111
    if( p_plugin )
 
112
    {
 
113
        VLC_Stop( p_plugin->i_vlc );
 
114
        p_plugin->b_stream = 0;
 
115
    }
 
116
    return NS_OK;
 
117
}
 
118
 
 
119
NS_IMETHODIMP VlcPeer::Fullscreen()
 
120
{
 
121
    if( p_plugin )
 
122
    {
 
123
#ifdef XP_MACOSX
 
124
#else
 
125
        VLC_FullScreen( p_plugin->i_vlc );
 
126
#endif
 
127
    }
 
128
    return NS_OK;
 
129
}
 
130