-rw-r--r-- | content/photoset-props.xul | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/content/photoset-props.xul b/content/photoset-props.xul index e8f6d13..2efa9e6 100644 --- a/content/photoset-props.xul +++ b/content/photoset-props.xul | |||
@@ -1,38 +1,39 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> | 2 | <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> |
3 | <?xsml-stylesheet href="fireflix.css" type="text/css"?> | 3 | <?xsml-stylesheet href="fireflix.css" type="text/css"?> |
4 | <!DOCTYPE dialog SYSTEM "chrome://fireflix/locale/fireflix.dtd"> | 4 | <!DOCTYPE dialog SYSTEM "chrome://fireflix/locale/fireflix.dtd"> |
5 | <dialog | 5 | <dialog |
6 | xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" | 6 | xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
7 | id="photoset_props" | 7 | id="photoset_props" |
8 | buttons="accept,cancel" | 8 | buttons="accept,cancel" |
9 | defaultbutton="accept" | 9 | defaultbutton="accept" |
10 | title="&photosetprops.title;" | 10 | title="&photosetprops.title;" |
11 | onload="psetprops.init()" | 11 | onload="psetprops.init()" |
12 | ondialogaccept="psetprops.on_accept()" | 12 | ondialogaccept="psetprops.on_accept()" |
13 | > | 13 | > |
14 | 14 | ||
15 | <script src="util.js" type="application/x-javascript"/> | ||
15 | <script src="photoset-props.js" type="application/x-javascript"/> | 16 | <script src="photoset-props.js" type="application/x-javascript"/> |
16 | 17 | ||
17 | <commandset> | 18 | <commandset> |
18 | <command id="cmd_select_picture" | 19 | <command id="cmd_select_picture" |
19 | oncommand="psetprops.on_select_picture(event)"/> | 20 | oncommand="psetprops.on_select_picture(event)"/> |
20 | </commandset> | 21 | </commandset> |
21 | 22 | ||
22 | <hbox class="wholething"> | 23 | <hbox class="wholething"> |
23 | <vbox> | 24 | <vbox> |
24 | <menulist id="primary_picture_list" hidden="true" sizetopopup="always"/> | 25 | <menulist id="primary_picture_list" hidden="true" sizetopopup="always"/> |
25 | <hbox pack="center"> | 26 | <hbox pack="center"> |
26 | <box width="100" pack="center"> | 27 | <box width="100" pack="center"> |
27 | <image id="primary_picture" hidden="true"/> | 28 | <image id="primary_picture" hidden="true"/> |
28 | </box> | 29 | </box> |
29 | </hbox> | 30 | </hbox> |
30 | </vbox> | 31 | </vbox> |
31 | <vbox flex="1" minwidth="300"> | 32 | <vbox flex="1" minwidth="300"> |
32 | <label control="set_title" value="&photosetprops.set_title.label;"/> | 33 | <label control="set_title" value="&photosetprops.set_title.label;"/> |
33 | <textbox id="set_title" /> | 34 | <textbox id="set_title" /> |
34 | <label control="set_desc" value="&photosetprops.set_desc.label;"/> | 35 | <label control="set_desc" value="&photosetprops.set_desc.label;"/> |
35 | <textbox id="set_desc" multiline="true" rows="5" /> | 36 | <textbox id="set_desc" multiline="true" rows="5" /> |
36 | </vbox> | 37 | </vbox> |
37 | </hbox> | 38 | </hbox> |
38 | </dialog> | 39 | </dialog> |