$package("com.qn.ui");

com.qn.ui.DesktopIconRenderer = function (owner){
	this.owner = owner;
}

com.qn.ui.DesktopIconRenderer.prototype = new com.qn.ui.FileIconRenderer();

com.qn.ui.DesktopIconRenderer.prototype.size = 32;

com.qn.ui.DesktopIconRenderer.prototype.style = 1;


com.qn.ui.DesktopIconRenderer.prototype.bindUI = function (){
	this.__superBindUI = com.qn.ui.FileIconRenderer.prototype.bindUI;
	this.__superBindUI();
	this.ui.style.width = 64;
	this.text.className += " lightText";
}


