﻿function SelectTool(page)
{
    this.Page = page;
    this.Button = page.control.content.findName("Select");
}

SelectTool.prototype = 
{
    LeftButtonDown : function(sender, eventArgs)
    {
    },
    MouseMove : function (sender, eventArgs)
    {
    },
    LeftButtonUp : function(sender, eventArgs)
    {
    },
    Activate : function()
    {
        ///<summary>Activate the Ellipse Tool</summary>
        var highlight = this.Button.findName(this.Button.Name + "_Highlight");
        
        highlight.X = 0.25;
        highlight.Y = 0.25;
    },
    Deactivate : function()
    {
        ///<summary>Deactivate the Ellipse Tool</summary>
        var highlight = this.Button.findName(this.Button.Name + "_Highlight");
        
        highlight.X = -0.25;
        highlight.Y = -0.25;
    }    
}

