001: /*
002: * CONFIDENTIAL AND PROPRIETARY SOURCE CODE OF
003: * NETSCAPE COMMUNICATIONS CORPORATION
004: *
005: * Copyright (c) 1996 Netscape Communications Corporation.
006: * All Rights Reserved.
007: * Use of this Source Code is subject to the terms of the applicable
008: * license agreement from Netscape Communications Corporation.
009: */
010:
011: package graphical;
012:
013: import java.applet.Applet;
014: import java.applet.AppletContext;
015: import java.net.URL;
016: import java.net.MalformedURLException;
017:
018: import netscape.application.AWTCompatibility;
019: import netscape.application.Button;
020: import netscape.application.Color;
021: import netscape.application.Size;
022: import netscape.application.Target;
023: import netscape.application.View;
024:
025: import java.awt.Dimension;
026:
027: /**
028: Header file for the graphical package.
029: *
030: */
031: public class Header {
032: /* ----------------------------------------------------------- */
033:
034: /**
035: * Version string.
036: */
037: public final static String VERSION = "Graphical Package";
038:
039: /**
040: * Long version string.
041: */
042: public final static String LONG_VERSION = VERSION;
043:
044: /**
045: * Prints the version string for the package.
046: */
047: public final static void printVersion() {
048: printVersion(false);
049: }
050:
051: /**
052: * Prints the version string for the package.
053: * @param longVersion true for long version
054: */
055: public final static void printVersion(boolean longVersion) {
056: if (longVersion) {
057: System.out.println(LONG_VERSION);
058: } else {
059: System.out.println(VERSION);
060: }
061: }
062:
063: /* ----------------------------------------------------------- */
064:
065: /**
066: * Image is complete checkImage() magic number.
067: */
068: public final static int IMAGECOMPLETE = 47;
069:
070: /**
071: * Bitmap read retry limit.
072: */
073: public final static int BITMAPMAXREREAD = 30;
074:
075: /**
076: * Bitmap read retry limit.
077: */
078: public final static int BITMAPMAXRETRYSLEEP = 250;
079:
080: /**
081: * Bitmap read retry limit.
082: */
083: public final static int GRABPIXELSTIMEOUT = 40;
084:
085: /* ----------------------------------------------------------- */
086:
087: /* SGP: this may not belong here */
088: /**
089: * FLOWlayout MINimum Horizontal GAP between widgets.
090: * Used in preferredSize() calculations of containers.
091: */
092: public final static int FLOWMINHGAP = 5;
093:
094: /* ----------------------------------------------------------- */
095:
096: /**
097: * Standard horizontal distance between windows.
098: */
099: public final static int WINDOWHGAP = 10;
100: /**
101: * Standard vertical distance between windows.
102: */
103: public final static int WINDOWVGAP = 10;
104: /**
105: * Standard horizontal distance between widgets.
106: */
107: public final static int WIDGETHGAP = 4;
108: /**
109: * Standard vertical distance between widgets.
110: */
111: public final static int WIDGETVGAP = 6;
112: /**
113: * Standard distance between a list widget and it's detail area.
114: */
115: public final static int DETAILVGAP = 6;
116: /**
117: * If a text field has no border, the text is placed
118: * lower so that the space occupied by the missing border
119: * is used. If a borderless text field is being used to
120: * label a bordered text field this difference must be
121: * take into account during placement. Hence, LABELBORDERGAP.
122: */
123: public final static int LABELBORDERGAP = 2;
124: /**
125: * Fudges the indentation on labels to look better in ContainerViews.
126: */
127: public final static int LABELCONTAINERGAP = 5;
128: /**
129: * Used in determining y for a TreeWindow's ListView.
130: * After calculating for buttons and known gaps and
131: * determining the border width of the internal window,
132: * there's still some missing pixels.
133: * I imagine this can be determined programatically,
134: * but I'm not hitting on it - this'll do for now.
135: */
136: public final static int CREEPYFUDGEGAP = 28; // SGP: uh huh
137: /**
138: * Special horizontal gap to help align widgets w/ respect
139: * to the tree images in a tree view.
140: */
141: public final static int ALIGNTREEHGAP = 4;
142:
143: /* ----------------------------------------------------------- */
144:
145: /**
146: * Internal window standard height.
147: */
148: public final static int IWINDHEIGHT = 280;
149:
150: /**
151: * Internal window standard width.
152: */
153: public final static int IWINDWIDTH = 460;
154:
155: /**
156: * Internal window standard min height.
157: */
158: public final static int IWINDMINHEIGHT = IWINDHEIGHT / 2;
159:
160: /**
161: * Internal window standard min width.
162: */
163: public final static int IWINDMINWIDTH = IWINDWIDTH / 2;
164:
165: /* ----------------------------------------------------------- */
166:
167: /**
168: * Width of a space and a caret.
169: * Used for resizing editable textfields correctly.
170: */
171: public final static int SPACEPLUSCARETWIDTH = 10;
172:
173: /* ----------------------------------------------------------- */
174:
175: /**
176: * Active colour.
177: */
178: public final static Color ACTIVECOLOR = Color.white;
179:
180: /**
181: * Inactive colour.
182: */
183: public final static Color INACTIVECOLOR = Color.lightGray;
184:
185: /**
186: * Selected colour.
187: */
188: // public final static Color SELECTEDCOLOR = new Color( 255, 255, 0 );
189: public final static Color SELECTEDCOLOR = new Color(153, 153, 204);
190:
191: /**
192: * Desktop colour.
193: */
194: public final static Color DESKTOPCOLOR = new Color(255, 255, 255);
195:
196: /**
197: * Desktop colour.
198: * Applets that launch external windows still have geometry on the
199: * desktop, this colour is for that space.
200: */
201: public final static Color BROWSERCOLOR = Color.lightGray;
202:
203: /**
204: * Text colour.
205: */
206: public final static Color TEXTCOLOR = Color.black;
207:
208: /**
209: * Disabled text colour.
210: */
211: public final static Color DISABLEDTEXTCOLOR = Color.gray;
212:
213: /* ----------------------------------------------------------- */
214:
215: /**
216: * showStatus() in IFC is a little indirect, this encapsulates it.
217: * @param s status string
218: */
219: public final static void showStatus(String s) {
220: Applet applet = AWTCompatibility.awtApplet();
221: AppletContext appletContext = applet.getAppletContext();
222:
223: appletContext.showStatus(s);
224: }
225:
226: /**
227: * showDocument() encapsulation for IFC.
228: * @param urlStr url
229: * @param targ _self, _top, etc.
230: */
231: public final static boolean showDocument(String urlStr, String targ) {
232: if ((urlStr == null) || (targ == null)) {
233: return false;
234: }
235:
236: Applet applet = AWTCompatibility.awtApplet();
237: AppletContext appletContext = applet.getAppletContext();
238: URL url;
239:
240: try {
241: url = new URL(urlStr);
242: } catch (MalformedURLException e) {
243: return false;
244: }
245:
246: appletContext.showDocument(url, targ);
247:
248: return true;
249: }
250:
251: /* ----------------------------------------------------------- */
252:
253: public static Button buttonMacro(String s, Target t) {
254: Button button = new Button();
255: button.setTitle(s);
256: button.setCommand(s);
257: button.setTarget(t);
258: Size sz = button.minSize();
259: button.sizeTo(sz.width, sz.height);
260: return button;
261: }
262:
263: /* ----------------------------------------------------------- */
264:
265: public final static Dimension imageSize = new Dimension(14, 12);
266: public final static int pixelCount = imageSize.width
267: * imageSize.height;
268:
269: //file:///export1/batman/steve_gifs/14x12-spacer.gif
270: public final static int spacePixels[] = { -1, -1, -1, -1, -1, -1,
271: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
272: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
273: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
274: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
275: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
276: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
277: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
278: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
279: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
280: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
281: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 };
282:
283: //file:///export1/batman/steve_gifs/document-selected.gif
284: public final static int documentSelPixels[] = { -1, -1, -1, -1, -1,
285: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
286: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -16777216,
287: -16777216, -16777216, -16777216, -16777216, -16777216, -1,
288: -1, -1, -1, -1, -1, -1, -1, -16777216, -8947849, -8947849,
289: -8947849, -8947849, -16777216, -16777216, -1, -1, -1, -1,
290: -1, -1, -1, -16777216, -8947849, -8947849, -8947849,
291: -8947849, -16777216, -16777216, -16777216, -1, -1, -1, -1,
292: -1, -1, -16777216, -8947849, -8947849, -8947849, -8947849,
293: -8947849, -8947849, -16777216, -1, -1, -1, -1, -1, -1,
294: -16777216, -8947849, -8947849, -8947849, -8947849,
295: -8947849, -8947849, -16777216, -1, -1, -1, -1, -1, -1,
296: -16777216, -8947849, -8947849, -8947849, -8947849,
297: -8947849, -8947849, -16777216, -1, -1, -1, -1, -1, -1,
298: -16777216, -8947849, -8947849, -8947849, -8947849,
299: -8947849, -8947849, -16777216, -1, -1, -1, -1, -1, -1,
300: -16777216, -8947849, -8947849, -8947849, -8947849,
301: -8947849, -8947849, -16777216, -1, -1, -1, -1, -1, -1,
302: -16777216, -8947849, -8947849, -8947849, -8947849,
303: -8947849, -8947849, -16777216, -1, -1, -1, -1, -1, -1,
304: -16777216, -16777216, -16777216, -16777216, -16777216,
305: -16777216, -16777216, -16777216, -1, -1, -1 };
306:
307: //file:///export1/batman/steve_gifs/document.gif
308: public final static int documentPixels[] = { -1, -1, -1, -1, -1,
309: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
310: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -16777216,
311: -16777216, -16777216, -16777216, -16777216, -16777216, -1,
312: -1, -1, -1, -1, -1, -1, -1, -16777216, -1, -1, -1, -1,
313: -16777216, -16777216, -1, -1, -1, -1, -1, -1, -1,
314: -16777216, -1, -1, -1, -1, -16777216, -16777216, -16777216,
315: -1, -1, -1, -1, -1, -1, -16777216, -1, -1, -1, -1, -1, -1,
316: -16777216, -1, -1, -1, -1, -1, -1, -16777216, -1, -1, -1,
317: -1, -1, -1, -16777216, -1, -1, -1, -1, -1, -1, -16777216,
318: -1, -1, -1, -1, -1, -1, -16777216, -1, -1, -1, -1, -1, -1,
319: -16777216, -1, -1, -1, -1, -1, -1, -16777216, -1, -1, -1,
320: -1, -1, -1, -16777216, -1, -1, -1, -1, -1, -1, -16777216,
321: -1, -1, -1, -1, -1, -1, -16777216, -1, -1, -1, -1, -1, -1,
322: -16777216, -1, -1, -1, -1, -1, -1, -16777216, -16777216,
323: -16777216, -16777216, -16777216, -16777216, -16777216,
324: -16777216, -1, -1, -1 };
325:
326: //file:///export1/batman/steve_gifs/folder-selected.gif
327: public final static int folderSelPixels[] = { -1, -1, -1, -1, -1,
328: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
329: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
330: -1, -1, -1, -1, -1, -1, -1, -1, -1, -16777216, -16777216,
331: -16777216, -16777216, -16777216, -1, -1, -1, -1, -1, -1,
332: -1, -1, -16777216, -13421722, -13421722, -13421722,
333: -13421722, -16777216, -16777216, -16777216, -16777216,
334: -16777216, -1, -1, -1, -1, -16777216, -8947849, -13421722,
335: -8947849, -13421722, -8947849, -13421722, -8947849,
336: -13421722, -13421722, -16777216, -1, -1, -1, -16777216,
337: -13421722, -8947849, -13421722, -8947849, -13421722,
338: -8947849, -13421722, -8947849, -13421722, -16777216, -1,
339: -1, -1, -16777216, -8947849, -13421722, -8947849,
340: -13421722, -8947849, -13421722, -8947849, -13421722,
341: -13421722, -16777216, -1, -1, -1, -16777216, -13421722,
342: -8947849, -13421722, -8947849, -13421722, -8947849,
343: -13421722, -8947849, -13421722, -16777216, -1, -1, -1,
344: -16777216, -8947849, -13421722, -8947849, -13421722,
345: -8947849, -13421722, -8947849, -13421722, -13421722,
346: -16777216, -1, -1, -1, -16777216, -13421722, -8947849,
347: -13421722, -8947849, -13421722, -8947849, -13421722,
348: -8947849, -13421722, -16777216, -1, -1, -1, -16777216,
349: -16777216, -16777216, -16777216, -16777216, -16777216,
350: -16777216, -16777216, -16777216, -16777216, -16777216, -1,
351: -1 };
352:
353: //file:///export1/batman/steve_gifs/folder.gif
354: public final static int folderPixels[] = { -1, -1, -1, -1, -1, -1,
355: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
356: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
357: -1, -1, -1, -1, -1, -1, -1, -1, -16777216, -16777216,
358: -16777216, -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1,
359: -16777216, -3355393, -3355393, -3355393, -3355393,
360: -16777216, -16777216, -16777216, -16777216, -16777216, -1,
361: -1, -1, -1, -16777216, -1, -3355393, -1, -3355393, -1,
362: -3355393, -1, -3355393, -3355393, -16777216, -1, -1, -1,
363: -16777216, -3355393, -1, -3355393, -1, -3355393, -1,
364: -3355393, -1, -3355393, -16777216, -1, -1, -1, -16777216,
365: -1, -3355393, -1, -3355393, -1, -3355393, -1, -3355393,
366: -3355393, -16777216, -1, -1, -1, -16777216, -3355393, -1,
367: -3355393, -1, -3355393, -1, -3355393, -1, -3355393,
368: -16777216, -1, -1, -1, -16777216, -1, -3355393, -1,
369: -3355393, -1, -3355393, -1, -3355393, -3355393, -16777216,
370: -1, -1, -1, -16777216, -3355393, -1, -3355393, -1,
371: -3355393, -1, -3355393, -1, -3355393, -16777216, -1, -1,
372: -1, -16777216, -16777216, -16777216, -16777216, -16777216,
373: -16777216, -16777216, -16777216, -16777216, -16777216,
374: -16777216, -1, -1 };
375:
376: //file:///export1/batman/steve_gifs/triangle-closed-selected.gif
377: public final static int branchClosedSelPixels[] = { -1, -1, -1, -1,
378: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
379: -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
380: -1, -16777216, -16777216, -1, -1, -1, -1, -1, -1, -1, -1,
381: -1, -1, -1, -1, -16777216, -6710785, -16777216, -1, -1, -1,
382: -1, -1, -1, -1, -1, -1, -1, -1, -16777216, -11184811,
383: -6710785, -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1,
384: -1, -16777216, -6710785, -11184811, -6710785, -16777216,
385: -1, -1, -1, -1, -1, -1, -1, -1, -1, -16777216, -11184811,
386: -6710785, -11184811, -6710785, -16777216, -1, -1, -1, -1,
387: -1, -1, -1, -1, -16777216, -6710785, -11184811, -6710785,
388: -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1, -16777216,
389: -11184811, -6710785, -16777216, -1, -1, -1, -1, -1, -1, -1,
390: -1, -1, -1, -16777216, -6710785, -16777216, -1, -1, -1, -1,
391: -1, -1, -1, -1, -1, -1, -1, -16777216, -16777216, -1, -1,
392: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -16777216, -1, -1,
393: -1, -1, -1, -1, -1, -1, -1 };
394:
395: //file:///export1/batman/steve_gifs/triangle-closed.gif
396: public final static int branchClosedPixels[] = { -1, -1, -1, -1,
397: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
398: -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
399: -1, -16777216, -16777216, -1, -1, -1, -1, -1, -1, -1, -1,
400: -1, -1, -1, -1, -16777216, -6710785, -16777216, -1, -1, -1,
401: -1, -1, -1, -1, -1, -1, -1, -1, -16777216, -4144960,
402: -6710785, -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1,
403: -1, -16777216, -6710785, -4144960, -6710785, -16777216, -1,
404: -1, -1, -1, -1, -1, -1, -1, -1, -16777216, -4144960,
405: -6710785, -4144960, -6710785, -16777216, -1, -1, -1, -1,
406: -1, -1, -1, -1, -16777216, -6710785, -4144960, -6710785,
407: -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1, -16777216,
408: -4144960, -6710785, -16777216, -1, -1, -1, -1, -1, -1, -1,
409: -1, -1, -1, -16777216, -6710785, -16777216, -1, -1, -1, -1,
410: -1, -1, -1, -1, -1, -1, -1, -16777216, -16777216, -1, -1,
411: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -16777216, -1, -1,
412: -1, -1, -1, -1, -1, -1, -1 };
413:
414: //file:///export1/batman/steve_gifs/triangle-open-selected.gif
415: public final static int branchOpenSelPixels[] = { -1, -1, -1, -1,
416: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
417: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
418: -1, -1, -1, -1, -1, -1, -1, -1, -1, -16777216, -16777216,
419: -16777216, -16777216, -16777216, -16777216, -16777216,
420: -16777216, -16777216, -16777216, -16777216, -1, -1, -1, -1,
421: -16777216, -6710785, -11184811, -6710785, -11184811,
422: -6710785, -11184811, -6710785, -16777216, -1, -1, -1, -1,
423: -1, -1, -16777216, -6710785, -11184811, -6710785,
424: -11184811, -6710785, -16777216, -1, -1, -1, -1, -1, -1, -1,
425: -1, -16777216, -6710785, -11184811, -6710785, -16777216,
426: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -16777216,
427: -6710785, -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1,
428: -1, -1, -1, -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1,
429: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
430: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
431: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 };
432:
433: //file:///export1/batman/steve_gifs/triangle-open.gif
434: public final static int branchOpenPixels[] = { -1, -1, -1, -1, -1,
435: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
436: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
437: -1, -1, -1, -1, -1, -1, -1, -1, -16777216, -16777216,
438: -16777216, -16777216, -16777216, -16777216, -16777216,
439: -16777216, -16777216, -16777216, -16777216, -1, -1, -1, -1,
440: -16777216, -6710785, -1, -6710785, -1, -6710785, -1,
441: -6710785, -16777216, -1, -1, -1, -1, -1, -1, -16777216,
442: -6710785, -1, -6710785, -1, -6710785, -16777216, -1, -1,
443: -1, -1, -1, -1, -1, -1, -16777216, -6710785, -1, -6710785,
444: -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
445: -16777216, -6710785, -16777216, -1, -1, -1, -1, -1, -1, -1,
446: -1, -1, -1, -1, -1, -16777216, -1, -1, -1, -1, -1, -1, -1,
447: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
448: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
449: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 };
450:
451: //file:///export1/batman/steve_gifs/triangle-trans-selected.gif
452: public final static int branchTransSelPixels[] = { -1, -1, -1, -1,
453: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
454: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
455: -1, -1, -1, -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1,
456: -1, -1, -1, -16777216, -16777216, -1, -1, -1, -1, -1, -1,
457: -1, -1, -1, -1, -1, -16777216, -11184811, -16777216, -1,
458: -1, -1, -1, -1, -1, -1, -1, -1, -1, -16777216, -11184811,
459: -6710785, -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1,
460: -16777216, -11184811, -6710785, -11184811, -16777216, -1,
461: -1, -1, -1, -1, -1, -1, -1, -16777216, -11184811, -6710785,
462: -11184811, -6710785, -16777216, -1, -1, -1, -1, -1, -1, -1,
463: -16777216, -11184811, -6710785, -11184811, -6710785,
464: -11184811, -16777216, -1, -1, -1, -1, -1, -1, -16777216,
465: -16777216, -16777216, -16777216, -16777216, -16777216,
466: -16777216, -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1,
467: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
468: -1, -1, -1, -1, -1, -1, -1, -1 };
469:
470: //file:///export1/batman/steve_gifs/triangle-transition.gif
471: public final static int branchTransPixels[] = { -1, -1, -1, -1, -1,
472: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
473: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
474: -1, -1, -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
475: -1, -1, -16777216, -16777216, -1, -1, -1, -1, -1, -1, -1,
476: -1, -1, -1, -1, -16777216, -1, -16777216, -1, -1, -1, -1,
477: -1, -1, -1, -1, -1, -1, -16777216, -1, -6710785, -16777216,
478: -1, -1, -1, -1, -1, -1, -1, -1, -1, -16777216, -1,
479: -6710785, -1, -16777216, -1, -1, -1, -1, -1, -1, -1, -1,
480: -16777216, -1, -6710785, -1, -6710785, -16777216, -1, -1,
481: -1, -1, -1, -1, -1, -16777216, -1, -6710785, -1, -6710785,
482: -1, -16777216, -1, -1, -1, -1, -1, -1, -16777216,
483: -16777216, -16777216, -16777216, -16777216, -16777216,
484: -16777216, -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1,
485: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
486: -1, -1, -1, -1, -1, -1, -1, -1 };
487:
488: // netscape "look" pixels
489: public final static int NSLOOKWNARROW = 9;
490: public final static int NSLOOKWWIDE = 18;
491: public final static int NSLOOKH = 18;
492:
493: // file:///Camus/Desktop%20Folder/tree%20images/photoshopped/nsarrowclosed.GIF
494: // width: 9, height: 18
495: public final static int nsarrowclosed[] = { -1, -1, -1, -1, -1, -1,
496: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
497: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
498: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
499: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
500: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
501: -1, -1, -1, -1, -1, -1, -1, -1, -1, -10066228, -1, -1, -1,
502: -1, -1, -1, -1, -1, -6710887, -10066228, -1, -1, -1, -1,
503: -1, -1, -1, -6710887, -6710887, -10066228, -1, -1, -1, -1,
504: -1, -1, -6710887, -6710887, -6710887, -10066228, -1, -1,
505: -1, -1, -1, -6710887, -6710887, -10066228, -1, -1, -1, -1,
506: -1, -1, -6710887, -10066228, -1, -1, -1, -1, -1, -1, -1,
507: -10066228, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
508: -1, -1, -1, -1, -1 };
509:
510: // file:///Camus/Desktop%20Folder/tree%20images/photoshopped/nsarrowopen.GIF
511: // width: 9, height: 18
512: public final static int nsarrowopen[] = { -1, -1, -1, -1, -1, -1,
513: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
514: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
515: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
516: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
517: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
518: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
519: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
520: -1, -1, -1, -1, -1, -1, -10066228, -6710887, -6710887,
521: -6710887, -6710887, -6710887, -10066228, -1, -1, -1,
522: -10066228, -6710887, -6710887, -6710887, -10066228, -1, -1,
523: -1, -1, -1, -10066228, -6710887, -10066228, -1, -1, -1, -1,
524: -1, -1, -1, -10066228, -1, -1, -1, -1, -1, -1, -1, -1, -1,
525: -1, -1, -1, -1, -1 };
526:
527: // file:///Camus/Desktop%20Folder/tree%20images/photoshopped/nsdoc.gif
528: // width: 18, height: 18
529: public final static int nsdoc[] = { -1, -1, -1, -1, -1, -1, -1, -1,
530: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
531: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
532: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
533: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
534: -1, -1, -1, -1, -1, -10066228, -10066228, -10066228,
535: -10066228, -10066228, -10066228, -1, -1, -1, -1, -1, -1,
536: -1, -1, -1, -1, -1, -1, -10066228, -3355444, -3355444,
537: -3355444, -3355444, -10066228, -10066228, -1, -1, -1, -1,
538: -1, -1, -1, -1, -1, -1, -1, -10066228, -3355444, -1, -1,
539: -1, -10066228, -3355444, -10066228, -1, -1, -1, -1, -1, -1,
540: -1, -1, -1, -1, -10066228, -3355444, -3355444, -3355444,
541: -1, -10066228, -10066228, -10066228, -10066228, -1, -1, -1,
542: -1, -1, -1, -1, -1, -1, -10066228, -3355444, -1, -1, -1,
543: -1, -6710887, -6710887, -10066228, -16777216, -1, -1, -1,
544: -1, -1, -1, -1, -1, -10066228, -3355444, -3355444, -1,
545: -3355444, -1, -3355444, -1, -10066228, -16777216, -1, -1,
546: -1, -1, -1, -1, -1, -1, -10066228, -3355444, -1, -1, -1,
547: -1, -1, -1, -10066228, -16777216, -1, -1, -1, -1, -1, -1,
548: -1, -1, -10066228, -3355444, -3355444, -3355444, -1,
549: -3355444, -3355444, -1, -10066228, -16777216, -1, -1, -1,
550: -1, -1, -1, -1, -1, -10066228, -3355444, -1, -1, -1, -1,
551: -1, -1, -10066228, -16777216, -1, -1, -1, -1, -1, -1, -1,
552: -1, -10066228, -3355444, -3355444, -1, -3355444, -1,
553: -3355444, -1, -10066228, -16777216, -1, -1, -1, -1, -1, -1,
554: -1, -1, -10066228, -3355444, -1, -1, -1, -1, -1, -1,
555: -10066228, -16777216, -1, -1, -1, -1, -1, -1, -1, -1,
556: -10066228, -10066228, -10066228, -10066228, -10066228,
557: -10066228, -10066228, -10066228, -10066228, -16777216, -1,
558: -1, -1, -1, -1, -1, -1, -1, -1, -16777216, -16777216,
559: -16777216, -16777216, -16777216, -16777216, -16777216,
560: -16777216, -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1,
561: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
562: -1
563:
564: };
565:
566: // file:///Camus/Desktop%20Folder/tree%20images/photoshopped/nsfolderclosed.GIF
567: // width: 18, height: 18
568: public final static int nsfolderclosed[] = { -1, -1, -1, -1, -1,
569: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
570: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
571: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
572: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
573: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
574: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
575: -6710887, -6710887, -6710887, -6710887, -6710887, -1, -1,
576: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -6710887, -3355444,
577: -6710887, -3355444, -6710887, -3355444, -6710887, -1, -1,
578: -1, -1, -1, -1, -1, -1, -1, -1, -6710887, -3355444,
579: -6710887, -3355444, -6710887, -3355444, -6710887, -3355444,
580: -10066228, -10066228, -10066228, -10066228, -10066228,
581: -10066228, -1, -1, -1, -1, -6710887, -1, -1, -1, -1, -1,
582: -1, -1, -1, -1, -1, -1, -1, -10066228, -1, -1, -1, -1,
583: -6710887, -1, -3355444, -3355444, -3355444, -3355444,
584: -3355444, -3355444, -3355444, -3355444, -3355444, -3355444,
585: -3355444, -10066228, -16777216, -1, -1, -1, -6710887, -1,
586: -3355444, -3355444, -3355444, -3355444, -3355444, -3355444,
587: -3355444, -3355444, -3355444, -3355444, -3355444,
588: -10066228, -16777216, -1, -1, -1, -6710887, -1, -3355444,
589: -3355444, -3355444, -3355444, -3355444, -3355444, -3355444,
590: -3355444, -3355444, -3355444, -3355444, -10066228,
591: -16777216, -1, -1, -1, -6710887, -1, -3355444, -3355444,
592: -3355444, -3355444, -3355444, -3355444, -3355444, -3355444,
593: -3355444, -3355444, -3355444, -10066228, -16777216, -1, -1,
594: -1, -6710887, -1, -3355444, -3355444, -3355444, -3355444,
595: -3355444, -3355444, -3355444, -3355444, -3355444, -3355444,
596: -3355444, -10066228, -16777216, -1, -1, -1, -6710887, -1,
597: -3355444, -3355444, -3355444, -3355444, -3355444, -3355444,
598: -3355444, -3355444, -3355444, -3355444, -3355444,
599: -10066228, -16777216, -1, -1, -1, -10066228, -10066228,
600: -10066228, -10066228, -10066228, -10066228, -10066228,
601: -10066228, -10066228, -10066228, -10066228, -10066228,
602: -10066228, -10066228, -16777216, -1, -1, -1, -1, -16777216,
603: -16777216, -16777216, -16777216, -16777216, -16777216,
604: -16777216, -16777216, -16777216, -16777216, -16777216,
605: -16777216, -16777216, -16777216, -1, -1, -1, -1, -1, -1,
606: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1
607:
608: };
609:
610: // file:///Camus/Desktop%20Folder/tree%20images/photoshopped/nsfolderopen.GIF
611: // width: 18, height: 18
612: public final static int nsfolderopen[] = { -1, -1, -1, -1, -1, -1,
613: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
614: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
615: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
616: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
617: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
618: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
619: -6710887, -6710887, -6710887, -6710887, -6710887, -1, -1,
620: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -6710887, -1, -1,
621: -1, -1, -1, -6710887, -1, -1, -1, -1, -1, -1, -1, -1, -1,
622: -1, -6710887, -1, -6710887, -3355444, -6710887, -3355444,
623: -6710887, -1, -10066228, -10066228, -10066228, -10066228,
624: -10066228, -10066228, -1, -1, -1, -1, -6710887, -1,
625: -3355444, -6710887, -3355444, -6710887, -3355444, -6710887,
626: -1, -1, -1, -1, -1, -10066228, -1, -1, -1, -1, -6710887,
627: -1, -6710887, -3355444, -6710887, -3355444, -6710887,
628: -3355444, -6710887, -3355444, -6710887, -3355444, -6710887,
629: -10066228, -16777216, -1, -1, -10066228, -10066228,
630: -10066228, -10066228, -10066228, -10066228, -10066228,
631: -10066228, -10066228, -10066228, -10066228, -10066228,
632: -6710887, -3355444, -10066228, -16777216, -1, -1,
633: -10066228, -1, -1, -1, -1, -1, -1, -1, -1, -1, -3355444,
634: -16777216, -10066228, -6710887, -10066228, -16777216, -1,
635: -1, -1, -10066228, -6710887, -3355444, -6710887, -3355444,
636: -6710887, -3355444, -6710887, -3355444, -6710887, -3355444,
637: -16777216, -3355444, -10066228, -16777216, -1, -1, -1,
638: -10066228, -3355444, -6710887, -3355444, -6710887,
639: -3355444, -6710887, -3355444, -6710887, -3355444, -6710887,
640: -16777216, -16777216, -10066228, -16777216, -1, -1, -1, -1,
641: -10066228, -3355444, -6710887, -3355444, -6710887,
642: -3355444, -6710887, -3355444, -6710887, -3355444, -6710887,
643: -16777216, -16777216, -16777216, -1, -1, -1, -1, -10066228,
644: -10066228, -10066228, -10066228, -10066228, -10066228,
645: -10066228, -10066228, -10066228, -10066228, -10066228,
646: -10066228, -10066228, -16777216, -1, -1, -1, -1, -1,
647: -16777216, -16777216, -16777216, -16777216, -16777216,
648: -16777216, -16777216, -16777216, -16777216, -16777216,
649: -16777216, -16777216, -16777216, -1, -1, -1, -1, -1, -1,
650: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1
651:
652: };
653:
654: // file:///Camus/Desktop%20Folder/tree%20images/photoshopped/nslinefork.GIF
655: // width: 18, height: 18
656: public final static int nslinefork[] = { -1, -1, -1, -1, -1, -1,
657: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
658: -1, -1, -1, -1, -1, -6710887, -1, -1, -1, -1, -1, -1, -1,
659: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
660: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
661: -6710887, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
662: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
663: -1, -1, -1, -1, -1, -1, -1, -1, -6710887, -1, -1, -1, -1,
664: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
665: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
666: -1, -6710887, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
667: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
668: -1, -1, -1, -1, -1, -1, -1, -1, -1, -3355444, -6710887, -1,
669: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
670: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
671: -1, -1, -1, -6710887, -1, -6710887, -1, -1, -1, -1, -1, -1,
672: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
673: -6710887, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
674: -1, -6710887, -1, -1, -1, -1, -1, -6710887, -1, -6710887,
675: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
676: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -6710887,
677: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
678: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
679: -1, -1, -1, -1, -1, -6710887, -1, -1, -1, -1, -1, -1, -1,
680: -1, -1
681:
682: };
683:
684: // file:///Camus/Desktop%20Folder/tree%20images/photoshopped/nslinehoriz.GIF
685: // width: 9, height: 18
686: public final static int nslinehoriz[] = { -1, -1, -1, -1, -1, -1,
687: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
688: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
689: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
690: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
691: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
692: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
693: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
694: -1, -1, -1, -1, -1, -1, -6710887, -1, -6710887, -1,
695: -6710887, -1, -6710887, -1, -1, -1, -1, -1, -1, -1, -1, -1,
696: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
697: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 };
698:
699: // file:///Camus/Desktop%20Folder/tree%20images/photoshopped/nslineswoosh.gif
700: // width: 18, height: 18
701: public final static int nslineswoosh[] = { -1, -1, -1, -1, -1, -1,
702: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
703: -1, -1, -1, -1, -1, -6710887, -1, -1, -1, -1, -1, -1, -1,
704: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
705: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
706: -6710887, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
707: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
708: -1, -1, -1, -1, -1, -1, -1, -1, -6710887, -1, -1, -1, -1,
709: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
710: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
711: -1, -6710887, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
712: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
713: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -6710887, -1, -1,
714: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
715: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
716: -1, -1, -1, -1, -6710887, -1, -1, -1, -1, -1, -1, -1, -1,
717: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -6710887, -1,
718: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
719: -1, -1, -1, -6710887, -1, -6710887, -1, -1, -1, -1, -1, -1,
720: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
721: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
722: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
723: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
724: -1, -1, -1, -1, -1, -1, -1
725:
726: };
727:
728: // file:///Camus/Desktop%20Folder/tree%20images/photoshopped/nslinevert.GIF
729: // width: 18, height: 18
730: public final static int nslinevert[] = { -1, -1, -1, -1, -1, -1,
731: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
732: -1, -1, -1, -1, -1, -6710887, -1, -1, -1, -1, -1, -1, -1,
733: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
734: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
735: -6710887, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
736: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
737: -1, -1, -1, -1, -1, -1, -1, -1, -6710887, -1, -1, -1, -1,
738: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
739: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
740: -1, -6710887, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
741: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
742: -1, -1, -1, -1, -1, -1, -1, -1, -1, -6710887, -1, -1, -1,
743: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
744: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
745: -1, -1, -6710887, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
746: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
747: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -6710887, -1, -1,
748: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
749: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
750: -1, -1, -1, -6710887, -1, -1, -1, -1, -1, -1, -1, -1, -1,
751: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
752: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -6710887, -1,
753: -1, -1, -1, -1, -1, -1, -1, -1
754:
755: };
756:
757: // file:///Camus/Desktop%20Folder/tree%20images/photoshopped/nsmachine.GIF
758: // width: 18, height: 18
759: public final static int nsmachine[] = { -1, -1, -1, -1, -1, -1, -1,
760: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
761: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
762: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
763: -1, -1, -1, -1, -1, -1, -1, -1, -10066228, -10066228,
764: -10066228, -10066228, -10066228, -10066228, -1, -1, -1, -1,
765: -1, -1, -1, -1, -1, -1, -1, -10066228, -1, -1, -1, -1, -1,
766: -1, -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
767: -10066228, -1, -1, -6710887, -3355444, -3355444, -3355444,
768: -3355444, -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1,
769: -10066228, -3355444, -1, -6710887, -6710887, -6710887,
770: -6710887, -6710887, -16777216, -1, -1, -1, -1, -1, -1, -1,
771: -1, -1, -10066228, -1, -3355444, -3355444, -1, -1, -1, -1,
772: -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1, -10066228,
773: -1, -1, -6710887, -3355444, -3355444, -3355444, -3355444,
774: -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1, -10066228,
775: -1, -1, -6710887, -3355444, -3355444, -3355444, -3355444,
776: -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1, -10066228,
777: -1, -1, -6710887, -3355444, -3355444, -3355444, -3355444,
778: -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1, -10066228,
779: -1, -1, -6710887, -3355444, -3355444, -3355444, -3355444,
780: -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1, -10066228,
781: -1, -1, -6710887, -3355444, -16777216, -16777216, -3355444,
782: -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
783: -16777216, -1, -6710887, -3355444, -3355444, -1, -3355444,
784: -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
785: -16777216, -16777216, -16777216, -16777216, -16777216,
786: -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
787: -1, -16777216, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
788: -1, -1, -1, -16777216, -16777216, -16777216, -1, -16777216,
789: -16777216, -16777216, -16777216, -16777216, -1, -1, -1, -1,
790: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
791: -1, -1, -1
792:
793: };
794:
795: // file:///Camus/Desktop%20Folder/tree%20images/photoshopped/nsspace.gif
796: // width: 18, height: 18
797: public final static int nsspace[] = { -1, -1, -1, -1, -1, -1, -1,
798: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
799: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
800: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
801: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
802: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
803: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
804: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
805: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
806: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
807: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
808: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
809: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
810: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
811: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
812: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
813: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
814: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
815: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
816: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
817: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
818: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
819: -1, -1
820:
821: };
822:
823: // file:///Camus/Desktop%20Folder/tree%20images/photoshopped/nsspacearrow.GIF
824: // width: 9, height: 18
825: public final static int nsspacearrow[] = { -1, -1, -1, -1, -1, -1,
826: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
827: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
828: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
829: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
830: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
831: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
832: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
833: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
834: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
835: -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
836: -1, -1, -1, -1, -1, -1 };
837: }
|