comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:c10bc63824e7
1 widget TabView {
2 layout = VBox;
3 layout = {
4 spacing = -2;
5 }
6
7 new HBox tabList {
8 layout = {
9 spacing = -1;
10 }
11 }
12
13 [hexpand hfill vexpand vfill] new Group clientArea {
14 shape = Rectangle;
15 style.normal = {
16 background = solid(rgb(.255, .255, .255));
17 border = 1 rgb(.118, .118, .118);
18 }
19 layout = {
20 padding = 5 5;
21 }
22 }
23
24 tabList = sub(tabList);
25 clientArea = sub(clientArea);
26 }