blob: 80a8ba3a30e3013c71f4ba801f04420662026581 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
group {
name: "widgets/cslider";
parts {
part {
name: "background";
mouse_events: 0;
description {
state: "default" 0.0;
min: 50 20;
rel1 {
to: "overlay";
}
rel2 {
to: "overlay";
}
image {
normal: "e17_ibar_bg_h.png";
border: 6 6 6 6;
}
fill {
smooth: 0;
}
}
description {
state: "vertical" 0.0;
inherit: "default" 0.0;
min: 20 50;
}
}
part {
name: "content_clip";
type: RECT;
mouse_events: 0;
description {
state: "default" 0.0;
rel1 {
to: "background";
offset: 4 4;
}
rel2 {
to: "background";
offset: -5 -5;
}
color: 255 255 255 255;
}
}
part {
name: "e.swallow.content";
type: SWALLOW;
mouse_events: 0;
clip_to: "content_clip";
description {
state: "default" 0.0;
rel1 {
offset: 4 4;
}
rel2 {
offset: -5 -5;
}
color: 0 0 0 0;
}
}
part {
name: "e.dragable.cursor";
type: RECT;
clip_to: "content_clip";
dragable {
confine: "e.swallow.content";
x: 1 1 0;
y: -1 1 0;
}
description {
state: "default" 0.0;
min: 1 16;
max: 1 9999;
fixed: 1 1;
rel1 {
to: "e.swallow.content";
relative: 0.5 0;
offset: 0 0;
}
rel2 {
to: "e.swallow.content";
relative: 0.5 1;
offset: 0 -1;
}
}
description {
state: "vertical" 0.0;
min: 16 1;
max: 9999 1;
fixed: 1 1;
rel1 {
to: "e.swallow.content";
relative: 0 0.5 ;
offset: 0 0;
}
rel2 {
to: "e.swallow.content";
relative: 1 0.5;
offset: -1 0;
}
}
}
part {
name: "overlay";
mouse_events: 0;
description {
state: "default" 0.0;
image {
normal: "e17_well_overlay.png";
border: 13 13 13 13;
middle: 0;
}
fill {
smooth: 0;
}
}
}
}
programs {
program {
name: "go_vertical";
signal: "e,state,direction,v";
source: "e";
action: STATE_SET "vertical" 0.0;
target: "e.dragable.cursor";
target: "background";
}
}
}
|