1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
|
/* Totem GMP plugin
*
* Copyright © 2006, 2007 Christian Persch
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA.
*/
#include <config.h>
#include <string.h>
#include <glib.h>
#include "totemPlugin.h"
#include "totemGMPSettings.h"
static const char *propertyNames[] = {
"autostart",
"balance",
"baseURL",
"defaultAudioLanguage",
"defaultFrame",
"enableErrorDialogs",
"invokeURLs",
"mediaAccessRights",
"mute",
"playCount",
"rate",
"volume"
};
static const char *methodNames[] = {
"getMode",
"isAvailable",
"requestMediaAccessRights",
"setMode"
};
TOTEM_IMPLEMENT_NPCLASS (totemGMPSettings,
propertyNames, G_N_ELEMENTS (propertyNames),
methodNames, G_N_ELEMENTS (methodNames),
NULL);
totemGMPSettings::totemGMPSettings (NPP aNPP)
: totemNPObject (aNPP),
mMute (false)
{
TOTEM_LOG_CTOR ();
}
totemGMPSettings::~totemGMPSettings ()
{
TOTEM_LOG_DTOR ();
}
bool
totemGMPSettings::InvokeByIndex (int aIndex,
const NPVariant *argv,
uint32_t argc,
NPVariant *_result)
{
TOTEM_LOG_INVOKE (aIndex, totemGMPSettings);
switch (Methods (aIndex)) {
case eIsAvailable:
/* boolean isAvailable (in ACString name); */
case eGetMode:
/* boolean getMode (in ACString modeName); */
case eSetMode:
/* void setMode (in ACString modeName, in boolean state); */
case eRequestMediaAccessRights:
/* boolean requestMediaAccessRights (in ACString access); */
TOTEM_WARN_INVOKE_UNIMPLEMENTED (aIndex, totemGMPSettings);
return BoolVariant (_result, false);
}
return false;
}
bool
totemGMPSettings::GetPropertyByIndex (int aIndex,
NPVariant *_result)
{
TOTEM_LOG_GETTER (aIndex, totemGMPSettings);
switch (Properties (aIndex)) {
case eMute:
/* attribute boolean mute; */
return BoolVariant (_result, Plugin()->IsMute());
case eVolume:
/* attribute long volume; */
return Int32Variant (_result, Plugin()->Volume () * 100.0);
case eAutostart:
/* attribute boolean autoStart; */
return BoolVariant (_result, Plugin()->AutoPlay());
case eBalance:
/* attribute long balance; */
TOTEM_WARN_1_GETTER_UNIMPLEMENTED (aIndex, totemGMPSettings);
return Int32Variant (_result, 0);
case eBaseURL:
/* attribute AUTF8String baseURL; */
TOTEM_WARN_1_GETTER_UNIMPLEMENTED (aIndex, totemGMPSettings);
return StringVariant (_result, "");
case eDefaultAudioLanguage:
/* readonly attribute long defaultAudioLanguage; */
TOTEM_WARN_1_GETTER_UNIMPLEMENTED (aIndex, totemGMPSettings);
return Int32Variant (_result, 0); /* FIXME */
case eDefaultFrame:
/* attribute AUTF8String defaultFrame; */
TOTEM_WARN_1_GETTER_UNIMPLEMENTED (aIndex, totemGMPSettings);
return StringVariant (_result, "");
case eEnableErrorDialogs:
/* attribute boolean enableErrorDialogs; */
TOTEM_WARN_1_GETTER_UNIMPLEMENTED (aIndex, totemGMPSettings);
return BoolVariant (_result, true);
case eInvokeURLs:
/* attribute boolean invokeURLs; */
TOTEM_WARN_1_GETTER_UNIMPLEMENTED (aIndex, totemGMPSettings);
return BoolVariant (_result, true);
case eMediaAccessRights:
/* readonly attribute ACString mediaAccessRights; */
TOTEM_WARN_1_GETTER_UNIMPLEMENTED (aIndex, totemGMPSettings);
return StringVariant (_result, "");
case ePlayCount:
/* attribute long playCount; */
TOTEM_WARN_1_GETTER_UNIMPLEMENTED (aIndex, totemGMPSettings);
return Int32Variant (_result, 1);
case eRate:
/* attribute double rate; */
TOTEM_WARN_1_GETTER_UNIMPLEMENTED (aIndex, totemGMPSettings);
return DoubleVariant (_result, 1.0);
}
return false;
}
bool
totemGMPSettings::SetPropertyByIndex (int aIndex,
const NPVariant *aValue)
{
TOTEM_LOG_SETTER (aIndex, totemGMPSettings);
switch (Properties (aIndex)) {
case eMute: {
/* attribute boolean mute; */
bool enabled;
if (!GetBoolFromArguments (aValue, 1, 0, enabled))
return false;
Plugin()->SetMute (enabled);
return true;
}
case eVolume: {
/* attribute long volume; */
int32_t volume;
if (!GetInt32FromArguments (aValue, 1, 0, volume))
return false;
Plugin()->SetVolume ((double) CLAMP (volume, 0, 100) / 100.0);
return true;
}
case eAutostart: {
/* attribute boolean autoStart; */
bool enabled;
if (!GetBoolFromArguments (aValue, 1, 0, enabled))
return false;
Plugin()->SetAutoPlay (enabled);
return true;
}
case eBalance:
/* attribute long balance; */
case eBaseURL:
/* attribute AUTF8String baseURL; */
case eDefaultFrame:
/* attribute AUTF8String defaultFrame; */
case eEnableErrorDialogs:
/* attribute boolean enableErrorDialogs; */
case eInvokeURLs:
/* attribute boolean invokeURLs; */
case ePlayCount:
/* attribute long playCount; */
case eRate:
/* attribute double rate; */
TOTEM_WARN_SETTER_UNIMPLEMENTED (aIndex, totemGMPSettings);
return true;
case eDefaultAudioLanguage:
/* readonly attribute long defaultAudioLanguage; */
case eMediaAccessRights:
/* readonly attribute ACString mediaAccessRights; */
return ThrowPropertyNotWritable ();
}
return false;
}
|