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