diff 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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/themes/default/Input.cfg	Fri Mar 20 06:41:25 2009 -0400
@@ -0,0 +1,27 @@
+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);
+}