gecko/mobile/chrome/content/prompt/confirm.xul

42 lines
1.6 KiB
Plaintext
Raw Normal View History

<?xml version="1.0"?>
<!DOCTYPE dialog SYSTEM "chrome://browser/locale/prompt.dtd">
<dialog id="prompt-confirm-dialog"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
onload="document.getElementsByAttribute('command', 'cmd_ok')[0].focus()"
onclose="this.PromptHelper.onCloseConfirm(this)"
script="chrome://browser/content/prompt/prompt.js">
<keyset>
<key keycode="VK_RETURN" command="cmd_ok"/>
<key keycode="VK_ESCAPE" command="cmd_cancel"/>
</keyset>
<commandset>
<command id="cmd_ok" oncommand="document.getElementById('prompt-confirm-dialog').PromptHelper.closeConfirm(true)"/>
<command id="cmd_cancel" oncommand="document.getElementById('prompt-confirm-dialog').PromptHelper.closeConfirm(false)"/>
</commandset>
<vbox class="prompt-header" flex="1">
<hbox>
<label id="prompt-confirm-title" class="prompt-title" crop="center" flex="1"/>
<toolbarbutton class="close-button" command="cmd_cancel"/>
</hbox>
<scrollbox orient="vertical" class="prompt-message" flex="1">
<description id="prompt-confirm-message"/>
</scrollbox>
<hbox id="prompt-confirm-checkbox-box" collapsed="true" align="center" class="prompt-message" flex="1">
<label id="prompt-confirm-checkbox-label" class="prompt-checkbox-label" crop="center" flex="1"/>
<checkbox class="toggle-dark" id="prompt-confirm-checkbox"/>
</hbox>
</vbox>
<hbox id="prompt-confirm-buttons-box" class="prompt-buttons">
<button label="&ok.label;" command="cmd_ok"/>
<button label="&cancel.label;" command="cmd_cancel"/>
</hbox>
</dialog>