home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Freelog 117
/
FreelogNo117-OctobreNovembre2013.iso
/
Theme
/
8GadgetPack
/
8GadgetPackSetup.msi
/
Gadgets.7z
/
Gadgets
/
Volume_Control.gadget
/
gadget.js
< prev
next >
Wrap
Text File
|
2012-01-28
|
3KB
|
126 lines
/////////////////////////////////////////////////////////////////////////////////////
// //
// Volume Control Gadget 1.2 by Orbmu2k © 2007 //
// //
// Copyright © 2007 Orbmu2k. All rights reserved. //
// //
// http://blog.orbmu2k.de //
// //
// Email: sidebargadget@orbmu2k.de //
// //
/////////////////////////////////////////////////////////////////////////////////////
System.Gadget.settingsUI = "settings.html";
System.Gadget.onSettingsClosed = onSettingsClosed;
var sound;
var t;
var vol;
var mute;
var imgSpeaker;
var imgCross;
var updating = false;
function init()
{
sound = GetLibrary();
loadSettings();
initObjects();
t = setInterval("refreshdisplay()",75);
}
function loadSettings()
{
var b = System.Gadget.Settings.readString("background");
if ( b != "") background.src = b;
}
function onSettingsClosed()
{
loadSettings();
}
function terminate()
{
UnregisterLibrary();
}
function initObjects()
{
imgSpeaker = background.addImageObject("kmix.png", 4, 6);
imgSpeaker.width = 24;
imgSpeaker.height = 24;
imgCross = background.addImageObject("cross.png", 18, 22)
imgCross.width = 12;
imgCross.height = 12;
}
function changeVolume()
{
var v = sound.MasterVolume;
if (event.wheelDelta >= 20)
v += 3;
else
v -= 3;
if (v >= 100) v = 100;
if (v <= 0) v = 0;
sound.MasterVolume = v;
}
function muteVolume()
{
if (event.button == 4)
{
sound.MasterMute = !sound.MasterMute;
}
onMouseMove();
}
function onMouseMove()
{
if (event.button == 1)
{
var v = event.x-12;
if (v >= 100) v = 100;
if (v <= 0) v = 0;
sound.MasterVolume = v;
}
}
function runMixer()
{
System.Shell.execute("sndvol.exe");
}
function refreshdisplay()
{
try
{
if (!System.Gadget.visible || updating) return;
updating = true;
vol = sound.MasterVolume;
mute = sound.MasterMute;
imgCross.opacity = mute ? 100 : 0;
if (mute)
txtVolume.innerText = "Volume: Mute";
else
txtVolume.innerText = "Volume: " + vol + "%";
divvol.style.width = (Math.round((vol / 8)) * 8);
divpeakleft.style.width = (Math.round((sound.LeftPeak / 4)) * 4);
divpeakright.style.width = (Math.round((sound.RightPeak / 4)) * 4);
updating = false;
}
catch(err)
{
}
}