blob: 78f795b0e2bb86dc813197201161a5f33f78c716 (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<floater
background_opaque="false"
background_visible="true"
bevel_style="in"
bg_alpha_color="0.3 0.3 0.3 1.0"
height="300"
layout="topleft"
name="nearby_chat"
help_topic="nearby_chat"
save_rect="true"
title="Nearby Chat"
single_instance="true"
width="320">
<panel top="20" width="320" height="30" background_visible="true" background_opaque="false" bg_alpha_color="0.0 0.0 0.0 1.0" name="chat_caption">
<text
width="140" left="25" height="20" follows="left|right|top"
font="SansSerifBigBold" text_color="white" word_wrap="true"
mouse_opaque="true" name="sender_name" >NEARBY CHAT </text>
<icon top="5" left="250"
width="20" height="20" follows="top|right"
color="1 1 1 1" enabled="true" image_name="icn_voice-groupfocus.tga"
mouse_opaque="true" name="nearby_speakers_btn"/>
<icon top="5" left="275"
width="20" height="20" follows="top|right"
color="1 1 1 1" enabled="true" image_name="inv_item_landmark_visited.tga"
mouse_opaque="true" name="tearoff_btn"/>
<icon top="5" left="300"
width="15" height="15" follows="top|right"
color="1 1 1 1" enabled="true" image_name="closebox.tga"
name="close_btn"/>
</panel>
<text_editor
bg_readonly_color="ChatHistoryBgColor"
bg_writeable_color="ChatHistoryBgColor"
follows="left|top|right|bottom"
font="SansSerif"
layout="topleft"
height="320"
max_length="2147483647"
name="Chat History Editor"
read_only="true"
text_color="ChatHistoryTextColor"
text_readonly_color="ChatHistoryTextColor"
bottom="0"
track_bottom="true"
width="250"
word_wrap="true" />
</floater>
|