add item to new Firefox button menu, make Firefox and SeaMonkey open Mandelbrot in...
[mandelbrot.git] / xulapp / chrome / mandelbrot / content / mandelbrot-tab.xul
... / ...
CommitLineData
1<?xml version="1.0"?>
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-2011
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
40<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
41<?xml-stylesheet href="chrome://mandelbrot/skin/" type="text/css"?>
42
43<!DOCTYPE page [
44 <!ENTITY % mandelOverlayDTD SYSTEM "chrome://mandelbrot/locale/mandelbrot-overlay.dtd">
45 %mandelOverlayDTD;
46 <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
47 %brandDTD;
48 <!ENTITY % mandelbrotDTD SYSTEM "chrome://mandelbrot/locale/mandelbrot.dtd">
49 %mandelbrotDTD;
50]>
51
52<page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
53 xmlns:html="http://www.w3.org/1999/xhtml"
54 id="mandelbrotWindow" title="&windowTitle;"
55 disablefastfind="true"
56 onload="Startup();">
57
58 <html:link rel="shortcut icon"
59 href="chrome://mandelbrot/skin/mandelbrotIcon16.png"/>
60
61 <script type="application/x-javascript"
62 src="chrome://mandelbrot/content/mandelbrot.js"/>
63
64 <stringbundleset id="stringbundleset">
65 <stringbundle id="mbrotBundle" src="chrome://mandelbrot/locale/mandelbrot.properties"/>
66 </stringbundleset>
67
68 <commandset id="mainCommands">
69 </commandset>
70
71 <toolbox>
72 <toolbar class="chromeclass-toolbar"
73 id="mandelbrotToolbar"
74 align="center">
75 <toolbarbutton id="fileMenu"
76 type="menu"
77 class="tabbable"
78 label="&fileMenu.label;">
79 <menupopup id="menu_filePopup">
80 <menuitem id="fileDraw" label="&fileDraw.label;" oncommand="drawImage();"/>
81 <menuitem id="fileSave" label="&fileSave.label;" oncommand="saveImage();"/>
82 </menupopup>
83 </toolbarbutton>
84 <toolbarbutton id="bookmarkMenu"
85 type="menu"
86 class="tabbable"
87 label="&bookmarkMenu.label;">
88 <menupopup id="menu_bookmarkPopup"
89 onpopupshowing="updateBookmarkMenu(event.target);"
90 oncommand="callBookmark(event.target);">
91 <menuitem id="bookmarkOverview" label="&bookmarkOverview.label;"/>
92 <menuitem id="bookmarkSave" label="&bookmarkSave.label;" oncommand="saveBookmark();"/>
93 <menuseparator id="bookmarkSeparator"/>
94 </menupopup>
95 </toolbarbutton>
96 <toolbarbutton id="prefMenu"
97 type="menu"
98 class="tabbable"
99 label="&prefMenu.label;">
100 <menupopup id="menu_prefPopup">
101 <menu id="iterMenu" label="&iterMenu.label;">
102 <menupopup id="menu_iterPopup" onpopupshowing="updateIterMenu();" oncommand="setIter(event.target.value);">
103 <menuitem type="radio" name="iter" value="50" label="&iter50.label;"/>
104 <menuitem type="radio" name="iter" value="100" label="&iter100.label;"/>
105 <menuitem type="radio" name="iter" value="500" label="&iter500.label;"/>
106 <menuitem type="radio" name="iter" value="1000" label="&iter1000.label;"/>
107 </menupopup>
108 </menu>
109 <menu id="colorMenu" label="&colorMenu.label;">
110 <menupopup id="menu_palettePopup" onpopupshowing="updatePaletteMenu();" oncommand="setPalette(event.target.value);">
111 <menuitem type="radio" name="palette" value="bw" label="&colorBW.label;"/>
112 <menuitem type="radio" name="palette" value="kairo" label="&colorKairo.label;"/>
113 <menuitem type="radio" name="palette" value="rainbow-linear1" label="&colorRBLin1.label;"/>
114 <menuitem type="radio" name="palette" value="rainbow-squared1" label="&colorRBSq1.label;"/>
115 <menuitem type="radio" name="palette" value="rainbow-linear2" label="&colorRBLin2.label;"/>
116 <menuitem type="radio" name="palette" value="rainbow-squared2" label="&colorRBSq2.label;"/>
117 </menupopup>
118 </menu>
119 <menuitem id="imgSettings" label="&imgSettings.label;" oncommand="imgSettings();"/>
120 </menupopup>
121 </toolbarbutton>
122 <toolbarbutton id="debugMenu"
123 type="menu"
124 class="tabbable"
125 label="&debugMenu.label;">
126 <menupopup id="menu_debugPopup" onpopupshowing="updateDebugMenu();">
127 <menuitem type="checkbox" id="tracejitEnabled" label="&tracejitEnabled.label;" oncommand="toggleJITState(event.target, 'trace');"/>
128 <menuitem type="checkbox" id="methodjitEnabled" label="&methodjitEnabled.label;" oncommand="toggleJITState(event.target, 'method');"/>
129 <menu id="algoMenu" label="&algoMenu.label;">
130 <menupopup id="menu_algoPopup" onpopupshowing="updateAlgoMenu();" oncommand="setAlgorithm(event.target.value);">
131 <menuitem type="radio" name="algorithm" value="numeric" label="&algoNumeric.label;"/>
132 <menuitem type="radio" name="algorithm" value="oo" label="&algoOO.label;"/>
133 </menupopup>
134 </menu>
135 </menupopup>
136 </toolbarbutton>
137 </toolbar>
138 </toolbox>
139 <panel id="imgSettingsPanel"
140 onpopupshowing="initImgSettings();"
141 onpopuphiding="saveImgSettings();">
142 <!-- |titlebar="normal" noautohide="true" close="true" label="&imageSettings.title;"|
143 doesn't seem to work on the panel, so work around with a <titlebar> instead -->
144 <titlebar><label value="&imageSettings.title;"/></titlebar>
145 <groupbox>
146 <caption label="&coord.title;"/>
147 <description value="&coord.real.label;" class="coord-caption"/>
148 <hbox align="center">
149 <label value="&coord.min.label;" control="is_Cr_min"/>
150 <textbox id="is_Cr_min" size="10"
151 onchange="checkISValue(this, 'coord'); recalcCoord('Cr', 'scale');"/>
152 <label value="&coord.max.label;" control="is_Cr_max"/>
153 <textbox id="is_Cr_max" size="10"
154 onchange="checkISValue(this, 'coord'); recalcCoord('Cr', 'scale');"/>
155 <label value="&coord.scale.label;" control="is_Cr_scale"/>
156 <textbox id="is_Cr_scale" size="10"
157 onchange="checkISValue(this, 'coord'); recalcCoord('Cr', 'max');"/>
158 </hbox>
159 <separator class="thin"/>
160 <description value="&coord.imag.label;" class="coord-caption"/>
161 <hbox align="center">
162 <label value="&coord.min.label;" control="is_Ci_min"/>
163 <textbox id="is_Ci_min" size="10"
164 onchange="checkISValue(this, 'coord'); recalcCoord('Ci', 'scale');"/>
165 <label value="&coord.max.label;" control="is_Ci_max"/>
166 <textbox id="is_Ci_max" size="10"
167 onchange="checkISValue(this, 'coord'); recalcCoord('Ci', 'scale');"/>
168 <label value="&coord.scale.label;" control="is_Ci_scale"/>
169 <textbox id="is_Ci_scale" size="10"
170 onchange="checkISValue(this, 'coord'); recalcCoord('Ci', 'max');"/>
171 </hbox>
172 </groupbox>
173
174 <hbox flex="1">
175 <groupbox>
176 <caption label="&img.size.title;"/>
177 <hbox align="center">
178 <label value="&img.width.label;" control="is_img_width"/>
179 <textbox id="is_img_width" size="4"
180 onchange="checkISValue(this, 'dim'); recalcCoord('Ci', 'scale');"/>
181 </hbox>
182 <hbox align="center">
183 <label value="&img.height.label;" control="is_img_height"/>
184 <textbox id="is_img_height" size="4"
185 onchange="checkISValue(this, 'dim'); recalcCoord('Cr', 'scale');"/>
186 </hbox>
187 </groupbox>
188
189 <groupbox>
190 <caption label="&preview.title;"/>
191 <hbox flex="1" pack="center" align="center">
192 <html:canvas id="is_mbrotPreview" width="50" height="50"></html:canvas>
193 </hbox>
194 <button id="is_previewButton" label="&previewDraw.label;" oncommand="drawPreview();"/>
195 </groupbox>
196
197 <groupbox>
198 <caption label="&options.title;"/>
199 <hbox align="center">
200 <checkbox id="is_syncProp"
201 label="&syncProp.label;"
202 onclick="checkProportions();"/>
203 </hbox>
204 </groupbox>
205 </hbox>
206 <hbox>
207 <button id="is_closeButton" label="&closeSettings.label;" oncommand="closeImgSettings();"/>
208 <spacer flex="1"/>
209 <button id="is_drawButton" label="&drawImageButton.label;" oncommand="closeImgSettings(); drawImage();"/>
210 </hbox>
211 </panel>
212 <hbox flex="1" pack="center" align="center">
213 <stack>
214 <html:canvas id="mbrotImage" width="300" height="300"
215 onmousedown="mouseevent('down', event);"
216 onmouseup="mouseevent('up', event);"
217 onmousemove="mouseevent('move', event);">
218 </html:canvas>
219 <button id="drawButton" label="&fileDraw.label;" oncommand="drawImage();"/>
220 </stack>
221 </hbox>
222 <hbox pack="end" align="end">
223 <description id="statusLabel"/>
224 </hbox>
225</page>