author | Michael Krelin <hacker@klever.net> | 2006-09-26 19:21:57 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2006-09-26 19:21:57 (UTC) |
commit | c5ea6ff7abd6e376ae151c9724d24f6fe156766e (patch) (unidiff) | |
tree | 0df2e4ecf02f89c4b85d1950b5c6f4fd2f67f9bd /content/photoset-props.xul | |
parent | 5207247fdc837ae9de1d81db903f6cd92532595e (diff) | |
download | fireflix-0.0.zip fireflix-0.0.tar.gz fireflix-0.0.tar.bz2 |
Initial import into public repository0.0
git-svn-id: http://svn.klever.net/kin/fireflix/trunk@159 fe716a7a-6dde-0310-88d9-d003556173a8
-rw-r--r-- | content/photoset-props.xul | 38 |
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> | ||