view themes/default/TabView.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 TabView {
	layout = VBox;
	layout = {
		spacing = -2;
	}

	new HBox tabList {
		layout = {
			spacing = -1;
		}
	}
	
	[hexpand hfill vexpand vfill] new Group clientArea {
		shape = Rectangle;
		style.normal = {
			background = solid(rgb(.255, .255, .255));
			border = 1 rgb(.118, .118, .118);
		}
		layout = {
			padding = 5 5;
		}
	}
	
	tabList = sub(tabList);
	clientArea = sub(clientArea);
}