blob: a69585074ca189b505c5433f02495aaadd34d3e6 (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<!--
Not can_close / no title to avoid window chrome
Single instance - only have one at a time, recycle it each spawn
-->
<floater
legacy_header_height="25"
bevel_style="in"
bg_opaque_image="Inspector_Background"
can_close="false"
can_minimize="false"
height="158"
layout="topleft"
name="inspect_group"
single_instance="true"
sound_flags="0"
visible="true"
width="228">
<string name="PrivateGroup">Private group</string>
<string name="FreeToJoin">Free to join</string>
<string name="CostToJoin">L$[AMOUNT] to join</string>
<string name="YouAreMember">You are a member</string>
<text
follows="all"
font="SansSerifLarge"
height="16"
left="8"
name="group_name"
top="10"
text_color="White"
translate="false"
use_ellipses="true"
width="175"
word_wrap="false">
TestString PleaseIgnore
</text>
<text
follows="all"
font="SansSerifSmall"
text_color="White"
height="16"
left="8"
name="group_subtitle"
use_ellipses="true"
width="175">
123 members
</text>
<text
follows="all"
height="45"
left="8"
name="group_details"
use_ellipses="true"
top_pad="6"
width="220"
word_wrap="true">
A group of folks charged with creating a room with a moose.
Fear the moose! Fear it! And the mongoose too!
</text>
<text
follows="all"
height="13"
left="8"
name="group_cost"
top_pad="13"
width="220">
L$123 to join
</text>
<group_icon
follows="all"
height="38"
right="-10"
mouse_opaque="true"
name="group_icon"
top="10"
width="38"
bevel_style="in" />
<button
follows="bottom|left"
height="23"
label="Join"
left="8"
top="125"
name="join_btn"
width="103"
commit_callback.function="InspectGroup.Join"/>
<button
follows="bottom|left"
height="23"
label="Leave"
left="8"
top="125"
name="leave_btn"
width="103"
commit_callback.function="InspectGroup.Leave"/>
<button
follows="bottom|left"
height="23"
label="View Profile"
name="view_profile_btn"
top="125"
left="117"
width="103"
commit_callback.function="InspectGroup.ViewProfile" />
</floater>
|