view themes/default/Input.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 Input {
	shape = Rectangle;
	layout = Bin;
	layout = {
		padding = 3 3;
	}
	
	style.normal = {
		background = solid(rgba(.3, .3, .3, 1));
		border = 1 black;
	}
	
	[hexpand vexpand hfill vfill] new InputArea area {
		style.normal = {
			textInput = {
				caretColor = white;
			}
		}
	}
	
	text = prop(area.text);
	font = prop(area.font);
	fontFace = prop(area.fontFace);
	fontSize = prop(area.fontSize);
	hasFocus = prop(area.hasFocus);
	inputArea = sub(area);
}