blob: fbb1133e4bc652d20302c98596e72d29ac6e16c0 (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true"
min_height="300" min_width="400" name="inspect"
rect_control="FloaterInspectRect" title="Inspect Objects">
<scroll_list bottom="30" can_resize="false" column_padding="0" draw_heading="true"
follows="top|right|left|bottom" left="10" multi_select="false"
name="object_list" right="-10"
tool_tip="Select an object from this list to highlight it in-world"
top="-20">
<column dynamicwidth="true" label="Object Name" name="object_name" />
<column dynamicwidth="true" label="Owner Name" name="owner_name" />
<column dynamicwidth="true" label="Creator Name" name="creator_name" />
<column label="Creation Date" name="creation_date" width="150" />
</scroll_list>
<button bottom="5" follows="left|bottom" font="SansSerif" halign="center" height="20"
label="See Owner Profile..." label_selected="" left="10"
mouse_opaque="true" name="button owner"
tool_tip="See profile of the highlighted object's owner" width="150" />
<button bottom="5" follows="left|bottom" font="SansSerif" halign="center" height="20"
label="See Creator Profile..." label_selected="" left="170"
mouse_opaque="true" name="button creator"
tool_tip="See profile of the highlighted object's original creator"
width="150" />
</floater>
|