use center-aligned hboxes to makes labels and textboxes etc. line up nicely
[mandelbrot.git] / xulapp / chrome / mandelbrot / content / mandelbrot.xul
CommitLineData
37b05b56 1<?xml version="1.0"?>
5b823560
RK
2
3<!-- ***** BEGIN LICENSE BLOCK *****
4 - Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 -
6 - The contents of this file are subject to the Mozilla Public License Version
7 - 1.1 (the "License"); you may not use this file except in compliance with
8 - the License. You may obtain a copy of the License at
9 - http://www.mozilla.org/MPL/
10 -
11 - Software distributed under the License is distributed on an "AS IS" basis,
12 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 - for the specific language governing rights and limitations under the
14 - License.
15 -
16 - The Original Code is KaiRo.at Mandelbrot, XULRunner version.
17 -
18 - The Initial Developer of the Original Code is
19 - Robert Kaiser <kairo@kairo.at>.
20 - Portions created by the Initial Developer are Copyright (C) 2008
21 - the Initial Developer. All Rights Reserved.
22 -
23 - Contributor(s):
24 - Robert Kaiser <kairo@kairo.at>
25 -
26 - Alternatively, the contents of this file may be used under the terms of
27 - either the GNU General Public License Version 2 or later (the "GPL"), or
28 - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
29 - in which case the provisions of the GPL or the LGPL are applicable instead
30 - of those above. If you wish to allow use of your version of this file only
31 - under the terms of either the GPL or the LGPL, and not to allow others to
32 - use your version of this file under the terms of the MPL, indicate your
33 - decision by deleting the provisions above and replace them with the notice
34 - and other provisions required by the LGPL or the GPL. If you do not delete
35 - the provisions above, a recipient may use your version of this file under
36 - the terms of any one of the MPL, the GPL or the LGPL.
37 -
38 - ***** END LICENSE BLOCK ***** -->
39
37b05b56
RK
40<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
41<?xml-stylesheet href="chrome://mandelbrot/skin/" type="text/css"?>
42
43<!DOCTYPE window [
44 <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
45 %brandDTD;
46 <!ENTITY % mandelbrotDTD SYSTEM "chrome://mandelbrot/locale/mandelbrot.dtd">
47 %mandelbrotDTD;
48]>
49
50<window id="mandelbrotWindow" title="&windowTitle;"
51 width="350" height="450"
6e98af87 52 onload="Startup()"
37b05b56
RK
53 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
54 xmlns:html="http://www.w3.org/1999/xhtml">
6e98af87 55
37b05b56
RK
56 <script type="application/x-javascript"
57 src="chrome://mandelbrot/content/mandelbrot.js"/>
6e98af87
RK
58
59 <stringbundleset id="stringbundleset">
60 <stringbundle id="mbrotBundle" src="chrome://mandelbrot/locale/mandelbrot.properties"/>
61 </stringbundleset>
62
37b05b56
RK
63 <toolbox>
64 <menubar>
6e98af87
RK
65 <menu id="fileMenu" label="&fileMenu.label;">
66 <menupopup id="menu_filePopup">
67 <menuitem id="fileDraw" label="&fileDraw.label;" oncommand="drawImage();"/>
68 <menuitem id="fileSave" label="&fileSave.label;" oncommand="saveImage();"/>
37b05b56 69 <menuseparator/>
6e98af87 70 <menuitem id="fileQuit" label="&fileQuit.label;" oncommand="quitApp(false);"/>
37b05b56
RK
71 </menupopup>
72 </menu>
6e98af87
RK
73 <menu id="prefMenu" label="&prefMenu.label;">
74 <menupopup id="menu_prefPopup">
75 <menu id="iterMenu" label="&iterMenu.label;">
76 <menupopup id="menu_iterPopup" onpopupshowing="updateIterMenu();" oncommand="setIter(event.target.value);">
77 <menuitem type="radio" name="iter" value="50" label="&iter50.label;"/>
78 <menuitem type="radio" name="iter" value="100" label="&iter100.label;"/>
79 <menuitem type="radio" name="iter" value="500" label="&iter500.label;"/>
80 <menuitem type="radio" name="iter" value="1000" label="&iter1000.label;"/>
25de2bfe
RK
81 </menupopup>
82 </menu>
6e98af87
RK
83 <menu id="colorMenu" label="&colorMenu.label;">
84 <menupopup id="menu_palettePopup" onpopupshowing="updatePaletteMenu();" oncommand="setPalette(event.target.value);">
85 <menuitem type="radio" name="palette" value="bw" label="&colorBW.label;"/>
86 <menuitem type="radio" name="palette" value="kairo" label="&colorKairo.label;"/>
87 </menupopup>
88 </menu>
6403d662 89 <menuitem id="imgSettings" label="&imgSettings.label;" oncommand="imgSettings();"/>
6e98af87
RK
90 </menupopup>
91 </menu>
92 <menu id="debugMenu" label="&debugMenu.label;">
93 <menupopup id="menu_debugPopup" onpopupshowing="updateDebugMenu();">
94 <menuitem type="checkbox" id="jitEnabled" label="&jitEnabled.label;" oncommand="toggleJITState(event.target);"/>
95 <menu id="algoMenu" label="&algoMenu.label;">
96 <menupopup id="menu_algoPopup" onpopupshowing="updateAlgoMenu();" oncommand="setAlgorithm(event.target.value);">
97 <menuitem type="radio" name="algorithm" value="numeric" label="&algoNumeric.label;"/>
98 <menuitem type="radio" name="algorithm" value="oo" label="&algoOO.label;"/>
25de2bfe
RK
99 </menupopup>
100 </menu>
af3c147c
RK
101 <menuitem id="errorConsole" label="&errorConsole.label;"
102 oncommand="errorConsole();"/>
103 <menuitem id="addonsMgr" label="&addonsManager.label;"
104 oncommand="addonsManager();"/>
25de2bfe
RK
105 </menupopup>
106 </menu>
37b05b56
RK
107 </menubar>
108 </toolbox>
37b05b56 109 <hbox flex="1" pack="center" align="center">
5366c7d6
RK
110 <stack>
111 <html:canvas id="mbrotImage" width="300" height="300"></html:canvas>
112 <button id="drawButton" label="&fileDraw.label;" oncommand="drawImage();"/>
113 </stack>
37b05b56 114 </hbox>
6e98af87
RK
115 <hbox pack="end" align="end">
116 <description id="statusLabel"/>
117 </hbox>
37b05b56 118</window>