view themes/default/FramedTopLevelWindow.cfg @ 0:c10bc63824e7

Initial commit!
author zzzzrrr <mason.green@gmail.com>
date Fri, 20 Mar 2009 06:41:25 -0400
parents
children
line wrap: on
line source

widget FramedTopLevelWindow {
	layout = Layered;
	
	[hfill vfill] new WindowFrame frame {
		text = "Hybrid test app 1";
		
		shape = Rectangle;
		style.normal = {
			background = solid(rgb(.22, .22, .22));
		}
		
		layout = Bin;
		new Group clientArea {
			shape = Rectangle;
			style.normal = {
				background = solid(rgb(.22, .22, .22));
			}
		}
	}
	
	[hfill vfill] new Group overlay {
	}
	
	frame = sub(frame);
	children = sub(frame.clientArea);
	overlay = sub(overlay);
}