mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-10 18:00:15 +01:00
32 lines
1.7 KiB
XML
32 lines
1.7 KiB
XML
|
<?xml version="1.0"?>
|
||
|
|
||
|
<bindings id="platformDialogBindings"
|
||
|
xmlns="http://www.mozilla.org/xbl"
|
||
|
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||
|
xmlns:xbl="http://www.mozilla.org/xbl">
|
||
|
|
||
|
<binding id="dialog" extends="chrome://global/content/bindings/dialog.xml#dialog">
|
||
|
<content>
|
||
|
<xul:vbox class="box-inherit dialog-content-box" flex="1">
|
||
|
<children/>
|
||
|
</xul:vbox>
|
||
|
|
||
|
<xul:hbox class="dialog-button-box"
|
||
|
xbl:inherits="pack=buttonpack,align=buttonalign,dir=buttondir,orient=buttonorient">
|
||
|
<xul:button dlgtype="disclosure" class="dialog-button" hidden="true" xbl:inherits="label=buttonlabeldisclosure,accesskey=buttonaccesskeydisclosure"/>
|
||
|
<xul:button dlgtype="help" class="dialog-button" hidden="true" xbl:inherits="label=buttonlabelhelp,accesskey=buttonaccesskeyhelp"/>
|
||
|
<xul:button dlgtype="extra2" class="dialog-button" hidden="true" label="" xbl:inherits="label=buttonlabelextra2,accesskey=buttonaccesskeyextra2"/>
|
||
|
<xul:button dlgtype="extra1" class="dialog-button" hidden="true" label="" xbl:inherits="label=buttonlabelextra1,accesskey=buttonaccesskeyextra1"/>
|
||
|
<xul:spacer flex="1"/>
|
||
|
<xul:button dlgtype="cancel" class="dialog-button" xbl:inherits="label=buttonlabelcancel,accesskey=buttonaccesskeycancel"/>
|
||
|
<xul:button dlgtype="accept" class="dialog-button" xbl:inherits="label=buttonlabelaccept,accesskey=buttonaccesskeyaccept,disabled=buttondisabledaccept"/>
|
||
|
</xul:hbox>
|
||
|
</content>
|
||
|
|
||
|
<handlers>
|
||
|
<handler event="keypress" key="." modifiers="meta" phase="capturing" action="this.cancelDialog();"/>
|
||
|
</handlers>
|
||
|
</binding>
|
||
|
|
||
|
</bindings>
|