/*
    Thanks to Richard Z for his great work and inspiration!
*/         


function ColorBar()
{
    //niebieski theme
    this.colorBarBackFill;
    this.colorBarStroke;
    this.colorBarGrad1;
    this.colorBarGrad2;
    this.colorBarBackFillGrowing;
    this.colorBarStrokeGrowing;
    this.colorBarGrad1Growing;
    this.colorBarGrad2Growing;  
}

ColorBar.prototype.LoadTheme = function(ThemeID)
{
    switch(parseInt(ThemeID))
    {
    //uniwersalny tyl ciemny - "#df444444"
    //uniwersalny tyl jasny - "#df9d9d9d"
    case 0: //blue - hopper        
        this.colorBarBackFill = "#df444444";//"#df46576d";
        this.colorBarStroke ="#004baa";
        this.colorBarGrad1 = "#00baff";
        this.colorBarGrad2 = "#0046a6";
        
        this.colorBarBackFillGrowing = "#df6b6b6b";//"#dF4b6688";
        this.colorBarStrokeGrowing = "#1363d0";
        this.colorBarGrad1Growing = "#87dfff";
        this.colorBarGrad2Growing = "#3f85e5";  
        break;    
    case 1:  //green - dispenser        
        this.colorBarBackFill = "#df444444";//"#dF445345";
        this.colorBarStroke = "#005906";
        this.colorBarGrad1 = "#52ff66";
        this.colorBarGrad2 = "#0cae00";
        
        this.colorBarBackFillGrowing = "#df6b6b6b";//"#df5a7957";
        this.colorBarStrokeGrowing = "#137e0b";
        this.colorBarGrad1Growing = "#a9ffb3";
        this.colorBarGrad2Growing = "#40fb32"; 
        break;
    case 2: //fiolet
        this.colorBarBackFill = "#df444444";//"#dF4c4453";
        this.colorBarStroke = "#7c029b";
        this.colorBarGrad1 = "#da44ff";
        this.colorBarGrad2 = "#8e0ed7"; 
          
        this.colorBarBackFillGrowing = "#df6b6b6b";//"#df5a5161";
        this.colorBarStrokeGrowing = "#a902d2";
        this.colorBarGrad1Growing = "#e785ff";
        this.colorBarGrad2Growing = "#af48ea";
        break;
     case 3: //zolte
        this.colorBarBackFill = "#df444444";//"#dF445345";
        this.colorBarStroke = "#f18800";
        this.colorBarGrad1 = "#fdff35";
        this.colorBarGrad2 = "#f3eb31";//"#fdff35"; 
          
        this.colorBarBackFillGrowing = "#df6b6b6b";//"#df5a7957";
        this.colorBarStrokeGrowing = "#ff9d1e";
        this.colorBarGrad1Growing = "#feff8a";
        this.colorBarGrad2Growing = "#ff9b00";
        break;
    default: //czerwone   
        this.colorBarBackFill = "#df444444";//"#dF445345";
        this.colorBarStroke = "#9b0202";
        this.colorBarGrad1 = "#ff5e44";
        this.colorBarGrad2 = "#d70e0e";  
        
        this.colorBarBackFillGrowing = "#df6b6b6b";//"#df5a7957";
        this.colorBarStrokeGrowing = "#f30a26"; 
        this.colorBarGrad1Growing = "#ff5f5f";
        this.colorBarGrad2Growing = "#ff1b1b";
        break;
    }
}

ColorBar.prototype.Modify = function(Status)
{

    switch(Status)
    {
    case 0: //low -zolty- modyfikuje wszytkie z wyjatkiem - colorBarBackFillW i colorBarBackFillGrowingW
        this.colorBarGrad1 = "#fdff35";
        this.colorBarGrad2 = "#fdff35";    
        this.colorBarGrad1Growing = "#feff8a";
        this.colorBarGrad2Growing = "#ff9b00";
        this.colorBarStrokeGrowing = "#ff9d1e";
        this.colorBarStroke = "#f18800";
        break;
    default:    //warning
        this.colorBarGrad1 = "#ff5e44";
        this.colorBarGrad2 = "#d70e0e";  
        this.colorBarGrad1Growing = "#ff5f5f";
        this.colorBarGrad2Growing = "#ff1b1b";
        this.colorBarStrokeGrowing = "#f30a26"; 
        this.colorBarStroke = "#9b0202";
        break;
    }
}