|
| 1 | +<?xml version="1.0"?> |
| 2 | + |
| 3 | +<?xml-stylesheet href="chrome://global/skin/global.css"?> |
| 4 | +<?xml-stylesheet href="chrome://global/skin/findBar.css" type="text/css"?> |
| 5 | +<?xml-stylesheet href="chrome://browser/skin/devtools/widgets.css" type="text/css"?> |
| 6 | + |
| 7 | +<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
| 8 | + xmlns:html="http://www.w3.org/1999/xhtml" |
| 9 | + id="rdpinspectorconnections" |
| 10 | + windowtype="RDPInspectorConnectionList" |
| 11 | + title="RDP Inspector - Connections" |
| 12 | + width="300" height="480" |
| 13 | + screenX="10" screenY="10" |
| 14 | + persist="screenX screenY width height sizemode"> |
| 15 | + |
| 16 | + <!-- Firefox Files --> |
| 17 | + <script xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" type="application/javascript;version=1.8" |
| 18 | + src="chrome://browser/content/devtools/theme-switching.js"/> |
| 19 | + <script type="application/x-javascript" src="chrome://global/content/globalOverlay.js"/> |
| 20 | + <script type="application/x-javascript" src="chrome://global/content/findBar.js"/> |
| 21 | + |
| 22 | + <!-- String Bundles --> |
| 23 | + <stringbundle id="bundle_findBar" src="chrome://global/locale/findbar.properties"/> |
| 24 | + |
| 25 | + <!-- Commands --> |
| 26 | + <commandset id="mainCommandSet"> |
| 27 | + <command id="cmd_find" oncommand="gFindBar.onFindCommand();"/> |
| 28 | + <command id="cmd_findAgain" oncommand="gFindBar.onFindAgainCmd();"/> |
| 29 | + <command id="cmd_findPrevious" oncommand="gFindBar.onFindPreviousCmd();"/> |
| 30 | + </commandset> |
| 31 | + |
| 32 | + <keyset id="mainKeyset"> |
| 33 | + <key id="key_find" key="f" command="cmd_find" modifiers="accel"/> |
| 34 | + </keyset> |
| 35 | + |
| 36 | + <!-- Application Content --> |
| 37 | + <vbox flex="1"> |
| 38 | + |
| 39 | + <!-- React UI Container --> |
| 40 | + <browser id="contentFrame" type="content-primary" flex="1" |
| 41 | + disablehistory="true" /> |
| 42 | + |
| 43 | + <!-- Search bar --> |
| 44 | + <findbar id="FindToolbar" browserid="contentFrame"/> |
| 45 | + |
| 46 | + <script type="application/x-javascript"> |
| 47 | + window.gFindBar = document.getElementById("FindToolbar"); |
| 48 | + </script> |
| 49 | + </vbox> |
| 50 | +</window> |
0 commit comments