﻿// Name:        AjaxControlToolkit.Seadragon.Seadragon.Buttons.debug.js
// Assembly:    AjaxControlToolkit
// Version:     3.0.30930.28736
// FileVersion: 3.0.30930.0
Type.registerNamespace('AjaxControlToolkit.Seadragon');
Type.registerNamespace('Seadragon');

AjaxControlToolkit.Seadragon.ButtonState = function() {
	throw Error.invalidOperation();
}
AjaxControlToolkit.Seadragon.ButtonState.prototype = {
	REST: 0,
	GROUP: 1,
	HOVER: 2,
	DOWN: 3
}
AjaxControlToolkit.Seadragon.ButtonState.registerEnum("AjaxControlToolkit.Seadragon.ButtonState", false);

AjaxControlToolkit.Seadragon.Button = function() {
	AjaxControlToolkit.Seadragon.Button.initializeBase(this);

	this._tooltip = null;
	this._srcRest = null;
	this._srcGroup = null;
	this._srcHover = null;
	this._srcDown = null;
	this._button = null;
	this.config = null;

}
AjaxControlToolkit.Seadragon.Button.prototype = {
    initialize: function() {
        AjaxControlToolkit.Seadragon.Button.callBaseMethod(this, 'initialize');

        this._button = Seadragon.Utils.makeNeutralElement("span");
        this._currentState = AjaxControlToolkit.Seadragon.ButtonState.GROUP;
        this._tracker = new Seadragon.MouseTracker(this._button, this.config.clickTimeThreshold, this.config.clickDistThreshold);
        this._imgRest = Seadragon.Utils.makeTransparentImage(this._srcRest);
        this._imgGroup = Seadragon.Utils.makeTransparentImage(this._srcGroup);
        this._imgHover = Seadragon.Utils.makeTransparentImage(this._srcHover);
        this._imgDown = Seadragon.Utils.makeTransparentImage(this._srcDown);

        this._fadeDelay = 0;      // begin fading immediately
        this._fadeLength = 2000;  // fade over a period of 2 seconds
        this._fadeBeginTime = null;
        this._shouldFade = false;

        this._button.style.display = "inline-block";
        this._button.style.position = "relative";
        this._button.title = this._tooltip;

        this._button.appendChild(this._imgRest);
        this._button.appendChild(this._imgGroup);
        this._button.appendChild(this._imgHover);
        this._button.appendChild(this._imgDown);

        var styleRest = this._imgRest.style;
        var styleGroup = this._imgGroup.style;
        var styleHover = this._imgHover.style;
        var styleDown = this._imgDown.style;

        // DON'T position imgRest absolutely -- let it be inline so it fills
        // up the div, sizing the div appropriately
        styleGroup.position = styleHover.position = styleDown.position = "absolute";
        styleGroup.top = styleHover.top = styleDown.top = "0px";
        styleGroup.left = styleHover.left = styleDown.left = "0px";
        styleHover.visibility = styleDown.visibility = "hidden";
        // rest and group are always visible

        // FF2 is very buggy with inline-block. it squashes the button div,
        // making the group-pressed states' images lower than rest. but
        // apparently, clearing the "top" style fixes this. (note that this
        // breaks the buttons in every other browser, so we're not clearing
        // the "top" style by default...)
        if (Seadragon.Utils.getBrowser() == Seadragon.Browser.FIREFOX &&
                    Seadragon.Utils.getBrowserVersion() < 3) {
            styleGroup.top = styleHover.top = styleDown.top = "";
        }

        this._tracker.enterHandler = Function.createDelegate(this, this._enterHandler);
        this._tracker.exitHandler = Function.createDelegate(this, this._exitHandler);
        this._tracker.pressHandler = Function.createDelegate(this, this._pressHandler);
        this._tracker.releaseHandler = Function.createDelegate(this, this._releaseHandler);
        this._tracker.clickHandler = Function.createDelegate(this, this._clickHandler);

        this._tracker.setTracking(true);
        this._outTo(AjaxControlToolkit.Seadragon.ButtonState.REST);
    },
    dispose: function() {
    },
    _scheduleFade: function() {
        window.setTimeout(Function.createDelegate(this, this._updateFade), 20);
    },
    _updateFade: function() {
        if (this._shouldFade) {
            var currentTime = new Date().getTime();
            var deltaTime = currentTime - this._fadeBeginTime;
            var opacity = 1.0 - deltaTime / this._fadeLength;

            opacity = Math.min(1.0, opacity);
            opacity = Math.max(0.0, opacity);

            Seadragon.Utils.setElementOpacity(this._imgGroup, opacity, true);
            if (opacity > 0) {
                this._scheduleFade();    // fade again
            }
        }
    },
    _beginFading: function() {
        this._shouldFade = true;
        this._fadeBeginTime = new Date().getTime() + this._fadeDelay;
        window.setTimeout(Function.createDelegate(this, this._scheduleFade), this._fadeDelay);
    },
    _stopFading: function() {
        this._shouldFade = false;
        Seadragon.Utils.setElementOpacity(this._imgGroup, 1.0, true);
    },
    _inTo: function(newState) {
        if (newState >= AjaxControlToolkit.Seadragon.ButtonState.GROUP && this._currentState == AjaxControlToolkit.Seadragon.ButtonState.REST) {
            this._stopFading();
            this._currentState = AjaxControlToolkit.Seadragon.ButtonState.GROUP;
        }

        if (newState >= AjaxControlToolkit.Seadragon.ButtonState.HOVER && this._currentState == AjaxControlToolkit.Seadragon.ButtonState.GROUP) {
            // important: don't explicitly say "visibility: visible".
            // see note in Viewer.setVisible() for explanation.
            this._imgHover.style.visibility = "";
            this._currentState = AjaxControlToolkit.Seadragon.ButtonState.HOVER;
        }

        if (newState >= AjaxControlToolkit.Seadragon.ButtonState.DOWN && this._currentState == AjaxControlToolkit.Seadragon.ButtonState.HOVER) {
            // important: don't explicitly say "visibility: visible".
            // see note in Viewer.setVisible() for explanation.
            this._imgDown.style.visibility = "";
            this._currentState = AjaxControlToolkit.Seadragon.ButtonState.DOWN;
        }
    },
    _outTo: function(newState) {
        if (newState <= AjaxControlToolkit.Seadragon.ButtonState.HOVER && this._currentState == AjaxControlToolkit.Seadragon.ButtonState.DOWN) {
            this._imgDown.style.visibility = "hidden";
            this._currentState = AjaxControlToolkit.Seadragon.ButtonState.HOVER;
        }

        if (newState <= AjaxControlToolkit.Seadragon.ButtonState.GROUP && this._currentState == AjaxControlToolkit.Seadragon.ButtonState.HOVER) {
            this._imgHover.style.visibility = "hidden";
            this._currentState = AjaxControlToolkit.Seadragon.ButtonState.GROUP;
        }

        if (this._newState <= AjaxControlToolkit.Seadragon.ButtonState.REST && this._currentState == AjaxControlToolkit.Seadragon.ButtonState.GROUP) {
            this._beginFading();
            this._currentState = AjaxControlToolkit.Seadragon.ButtonState.REST;
        }
    },
    _enterHandler: function(tracker, position, buttonDownElmt, buttonDownAny) {
        if (buttonDownElmt) {
            this._inTo(AjaxControlToolkit.Seadragon.ButtonState.DOWN);
            this._raiseEvent("onEnter", this);
        } else if (!buttonDownAny) {
            this._inTo(AjaxControlToolkit.Seadragon.ButtonState.HOVER);
        }
    },
    _exitHandler: function(tracker, position, buttonDownElmt, buttonDownAny) {
        this._outTo(AjaxControlToolkit.Seadragon.ButtonState.GROUP);
        if (buttonDownElmt) {
            this._raiseEvent("onExit", this);
        }
    },
    _pressHandler: function(tracker, position) {
        this._inTo(AjaxControlToolkit.Seadragon.ButtonState.DOWN);
        this._raiseEvent("onPress", this);
    },
    _releaseHandler: function(tracker, position, insideElmtPress, insideElmtRelease) {
        if (insideElmtPress && insideElmtRelease) {
            this._outTo(AjaxControlToolkit.Seadragon.ButtonState.HOVER);
            this._raiseEvent("onRelease", this);
        } else if (insideElmtPress) {
            this._outTo(AjaxControlToolkit.Seadragon.ButtonState.GROUP);
        } else {
            // pressed elsewhere, but released on it. if we ignored the
            // enter event because a button was down, activate hover now
            this._inTo(AjaxControlToolkit.Seadragon.ButtonState.HOVER);
        }
    },
    _clickHandler: function(tracker, position, quick, shift) {        
        if (quick) {
            this._raiseEvent("onClick", this);
        }
    },
    _raiseEvent: function(eventName, eventArgs) {
        // Get handler for event.
        var handler = this.get_events().getHandler(eventName);

        if (handler) {
            if (!eventArgs) {
                eventArgs = Sys.EventArgs.Empty;
            }

            // Fire event.                          
            handler(this, eventArgs);
        }
    },
    get_element: function() {
        return this._button;
    },
    get_tooltip: function() {
        return this._tooltip;
    },
    set_tooltip: function(value) {
        this._tooltip = value;
    },
    get_config: function() {
        return this.config;
    },
    set_config: function(value) {
        this.config = value;
    },
    get_srcRest: function() {
        return this._srcRest;
    },
    set_srcRest: function(value) {
        this._srcRest = value;
    },
    get_srcGroup: function() {
        return this._srcGroup;
    },
    set_srcGroup: function(value) {
        this._srcGroup = value;
    },
    get_srcHover: function() {
        return this._srcHover;
    },
    set_srcHover: function(value) {
        this._srcHover = value;
    },
    get_srcDown: function() {
        return this._srcDown;
    },
    set_srcDown: function(value) {
        this._srcDown = value;
    },
    add_onPress: function(handler) {
        this.get_events().addHandler("onPress", handler);
    },
    remove_onPress: function(handler) {
        this.get_events().removeHandler("onPress", handler);
    },
    add_onClick: function(handler) {
        this.get_events().addHandler("onClick", handler);
    },
    remove_onClick: function(handler) {
        this.get_events().removeHandler("onClick", handler);
    },
    add_onEnter: function(handler) {
        this.get_events().addHandler("onEnter", handler);
    },
    remove_onEnter: function(handler) {
        this.get_events().removeHandler("onEnter", handler);
    },
    add_onRelease: function(handler) {
        this.get_events().addHandler("onRelease", handler);
    },
    remove_onRelease: function(handler) {
        this.get_events().removeHandler("onRelease", handler);
    },
    add_onExit: function(handler) {
        this.get_events().addHandler("onExit", handler);
    },
    remove_onExit: function(handler) {
        this.get_events().removeHandler("onExit", handler);
    },
    notifyGroupEnter: function() {
        this._inTo(AjaxControlToolkit.Seadragon.ButtonState.GROUP);
    },
    notifyGroupExit: function() {
        this._outTo(AjaxControlToolkit.Seadragon.ButtonState.REST);
    }
}
AjaxControlToolkit.Seadragon.Button.registerClass('AjaxControlToolkit.Seadragon.Button', Sys.Component);

