blob: cf84c31078a2758687008b8abd432779e24dcb81 (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<panel
background_visible="true"
bg_alpha_color="DkGray"
border="false"
follows="all"
height="200"
left="0"
name="cof_wearables"
width="311">
<accordion
follows="all"
height="200"
layout="topleft"
left="0"
single_expansion="true"
top="0"
name="cof_wearables_accordion"
background_visible="true"
bg_alpha_color="DkGray2"
width="311">
<accordion_tab
layout="topleft"
name="tab_attachments"
title="Attachments">
<flat_list_view
allow_select="true"
follows="all"
height="10"
layout="topleft"
left="0"
multi_select="true"
name="list_attachments"
top="0"
width="311" />
</accordion_tab>
<accordion_tab
layout="topleft"
name="tab_clothing"
title="Clothing">
<!-- *NOTE there should be no any gaps between the button bar and the list -
accordiong-list adaptor won't employ them while calculating new height when the size of the list changes -->
<panel
background_visible="false"
class="accordion_list_adaptor"
follows="all"
height="45"
layout="topleft"
left="0"
name="button_bar_adaptor"
top="0"
width="311">
<panel
bevel="none"
filename="panel_clothing_list_button_bar.xml"
height="35"
name="button_bar"
top="0"
width="311" />
<flat_list_view
allow_select="true"
follows="all"
height="10"
layout="topleft"
left="0"
multi_select="true"
name="list_clothing"
top_pad="0"
width="311" />
</panel>
</accordion_tab>
<accordion_tab
layout="topleft"
name="tab_body_parts"
title="Body Parts">
<!-- *NOTE there should be no any gaps between the button bar and the list -
accordiong-list adaptor won't employ them while calculating new height when the size of the list changes -->
<panel
background_visible="false"
class="accordion_list_adaptor"
follows="all"
height="45"
layout="topleft"
left="0"
name="button_bar_adaptor"
top="0"
width="311">
<panel
bevel="none"
filename="panel_bodyparts_list_button_bar.xml"
height="35"
name="button_bar"
top="0"
width="311"/>
<flat_list_view
allow_select="true"
follows="all"
height="10"
layout="topleft"
left="0"
multi_select="true"
name="list_body_parts"
top_pad="0"
width="311" />
</panel>
</accordion_tab>
</accordion>
</panel>
|