blob: fa7147d9cae52884a43cba37550959d98ccee93d (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater
legacy_header_height="18"
can_minimize="false"
can_tear_off="false"
can_resize="true"
can_drag_on_left="false"
can_close="true"
height="500"
layout="topleft"
name="fast_timers"
save_rect="true"
save_visibility="false"
single_instance="true"
min_width="400"
width="700">
<string name="pause" >Pause</string>
<string name="run">Run</string>
<combo_box name="time_scale_combo"
follows="left|top"
left="10"
top="5"
width="150"
height="20">
<item name="2x Average" label="2x Average"/>
<item name="Max" label="Max"/>
<item name="Recent Max" label="Recent Max"/>
<item name="100ms" label="100ms"/>
</combo_box>
<combo_box name="metric_combo"
follows="left|top"
left_pad="10"
top="5"
width="150"
height="20">
<item name="Time" label="Time"/>
<item name="Number of Calls" label="Number of Calls"/>
<item name="Hz" label="Hz"/>
</combo_box>
<button follows="top|right"
name="pause_btn"
left="-200"
top="5"
width="180"
height="40"
label="Pause"
font="SansSerifHuge"/>
<layout_stack name="legend_stack"
orientation="horizontal"
left="0"
top="50"
right="695"
bottom="500"
follows="all">
<layout_panel name="legend_panel"
auto_resize="false"
user_resize="true"
width="220"
height="450"
min_width="100">
<panel top="0"
left="0"
width="220"
height="440"
name="legend"
follows="all"/>
</layout_panel>
<layout_panel name="timers_panel"
auto_resize="true"
user_resize="true"
height="450"
width="475"
min_width="100">
<layout_stack name="timer_bars_stack"
orientation="vertical"
left="0"
top="0"
width="475"
height="445"
follows="all">
<layout_panel name="bars_panel"
auto_resize="true"
user_resize="true"
top="0"
width="475"
height="210"/>
<layout_panel name="lines_panel"
auto_resize="false"
user_resize="true"
width="475"
min_height="50"
height="240"/>
</layout_stack>
</layout_panel>
</layout_stack>
</floater>
|