PropertyWindow.js
Summary
No overview generated for 'PropertyWindow.js'
draw2d.PropertyWindow=function()
{
this.currentSelection = null;
draw2d.Window.call(this,"Property Window");
this.setDimension(200,100);
}
draw2d.PropertyWindow.prototype = new draw2d.Window;
draw2d.PropertyWindow.prototype.type="PropertyWindow";
draw2d.PropertyWindow.prototype.dispose=function()
{
draw2d.Window.prototype.dispose.call(this);
}
draw2d.PropertyWindow.prototype.createHTMLElement=function()
{
var item = draw2d.Window.prototype.createHTMLElement.call(this);
item.appendChild(this.createLabel("Type:", 15,25));
item.appendChild(this.createLabel("X :", 15,50));
item.appendChild(this.createLabel("Y :", 15,70));
item.appendChild(this.createLabel("Width :", 85,50));
item.appendChild(this.createLabel("Height :", 85,70));
this.labelType = this.createLabel("",50,25);
this.labelX = this.createLabel("",40,50);
this.labelY = this.createLabel("",40,70);
this.labelWidth = this.createLabel("",135,50);
this.labelHeight = this.createLabel("",135,70);
this.labelType.style.fontWeight="normal";
this.labelX.style.fontWeight="normal";
this.labelY.style.fontWeight="normal";
this.labelWidth.style.fontWeight="normal";
this.labelHeight.style.fontWeight="normal";
item.appendChild(this.labelType);
item.appendChild(this.labelX);
item.appendChild(this.labelY);
item.appendChild(this.labelWidth);
item.appendChild(this.labelHeight);
return item;
}
draw2d.PropertyWindow.prototype.onSelectionChanged=function(figure )
{
draw2d.Window.prototype.onSelectionChanged.call(this,figure);
if(this.currentSelection!=null)
this.currentSelection.detachMoveListener(this);
this.currentSelection = figure;
if(figure!=null && figure !=this)
{
this.labelType.innerHTML=figure.type;
if(figure.getX)
{
this.labelX.innerHTML=figure.getX();
this.labelY.innerHTML=figure.getY();
this.labelWidth.innerHTML=figure.getWidth();
this.labelHeight.innerHTML=figure.getHeight();
this.currentSelection = figure;
this.currentSelection.attachMoveListener(this);
}
else
{
this.labelX.innerHTML="";
this.labelY.innerHTML="";
this.labelWidth.innerHTML="";
this.labelHeight.innerHTML="";
}
}
else
{
this.labelType.innerHTML="<none>";
this.labelX.innerHTML="";
this.labelY.innerHTML="";
this.labelWidth.innerHTML="";
this.labelHeight.innerHTML="";
}
}
draw2d.PropertyWindow.prototype.getCurrentSelection=function()
{
return this.currentSelection;
}
draw2d.PropertyWindow.prototype.onOtherFigureMoved=function(figure )
{
if(figure == this.currentSelection)
this.onSelectionChanged(figure);
}
draw2d.PropertyWindow.prototype.createLabel=function(text , x , y )
{
var l = document.createElement("div");
l.style.position="absolute";
l.style.left = x+"px";
l.style.top = y+"px";
l.style.font="normal 10px verdana";
l.style.whiteSpace="nowrap";
l.style.fontWeight="bold";
l.innerHTML = text;
return l;
}
Documentation generated by
JSDoc on Thu Feb 7 23:45:47 2008