blob: 8644a1626730fbf2a6dff662dec90e96e0843492 (
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
|
collections {
group {
name: "multibuttonentry_test";
parts{
part {
name: "bg";
type: RECT;
mouse_events: 1;
scale:1;
description {
state: "default" 0.0;
color: 0 0 0 0;
rel1.relative: 0.0 0.0;
rel2.relative: 1.0 1.0;
}
}
part{
name: "top.left";
type: RECT;
scale: 1;
description {
state: "default" 0.0;
min : 0 0;
fixed: 1 1;
rel1 { relative: 0.0 0.0;to:bg; }
rel2 { relative: 0.0 0.0;to:bg; }
align: 0.0 0.0;
color: 0 0 0 0;
}
}
part{
name: "bottom.right";
type: RECT;
scale: 1;
description {
state: "default" 0.0;
min : 0 0;
fixed: 1 1;
rel1 { relative: 1.0 1.0;to:bg; }
rel2 { relative: 1.0 1.0;to:bg; }
align: 1.0 1.0;
color: 0 0 0 0;
}
}
part {
name: "bg.box";
type: RECT;
mouse_events: 0;
scale:1;
description {
state: "default" 0.0;
rel1.to: box;
rel2.to: box;
color: 230 220 188 255;
}
}
part {
name: "box";
type: SWALLOW;
mouse_events: 1;
scale:1;
description {
state: "default" 0.0;
min : 0 5;
fixed: 0 1;
rel1 { relative: 1.0 1.0;to: top.left;}
rel2 { relative: 0.0 1.0;to_x: bottom.right;to_y: top.left;}
align: 0.0 0.0;
}
}
part {
name: "bg.multibuttonentry";
type: RECT;
mouse_events: 0;
scale:1;
description {
state: "default" 0.0;
rel1.to: multibuttonentry;
rel2.to: multibuttonentry;
color: 246 245 237 0;
}
}
part {
name: "multibuttonentry";
type: SWALLOW;
mouse_events: 1;
scale:1;
description {
state: "default" 0.0;
min : 0 5;
fixed: 0 1;
rel1 { relative: 0.0 1.0; to: box; }
rel2 { relative: 0.0 0.0; to:bottom.right; }
align: 0.0 0.0;
}
}
}
}
}
|