OLD | NEW |
1 <?xml version="1.0"?> | 1 <?xml version="1.0"?> |
2 | 2 |
3 <!-- This Source Code is subject to the terms of the Mozilla Public License | 3 <!-- This Source Code is subject to the terms of the Mozilla Public License |
4 - version 2.0 (the "License"). You can obtain a copy of the License at | 4 - version 2.0 (the "License"). You can obtain a copy of the License at |
5 - http://mozilla.org/MPL/2.0/. --> | 5 - http://mozilla.org/MPL/2.0/. --> |
6 | 6 |
7 <!DOCTYPE overlay SYSTEM "chrome://elemhidehelper/locale/composer.dtd"> | 7 <!DOCTYPE overlay SYSTEM "chrome://elemhidehelper/locale/composer.dtd"> |
8 | 8 |
9 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> | 9 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> |
10 <?xml-stylesheet href="chrome://elemhidehelper/skin/composer.css" type="text/css
"?> | 10 <?xml-stylesheet href="chrome://elemhidehelper/skin/composer.css" type="text/css
"?> |
11 | 11 |
12 <dialog id="ehh-composer" | 12 <dialog id="ehh-composer" |
13 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" | 13 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
14 title="&dialog.title;" | 14 title="&dialog.title;" |
15 onload="init();" | 15 onload="init();" |
16 ondialogaccept="addExpression();" | 16 ondialogaccept="addExpression();" |
17 ondialogdisclosure="setAdvancedMode(!advancedMode);" | 17 ondialogdisclosure="setAdvancedMode(!advancedMode);" |
18 onunload="togglePreview(false, true);" | |
19 buttons="accept,cancel,disclosure" | 18 buttons="accept,cancel,disclosure" |
20 width="600px" | 19 width="600px" |
21 height="400px" | 20 height="400px" |
22 persist="screenX screenY width height sizemode advancedMode" | 21 persist="screenX screenY width height sizemode advancedMode" |
23 advancedMode="false" | 22 advancedMode="false" |
24 buttonlabelaccept="&accept.label;" | 23 buttonlabelaccept="&accept.label;" |
25 buttonlabeldisclosure="&advanced.label;" | 24 buttonlabeldisclosure="&advanced.label;" |
26 buttonlabeldisclosure_on="&advanced.label;" | 25 buttonlabeldisclosure_on="&advanced.label;" |
27 buttonlabeldisclosure_off="&basic.label;" | 26 buttonlabeldisclosure_off="&basic.label;" |
28 windowtype="ehh:composer"> | 27 windowtype="ehh:composer"> |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 <splitter id="nodes-tree-splitter"/> | 74 <splitter id="nodes-tree-splitter"/> |
76 <scrollbox id="attributes-list" orient="vertical" flex="1" | 75 <scrollbox id="attributes-list" orient="vertical" flex="1" |
77 _labeltagname="&attributes.tagname.label;" | 76 _labeltagname="&attributes.tagname.label;" |
78 _labelfirstchild="&attributes.firstchild.label;" | 77 _labelfirstchild="&attributes.firstchild.label;" |
79 _labellastchild="&attributes.lastchild.label;" | 78 _labellastchild="&attributes.lastchild.label;" |
80 _labelcustom="&attributes.custom.label;"/> | 79 _labelcustom="&attributes.custom.label;"/> |
81 </hbox> | 80 </hbox> |
82 </groupbox> | 81 </groupbox> |
83 </hbox> | 82 </hbox> |
84 </dialog> | 83 </dialog> |
OLD | NEW |