blob: a543c1e6aec3b7c50e41108d0027319841a0eba7 (
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
|
<?xml version="1.0"?>
<!-- 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/. -->
<!DOCTYPE window SYSTEM "chrome://chatzilla/locale/chatzilla.dtd">
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://chatzilla/skin/chatzilla.css" type="text/css"?>
<?xul-overlay href="chrome://chatzilla/content/scripts.xul"?>
<?xul-overlay href="chrome://chatzilla/content/popups.xul"?>
<?xul-overlay href="chrome://chatzilla/content/menus.xul"?>
<window id="chatzilla-window"
xmlns:html="http://www.w3.org/1999/xhtml"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:aaa="http://www.w3.org/2005/07/aaa"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
orient="vertical" onload="onLoad();" onunload="onUnload();"
onclose="return onClose();" onmouseover="onMouseOver(event);"
persist="width height screenX screenY sizemode" windowtype="irc:chatzilla">
<script src="chrome://global/content/contentAreaUtils.js"/>
<script src="chrome://communicator/content/findUtils.js"/>
<html:link rel="icon" href="chrome://chatzilla/skin/images/logo.png" style="display:none"/>
<overlaytarget id="scripts-overlay-target"/>
<overlaytarget id="popup-overlay-target"/>
<overlaytarget id="menu-overlay-target"/>
<stringbundleset id="chatzilla-stringbundle">
<stringbundle id="findBundle" src="chrome://global/locale/finddialog.properties"/>
</stringbundleset>
<vbox id="upper-box" flex="1">
<hbox id="tabpanels-contents-box" flex="1">
<vbox id="user-list-box" width="125" persist="collapsed width">
<tree id="user-list" flex="1" hidecolumnpicker="true"
ondblclick="onUserDoubleClick(event);"
context="context:userlist" aaa:live="off" aria-live="off"
aaa:relevant="additions removals text"
aria-relevant="additions removals text">
<treecols>
<treecol id="usercol" hideheader="true" flex="1"/>
</treecols>
<treechildren/>
</tree>
</vbox> <!-- user-list-box -->
<splitter id="main-splitter" collapse="before" persist="collapsed left">
<grippy/>
</splitter>
<vbox flex="1" id="browser-box">
<deck id="output-deck" flex="1"/>
</vbox>
</hbox> <!-- tabpanels-contents-box -->
<vbox id="tabstrip-box" flex="0" crop="right">
<hbox id="view-tabs" persist="collapsed" flex="1"
ondragover="tabsDNDObserver.onDragOver(event);"
ondragexit="tabsDNDObserver.onDragExit(event);"
ondrop="tabsDNDObserver.onDrop(event);">
<tabs id="views-tbar-inner" flex="1"
onselect="onTabSelect(event)" setfocus="false">
<tab hidden="true"/> <!-- dummy tab to keep the freaking xbl from
causing an exception -->
</tabs>
<spacer id="views-tbar-spacer"/>
</hbox>
<hbox id="tabs-drop-indicator-bar" collapsed="true">
<hbox id="tabs-drop-indicator" mousethrough="always"/>
</hbox>
</vbox>
</vbox> <!-- upper-box -->
<splitter id="input-splitter" orient="vertical" collapse="after"
collapsed="true"/>
<hbox id="input-widgets" align="center">
<button id="server-nick" type="menu" label="" tooltiptext="&server-nick.tooltip;"/>
<hbox id="multiline-box" flex="1" collapsed="true">
<box id="multiline-hug-box" flex="1">
<textbox id="multiline-input" multiline="true" flex="1" height="100px"
class="multiline-input-widget" onfocus="onInputFocus();"
tabindex="-1"/>
</box>
<vbox>
<toolbarbutton id="button-input" flex="1"
oncommand="onMultilineSend(event);"
tooltiptext="&multiline-send.tooltip;" />
<toolbarbutton id="button-multiline-contract"
oncommand="dispatch('pref multiline false');"
tooltiptext="&multiline-contract.tooltip;" />
</vbox>
</hbox>
<hbox id="singleline-box" flex="1" collapsed="true">
<box id="singleline-hug-box" flex="1">
<textbox id="input" class="input-widget" flex="1"
onfocus="onInputFocus();" tabindex="-1"/>
</box>
<toolbarbutton id="button-multiline-expand"
oncommand="dispatch('pref multiline true');"
tooltiptext="&multiline-expand.tooltip;"/>
</hbox>
</hbox>
<statusbar id="status-bar"
class="chromeclass-status"
persist="collapsed">
<statusbarpanel id="component-bar"/>
<statusbarpanel id="status-text" label="" flex="1" crop="right"/>
<statusbarpanel id="status-progress-panel" class="statusbarpanel-progress">
<progressmeter id="status-progress-bar"
class="progressmeter-statusbar"
mode="undetermined"
value="0"/>
</statusbarpanel>
<statusbarpanel id="security-button"
class="statusbarpanel-iconic-text"
dir="reverse"
label=""
oncommand="displayCertificateInfo();"/>
<statusbarpanel id="alert-status"
class="statusbarpanel-iconic"
oncommand="updateAlertIcon(true);"/>
<statusbarpanel id="logging-status"
class="statusbarpanel-iconic"
oncommand="onLoggingIcon();"/>
<statusbarpanel id="offline-status"
class="statusbarpanel-iconic"
oncommand="client.offlineObserver.toggleOffline();"/>
</statusbar>
</window>
|