uidesigner/com.nokia.sdt.component.symbian.test/data/display/script_visual.js
author fturovic <frank.turovich@nokia.com>
Tue, 15 Sep 2009 16:08:34 -0500
branchRCL_2_2
changeset 491 8d7c9ca50fba
parent 0 fb279309251b
permissions -rw-r--r--
revised splash, welcome, and welcome text for 2.3


function Visual() {
}

Visual.prototype.draw = function(instance, laf, graphics) {

	graphics.setBackground(Colors.getColor(255, 0, 0))

}

Visual.prototype.getPreferredSize = function(instance, laf, wHint, hHint) {
	return new Point(wHint + 10, hHint + 20);	
}

Visual.prototype.getPropertyPaths = function(instance) {
	return new Array("foo")
}

Visual.prototype.getLabelBounds = function(instance, propertyPath, laf) {
	return new Rectangle(0, 0, 10, 10)
}

Visual.prototype.getLabelFont = function(instance, propertyPath, laf) {
	return null;
}