summaryrefslogtreecommitdiffabout
path: root/content/photoset-props.xul
Side-by-side diff
Diffstat (limited to 'content/photoset-props.xul') (more/less context) (ignore 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 @@
+<?xml version="1.0" encoding="utf-8"?>
+<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
+<?xsml-stylesheet href="fireflix.css" type="text/css"?>
+<!DOCTYPE dialog SYSTEM "chrome://fireflix/locale/fireflix.dtd">
+<dialog
+ xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
+ id="photoset_props"
+ buttons="accept,cancel"
+ defaultbutton="accept"
+ title="&photosetprops.title;"
+ onload="psetprops.init()"
+ ondialogaccept="psetprops.on_accept()"
+ >
+
+ <script src="photoset-props.js" type="application/x-javascript"/>
+
+ <commandset>
+ <command id="cmd_select_picture"
+ oncommand="psetprops.on_select_picture(event)"/>
+ </commandset>
+
+ <hbox class="wholething">
+ <vbox>
+ <menulist id="primary_picture_list" hidden="true" sizetopopup="always"/>
+ <hbox pack="center">
+ <box width="100" pack="center">
+ <image id="primary_picture" hidden="true"/>
+ </box>
+ </hbox>
+ </vbox>
+ <vbox flex="1" minwidth="300">
+ <label control="set_title" value="&photosetprops.set_title.label;"/>
+ <textbox id="set_title" />
+ <label control="set_desc" value="&photosetprops.set_desc.label;"/>
+ <textbox id="set_desc" multiline="true" rows="5" />
+ </vbox>
+ </hbox>
+</dialog>