$package("com.qn.ui");

com.qn.ui.Progress = function (){

}
com.qn.ui.Progress.prototype = new js.ui.Component();

com.qn.ui.Progress.prototype.getNativeClass = function (){
	return "com.qn.ui.Progress";
}

com.qn.ui.Progress.prototype.bindUI = function (){
	this.icon = this.ui.getElementsByTagName("img")[0];
	this.message = this.ui.getElementsByTagName("span")[0];
	this.ui.style.zIndex = 9;
	this.icon.src = imagePath + "/progress/progress1.gif";
}

com.qn.ui.Progress.prototype.setMessage = function (msg){
	this.message.innerHTML = msg;
}
com.qn.ui.Progress.prototype.start = function (msg){
	this.show();
	this.center();
	if(msg)	this.message.innerHTML = msg;
}


