summaryrefslogtreecommitdiff
path: root/toolkit/devtools/profiler/profiler.xul
blob: aa1217f957fb425c6e4466b11b4c23f44c938aac (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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<?xml version="1.0" encoding="utf-8"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<?xml-stylesheet href="chrome://browser/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://browser/content/devtools/widgets.css" type="text/css"?>
<?xml-stylesheet href="chrome://browser/skin/devtools/common.css" type="text/css"?>
<?xml-stylesheet href="chrome://browser/skin/devtools/widgets.css" type="text/css"?>
<?xml-stylesheet href="chrome://browser/skin/devtools/profiler.css" type="text/css"?>
<!DOCTYPE window [
  <!ENTITY % profilerDTD SYSTEM "chrome://browser/locale/devtools/profiler.dtd">
  %profilerDTD;
]>

<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  <script src="chrome://browser/content/devtools/theme-switching.js"/>
  <script type="application/javascript" src="profiler.js"/>
  <script type="application/javascript" src="ui-recordings.js"/>
  <script type="application/javascript" src="ui-profile.js"/>

  <hbox class="theme-body" flex="1">
    <vbox id="recordings-pane">
      <toolbar id="recordings-toolbar"
               class="devtools-toolbar">
        <hbox id="recordings-controls"
              class="devtools-toolbarbutton-group">
          <toolbarbutton id="record-button"
                         class="devtools-toolbarbutton"
                         oncommand="RecordingsListView._onRecordButtonClick()"
                         tooltiptext="&profilerUI.recordButton.tooltip;"/>
          <toolbarbutton id="import-button"
                         class="devtools-toolbarbutton"
                         oncommand="RecordingsListView._onImportButtonClick()"
                         label="&profilerUI.importButton;"/>
          <toolbarbutton id="clear-button"
                         class="devtools-toolbarbutton"
                         oncommand="RecordingsListView._onClearButtonClick()"
                         label="&profilerUI.clearButton;"/>
        </hbox>
      </toolbar>
      <vbox id="recordings-list" flex="1"/>
      <splitter class="devtools-horizontal-splitter" />
      <vbox id="profile-options" class="devtools-toolbar">
        <checkbox id="invert-tree" label="&profilerUI.invertTree;"
                  tooltiptext="&profilerUI.invertTree.tooltiptext;" />
      </vbox>
    </vbox>

    <deck id="profile-pane"
          class="devtools-responsive-container"
          flex="1">
      <hbox id="empty-notice"
            class="notice-container"
            align="center"
            pack="center"
            flex="1">
        <label value="&profilerUI.emptyNotice1;"/>
        <button id="profiling-notice-button"
                class="devtools-toolbarbutton"
                standalone="true"
                oncommand="RecordingsListView._onRecordButtonClick()"/>
        <label value="&profilerUI.emptyNotice2;"/>
      </hbox>

      <hbox id="recording-notice"
            class="notice-container"
            align="center"
            pack="center"
            flex="1">
        <label value="&profilerUI.stopNotice1;"/>
        <button id="profiling-notice-button"
                class="devtools-toolbarbutton"
                standalone="true"
                checked="true"
                oncommand="RecordingsListView._onRecordButtonClick()"/>
        <label value="&profilerUI.stopNotice2;"/>
      </hbox>

      <hbox id="loading-notice"
            class="notice-container"
            align="center"
            pack="center"
            flex="1">
        <label value="&profilerUI.loadingNotice;"/>
      </hbox>

      <tabbox id="profile-content"
              class="theme-sidebar devtools-sidebar-tabs"
              flex="1">
        <hbox>
          <tabs/>
          <button id="profile-newtab-button"
                  tooltiptext="&profilerUI.newtab.tooltiptext;"/>
        </hbox>
        <tabpanels flex="1"/>
      </tabbox>
    </deck>
  </hbox>

  <template>
    <!-- Template for a tab inside the #profile-content tabbox. -->
    <tab id="profile-content-tab-template" covered="true">
      <label class="tab-title-label"/>
    </tab>

    <!-- Template for a panel inside the #profile-content tabbox. -->
    <tabpanel id="profile-content-tabpanel-template">
      <vbox class="framerate"/>
      <vbox class="categories"/>
      <vbox class="call-tree" flex="1">
        <hbox class="call-tree-headers-container">
          <label class="plain call-tree-header"
                 type="duration"
                 crop="end"
                 value="&profilerUI.table.totalDuration2;"/>
          <label class="plain call-tree-header"
                 type="percentage"
                 crop="end"
                 value="&profilerUI.table.totalPercentage;"/>
          <label class="plain call-tree-header"
                 type="self-duration"
                 crop="end"
                 value="&profilerUI.table.selfDuration2;"/>
          <label class="plain call-tree-header"
                 type="self-percentage"
                 crop="end"
                 value="&profilerUI.table.selfPercentage;"/>
          <label class="plain call-tree-header"
                 type="samples"
                 crop="end"
                 value="&profilerUI.table.samples;"/>
          <label class="plain call-tree-header"
                 type="function"
                 crop="end"
                 value="&profilerUI.table.function;"/>
        </hbox>
        <vbox class="call-tree-cells-container" flex="1"/>
      </vbox>
    </tabpanel>
  </template>

</window>