AjaxControlToolkit.Seadragon.ButtonGroup = function() {
	AjaxControlToolkit.Seadragon.ButtonGroup.initializeBase(this);

	this._buttons = null;
	this._group = null;
	this.config = null;
}
AjaxControlToolkit.Seadragon.ButtonGroup.prototype = {
	initialize: function() {
		AjaxControlToolkit.Seadragon.ButtonGroup.callBaseMethod(this, 'initialize');

		this._group = Seadragon.Utils.makeNeutralElement("span");
		var buttons = this._buttons.concat([]);   // copy
		var tracker = new Seadragon.MouseTracker(this._group, this.config.clickTimeThreshold, this.config.clickDistThreshold);
		this._group.style.display = "inline-block";

		for (var i = 0; i < buttons.length; i++) {
			this._group.appendChild(buttons[i].get_element());
		}

		tracker.enterHandler = Function.createDelegate(this, this._enterHandler);
		tracker.exitHandler = Function.createDelegate(this, this._exitHandler);
		tracker.releaseHandler = Function.createDelegate(this, this._releaseHandler);

		tracker.setTracking(true);
	},
	dispose: function() {
	},
	get_buttons: function() {
		return this._buttons;
	},
	set_buttons: function(value) {
		this._buttons = value;
	},
	get_element: function() {
		return this._group;
	},
	get_config: function() {
		return this.config;
	},
	set_config: function(value) {
		this.config = value;
	},
	_enterHandler: function(tracker, position, buttonDownElmt, buttonDownAny) {
		// somewhat office ribbon style -- we do this regardless of whether
		// the mouse is down from elsewhere. it's a nice soft glow effect.
		for (var i = 0; i < this._buttons.length; i++) {
			this._buttons[i].notifyGroupEnter();
		}
	},
	_exitHandler: function(tracker, position, buttonDownElmt, buttonDownAny) {
		if (!buttonDownElmt) {
			// only go to rest if the mouse isn't down from a button
			for (var i = 0; i < this._buttons.length; i++) {
				this._buttons[i].notifyGroupExit();
			}
		}
	},
	_releaseHandler: function(tracker, position, insideElmtPress, insideElmtRelease) {

		if (!insideElmtRelease) {
			// this means was the mouse was inside the div during press, so
			// since it's no longer inside the div during release, it left
			// the div. but onDivExit() ignored it since the mouse was down
			// from the div, so we'll go out to rest state now.
			for (var i = 0; i < this._buttons.length; i++) {
				this._buttons[i].notifyGroupExit();
			}
		}
	},
	emulateEnter: function() {
		this._enterHandler();
	},

	emulateExit: function() {
		this._exitHandler();
	}
}
AjaxControlToolkit.Seadragon.ButtonGroup.registerClass('AjaxControlToolkit.Seadragon.ButtonGroup', Sys.Component);

if(typeof(Sys)!=='undefined')Sys.Application.notifyScriptLoaded();