~walkerlee/totem/pre-interview

« back to all changes in this revision

Viewing changes to browser-plugin/totemConeVideo.cpp

Tags: 2.24.3-3
* totem-mozilla.docs: ship README.browser-plugin which explains how to 
  disable the plugin for some MIME types.
* rules: remove the hack that only let totem-xine support VCDs and 
  DVDs, now that GStreamer supports them. Closes: #370789.
* 01_fake_keypresses.patch: new patch. Completely disable the broken 
  XTEST code that generates fake keypresses. Closes: #500330.
* 90_autotools.patch: regenerated.
* Build-depend on nautilus 2.22 to be sure to build the extension for 
  the correct version.
* totem-xine depends on libxine1-x.
* Standards version is 3.8.1.
* Upload to unstable.
* 04_tracker_build.patch: new patch, stolen upstream. Fix build with 
  latest tracker version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Totem Cone plugin
 
2
 *
 
3
 * Copyright © 2004 Bastien Nocera <hadess@hadess.net>
 
4
 * Copyright © 2002 David A. Schleef <ds@schleef.org>
 
5
 * Copyright © 2006, 2008 Christian Persch
 
6
 *
 
7
 * This library is free software; you can redistribute it and/or
 
8
 * modify it under the terms of the GNU Library General Public
 
9
 * License as published by the Free Software Foundation; either
 
10
 * version 2 of the License, or (at your option) any later version.
 
11
 *
 
12
 * This library is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
15
 * Library General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU Library General Public
 
18
 * License along with this library; if not, write to the
 
19
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
20
 * Boston, MA 02110-1301  USA.
 
21
 */
 
22
 
 
23
#include <config.h>
 
24
 
 
25
#include <string.h>
 
26
 
 
27
#include <glib.h>
 
28
 
 
29
#include "totemPlugin.h"
 
30
#include "totemConeVideo.h"
 
31
 
 
32
static const char *propertyNames[] = {
 
33
  "aspectRatio",
 
34
  "fullscreen",
 
35
  "height",
 
36
  "subtitle",
 
37
  "teletext",
 
38
  "width",
 
39
};
 
40
 
 
41
static const char *methodNames[] = {
 
42
  "toggleFullscreen",
 
43
  "toggleTeletext"
 
44
};
 
45
 
 
46
TOTEM_IMPLEMENT_NPCLASS (totemConeVideo,
 
47
                         propertyNames, G_N_ELEMENTS (propertyNames),
 
48
                         methodNames, G_N_ELEMENTS (methodNames),
 
49
                         NULL);
 
50
 
 
51
totemConeVideo::totemConeVideo (NPP aNPP)
 
52
  : totemNPObject (aNPP)
 
53
{
 
54
  TOTEM_LOG_CTOR ();
 
55
}
 
56
 
 
57
totemConeVideo::~totemConeVideo ()
 
58
{
 
59
  TOTEM_LOG_DTOR ();
 
60
}
 
61
 
 
62
bool
 
63
totemConeVideo::InvokeByIndex (int aIndex,
 
64
                               const NPVariant *argv,
 
65
                               uint32_t argc,
 
66
                               NPVariant *_result)
 
67
{
 
68
  TOTEM_LOG_INVOKE (aIndex, totemConeVideo);
 
69
 
 
70
  switch (Methods (aIndex)) {
 
71
    case eToggleFullscreen: {
 
72
      /* FIXMEchpe this sucks */
 
73
      NPVariant fullscreen;
 
74
      BOOLEAN_TO_NPVARIANT (!Plugin()->IsFullscreen(), fullscreen);
 
75
      return SetPropertyByIndex (eFullscreen, &fullscreen);
 
76
    }
 
77
 
 
78
    case eToggleTeletext:
 
79
      TOTEM_WARN_INVOKE_UNIMPLEMENTED (aIndex, totemConeVideo);
 
80
      return VoidVariant (_result);
 
81
  }
 
82
 
 
83
  return false;
 
84
}
 
85
 
 
86
bool
 
87
totemConeVideo::GetPropertyByIndex (int aIndex,
 
88
                                    NPVariant *_result)
 
89
{
 
90
  TOTEM_LOG_GETTER (aIndex, totemConeVideo);
 
91
 
 
92
  switch (Properties (aIndex)) {
 
93
    case eFullscreen:
 
94
      return BoolVariant (_result, Plugin()->IsFullscreen());
 
95
 
 
96
    case eAspectRatio:
 
97
    case eHeight:
 
98
    case eSubtitle:
 
99
    case eTeletext:
 
100
    case eWidth:
 
101
      TOTEM_WARN_GETTER_UNIMPLEMENTED (aIndex, _result);
 
102
      return VoidVariant (_result);
 
103
  }
 
104
 
 
105
  return false;
 
106
}
 
107
 
 
108
bool
 
109
totemConeVideo::SetPropertyByIndex (int aIndex,
 
110
                                    const NPVariant *aValue)
 
111
{
 
112
  TOTEM_LOG_SETTER (aIndex, totemConeVideo);
 
113
 
 
114
  switch (Properties (aIndex)) {
 
115
    case eFullscreen: {
 
116
      bool fullscreen;
 
117
      if (!GetBoolFromArguments (aValue, 1, 0, fullscreen))
 
118
        return false;
 
119
 
 
120
      Plugin()->SetFullscreen (fullscreen);
 
121
      return true;
 
122
    }
 
123
 
 
124
    case eAspectRatio:
 
125
    case eSubtitle:
 
126
    case eTeletext:
 
127
      TOTEM_WARN_SETTER_UNIMPLEMENTED (aIndex, _result);
 
128
      return true;
 
129
 
 
130
    case eHeight:
 
131
    case eWidth:
 
132
      return ThrowPropertyNotWritable ();
 
133
  }
 
134
 
 
135
  return false;
 
136
}