-rw-r--r-- | content/about.xul | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/content/about.xul b/content/about.xul new file mode 100644 index 0000000..1cb13d4 --- a/dev/null +++ b/content/about.xul | |||
@@ -0,0 +1,45 @@ | |||
1 | <?xml version="1.0"?> | ||
2 | <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> | ||
3 | <?xml-stylesheet href="fireflix.css" type="text/css"?> | ||
4 | <!DOCTYPE window SYSTEM "chrome://fireflix/locale/fireflix.dtd"> | ||
5 | <window | ||
6 | xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" | ||
7 | id="aboutFireflix" title="&aboutFireflix;" | ||
8 | orient="vertical" | ||
9 | width="400" height="200" | ||
10 | > | ||
11 | |||
12 | <hbox class="about wholething" flex="1"> | ||
13 | <hbox flex="1" class="insides"> | ||
14 | <vbox> | ||
15 | <spacer flex="1"/> | ||
16 | <image src="icons/32x32/fireflix.png" width="32" height="32" /> | ||
17 | <spacer flex="1"/> | ||
18 | </vbox> | ||
19 | <groupbox flex="1" class="text" orient="vertical"> | ||
20 | <spacer flex="2"/> | ||
21 | <hbox> | ||
22 | <spacer flex="1"/> | ||
23 | <label value="Fireflix &autoconf.version;" class="title"/> | ||
24 | <spacer flex="1"/> | ||
25 | </hbox> | ||
26 | <spacer flex="1"/> | ||
27 | <hbox> | ||
28 | <label value="Copyright © 2006 "/> | ||
29 | <label value="Klever Group" class="link" | ||
30 | onclick="window.openDialog('chrome://browser/content/browser.xul','_blank','chrome,all,dialog=no','http://www.klever.net/',null,null)" /> | ||
31 | </hbox> | ||
32 | <spacer flex="2"/> | ||
33 | </groupbox> | ||
34 | <vbox> | ||
35 | <spacer flex="10" /> | ||
36 | <button label="&about.license.label;" tooltiptext="&about.license.tip;" | ||
37 | oncommand="window.openDialog('chrome://fireflix/content/copying.xul','copying')" /> | ||
38 | <spacer flex="2" /> | ||
39 | <button label="OK" oncommand="window.close()"/> | ||
40 | <spacer flex="1" /> | ||
41 | </vbox> | ||
42 | </hbox> | ||
43 | </hbox> | ||
44 | |||
45 | </window> | ||