comparison themes/default/Slider.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 HSlider {
2 shape = Rectangle;
3 style.normal = {
4 border = 1 rgb(.118, .118, .118);
5 background = hgradient(rgb(0, 0, 0), rgb(.4, .4, .4));
6 }
7
8 [hexpand hfill] new HWidgetSlider wslider {
9 shape = Rectangle;
10 style.normal = {
11 }
12
13 new Graphic {
14 size = 13 13;
15 style.normal = {
16 background = solid(white);
17 image = file("themes/default/img/hsliderarrow.png");
18 }
19 }
20 }
21
22 wslider = sub(wslider);
23 }
24
25
26
27 widget VSlider {
28 shape = Rectangle;
29 style.normal = {
30 border = 1 rgb(.118, .118, .118);
31 background = vgradient(rgb(.4, .4, .4), rgb(0, 0, 0));
32 }
33
34 [vexpand vfill] new VWidgetSlider wslider {
35 shape = Rectangle;
36 style.normal = {
37 }
38
39 new Graphic {
40 size = 13 13;
41 style.normal = {
42 background = solid(white);
43 image = file("themes/default/img/vsliderarrow.png");
44 }
45 }
46 }
47
48 wslider = sub(wslider);
49 }