This repository has been archived on 2025-04-28. You can view files and clone it, but cannot push or open issues or pull requests.
FireRecord/chrome/content/browserx.xul
David Westgate b7794985c2 Update browserx.xul
Working prototype with playback
2013-04-28 21:10:31 -03:00

36 lines
1.8 KiB
XML

<?xml version="1.0"?>
<?xml-stylesheet href="chrome://linktargetfinder/skin/skin.css" type="text/css"?>
<!DOCTYPE firerecord SYSTEM "chrome://firerecord/locale/translations.dtd">
<overlay id="sample" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script src="fireio.js" type="text/javascript"/>
<script src="fireplay.js" type="text/javascript"/>
<script src="firerecord.js" type="text/javascript"/>
<menupopup id="menu_ToolsPopup">
<menuitem label="&runlinktargetfinder;" key="link-target-finder-run-key" oncommand="firerecord.running()"/>
</menupopup>
<toolbox>
<menubar id="xulschoolhello-menubar">
</menubar>
</toolbox>
<keyset>
<key id="link-target-finder-run-key" modifiers="accel alt shift" key="L" oncommand="firerecord.running()"/>
</keyset>
<toolbar id="status-bar">
<menu id="xulschoolhello-greeting-menu" label="File Options">
<menupopup>
<menuitem label="Open File"
oncommand ="firerecord.openfile()"/>
<menuitem label="New File"
oncommand ="firerecord.newfile()"/>
</menupopup>
</menu>
<statusbarpanel id="link-target-finder-status-bar-icon" label="Record" class="statusbarpanel-iconic"
src="chrome://firerecord/skin/record.png" tooltiptext="Click to start recording to currently loaded script"
onclick="firerecord.running()" />
<statusbarpanel id="Play" type="menu" role="button" label="Play" class="statusbarpanel-iconic"
src="chrome://firerecord/skin/play.png" tooltiptext="Click to playback currently loaded script" onclick="firerecord.playback()" />
</toolbar>
</overlay>