uidesigner/com.nokia.sdt.component.symbian.test/data/display/script_layout.js
author john.dean.3@nokia.com
Fri, 06 Nov 2009 12:28:33 -0600
branchRCL_2_4
changeset 567 019adf6accac
parent 0 fb279309251b
permissions -rw-r--r--
Standardized class and method naming after code review



function Layout() {
}

Layout.prototype.layout = function(instance, laf) {
	var existingLaf = findExistingLookAndFeel(instance);
	// this gets called creating the display model, before accessible from data model
	if (existingLaf != null && existingLaf != laf)
		throw new java.lang.IllegalArgumentException("findExistingLookAndFeel failed");


	var children = instance.children;
	var properties = instance.properties;
	
	var childProperties = children[0].properties;
	childProperties.location.x = properties.location.x;
	childProperties.location.y = properties.location.y + 25;
	var prefSize = children[0].getPreferredSize(properties.size.width, properties.size.height - 25);
	childProperties.size.width = prefSize.x;
	childProperties.size.height = prefSize.y;
}

Layout.prototype.getPreferredSize = function(instance, laf, wHint, hHint) {
	return new Point(wHint, hHint);
}