home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 November / Chip_1998-11_cd.bin / tema / Cafe / WDESAMPL.BIN / Applet1.java < prev    next >
Text File  |  1998-02-26  |  80KB  |  2,881 lines

  1. /*
  2.     A basic extension of the java.applet.Applet class
  3.  */
  4.  
  5. import java.awt.*;
  6. import java.applet.*;
  7. import java.net.URL;
  8. import symantec.itools.awt.*;
  9. import symantec.itools.util.Timer;
  10. import symantec.itools.awt.util.*;
  11. import symantec.itools.multimedia.SlideShow;
  12. import symantec.itools.multimedia.*;
  13. import symantec.itools.awt.shape.*;
  14. import symantec.itools.awt.util.spinner.*;
  15. import symantec.itools.db.awt.*;
  16. import symantec.itools.awt.util.ToolBarPanel;
  17. import symantec.itools.awt.RadioButtonGroupPanel;
  18. import symantec.itools.awt.shape.Square;
  19. import symantec.itools.multimedia.ScrollingText;
  20. import symantec.itools.awt.MultiList;
  21. import symantec.itools.awt.ImageHTMLLink;
  22. import symantec.itools.awt.FormattedTextField;
  23. import symantec.itools.awt.ImageButton;
  24. import symantec.itools.awt.shape.Rect;
  25. import symantec.itools.awt.ImagePanel;
  26. import symantec.itools.awt.KeyPressManagerPanel;
  27. import symantec.itools.awt.util.StatusScroller;
  28. import symantec.itools.awt.shape.Circle;
  29. import symantec.itools.awt.TreeView;
  30. import symantec.itools.awt.shape.Line;
  31. import symantec.itools.awt.util.ToolBarSpacer;
  32. import symantec.itools.awt.BorderPanel;
  33. import symantec.itools.awt.util.spinner.ListSpinner;
  34. import symantec.itools.awt.RollOverButton;
  35. import symantec.itools.awt.shape.HorizontalLine;
  36. import symantec.itools.awt.TabPanel;
  37. import symantec.itools.awt.ImageListBox;
  38. import symantec.itools.awt.StatusBar;
  39. import symantec.itools.awt.Label3D;
  40. import symantec.itools.awt.HorizontalSlider;
  41. import symantec.itools.awt.VerticalSlider;
  42. import symantec.itools.awt.StateCheckBox;
  43. import symantec.itools.awt.ComboBox;
  44. import symantec.itools.awt.util.ProgressBar;
  45. import symantec.itools.awt.LabelButton;
  46. import symantec.itools.multimedia.Animator;
  47. import symantec.itools.awt.shape.Ellipse;
  48. import symantec.itools.awt.util.spinner.DaySpinner;
  49. import symantec.itools.awt.util.spinner.MonthSpinner;
  50. import symantec.itools.awt.WrappingLabel;
  51. import symantec.itools.awt.DirectionButton;
  52. import symantec.itools.awt.util.spinner.NumericSpinner;
  53. import symantec.itools.awt.util.Calendar;
  54. import symantec.itools.multimedia.ImageViewer;
  55. import symantec.itools.awt.LabelHTMLLink;
  56. import symantec.itools.awt.shape.VerticalLine;
  57. import symantec.itools.net.RelativeURL;
  58. import symantec.itools.awt.ScrollingPanel;
  59. public class Applet1 extends Applet
  60. {
  61.     void imageListBox1_ListSelect(java.awt.event.ItemEvent event) {
  62.         try {
  63.             imageViewer1.setImage(imageListBox1.getImage(imageListBox1.getSelectedIndex()));
  64.             imageViewer1.repaint();
  65.         } catch(java.beans.PropertyVetoException e) {
  66.         }
  67.     }
  68.  
  69.  
  70.     void setListItemImage(int listItem, URL url) {
  71.         Image image = getToolkit().getImage(url);
  72.  
  73.         MediaTracker tracker = new MediaTracker(this);
  74.  
  75.         tracker.addImage(image, 0);
  76.  
  77.         try {
  78.             tracker.waitForAll();
  79.         } catch(InterruptedException e){
  80.         }
  81.         try {
  82.             imageListBox1.setImage(listItem, image);
  83.         } catch(java.beans.PropertyVetoException e) {
  84.         }
  85.     }
  86.     public void init()
  87.     {
  88.         // Take out this line if you don't use symantec.itools.net.RelativeURL or symantec.itools.awt.util.StatusScroller
  89.         symantec.itools.lang.Context.setApplet(this);
  90.  
  91.         // This code is automatically generated by Visual Cafe when you add
  92.         // components to the visual environment. It instantiates and initializes
  93.         // the components. To modify the code, only use code syntax that matches
  94.         // what Visual Cafe can generate, or Visual Cafe may be unable to back
  95.         // parse your Java file into its visual environment.
  96.         //{{INIT_CONTROLS
  97.         setLayout(null);
  98.         setSize(525,551);
  99.         setBackground(new Color(12632256));
  100.         timer1 = new symantec.itools.util.Timer(1000,true);
  101.         timer1.start();
  102.         //$$ timer1.move(4,51);
  103.         statusScroller1 = new symantec.itools.awt.util.StatusScroller();
  104.         try {
  105.             statusScroller1.setString("Use the horizontal slider to adjust my scrolling speed...");
  106.         }
  107.         catch(java.beans.PropertyVetoException e) { }
  108.         //$$ statusScroller1.move(6,98);
  109.         tabPanel1 = new symantec.itools.awt.TabPanel();
  110.         try {
  111.             java.lang.String[] tempString = new java.lang.String[7];
  112.             tempString[0] = new java.lang.String("AWT");
  113.             tempString[1] = new java.lang.String("Utility");
  114.             tempString[2] = new java.lang.String("Multimedia");
  115.             tempString[3] = new java.lang.String("Shapes");
  116.             tempString[4] = new java.lang.String("Panels");
  117.             tempString[5] = new java.lang.String("Additional");
  118.             tempString[6] = new java.lang.String("DBAware");
  119.             tabPanel1.setPanelLabels(tempString);
  120.         }
  121.         catch(java.beans.PropertyVetoException e) { }
  122.         try {
  123.             tabPanel1.setCurrentPanelNdx(5);
  124.         }
  125.         catch(java.beans.PropertyVetoException e) { }
  126.         tabPanel1.setBounds(40,13,476,440);
  127.         add(tabPanel1);
  128.         panel1 = new java.awt.Panel();
  129.         panel1.setLayout(null);
  130.         panel1.setVisible(false);
  131.         panel1.setBounds(12,33,452,396);
  132.         tabPanel1.add(panel1);
  133.         horizontalScrollbar1 = new java.awt.Scrollbar(Scrollbar.HORIZONTAL);
  134.         horizontalScrollbar1.setBounds(175,56,80,16);
  135.         panel1.add(horizontalScrollbar1);
  136.         verticalScrollbar1 = new java.awt.Scrollbar(Scrollbar.VERTICAL);
  137.         verticalScrollbar1.setBounds(255,72,16,80);
  138.         panel1.add(verticalScrollbar1);
  139.         list1 = new java.awt.List(4);
  140.         list1.addItem("AWT");
  141.         list1.addItem("List");
  142.         panel1.add(list1);
  143.         list1.setBounds(278,59,70,47);
  144.         textField1 = new java.awt.TextField();
  145.         textField1.setText("TextField");
  146.         textField1.setBounds(279,129,69,22);
  147.         textField1.setFont(new Font("Dialog", Font.PLAIN, 10));
  148.         panel1.add(textField1);
  149.         textArea1 = new java.awt.TextArea();
  150.         textArea1.setText("TextArea");
  151.         textArea1.setBounds(360,59,83,46);
  152.         panel1.add(textArea1);
  153.         choice1 = new java.awt.Choice();
  154.         choice1.addItem("AWT");
  155.         choice1.addItem("Choice");
  156.         try {
  157.             choice1.select(0);
  158.         }
  159.         catch (IllegalArgumentException e) { }
  160.         panel1.add(choice1);
  161.         choice1.setBounds(357,121,85,40);
  162.         panel7 = new java.awt.Panel();
  163.         panel7.setLayout(null);
  164.         panel7.setBounds(229,230,159,139);
  165.         panel7.setBackground(new Color(16711935));
  166.         panel1.add(panel7);
  167.         checkbox1 = new java.awt.Checkbox("checkbox");
  168.         checkbox1.setBounds(33,41,100,40);
  169.         checkbox1.setBackground(new Color(16711935));
  170.         panel7.add(checkbox1);
  171.         Group1 = new CheckboxGroup();
  172.         radioButton3 = new java.awt.Checkbox("radiobutton", Group1, false);
  173.         radioButton3.setBounds(31,8,100,40);
  174.         radioButton3.setBackground(new Color(16711935));
  175.         panel7.add(radioButton3);
  176.         button2 = new java.awt.Button();
  177.         button2.setLabel("button");
  178.         button2.setBounds(47,91,60,40);
  179.         panel7.add(button2);
  180.         label2 = new java.awt.Label("AWT Canvas");
  181.         label2.setBounds(93,236,86,51);
  182.         label2.setBackground(new Color(16756655));
  183.         panel1.add(label2);
  184.         canvas1 = new java.awt.Canvas();
  185.         canvas1.setBounds(49,230,159,139);
  186.         canvas1.setBackground(new Color(16756655));
  187.         panel1.add(canvas1);
  188.         scrollingPanel1 = new symantec.itools.awt.ScrollingPanel();
  189.         scrollingPanel1.setBounds(26,56,124,108);
  190.         panel1.add(scrollingPanel1);
  191.         panel6 = new java.awt.Panel();
  192.         panel6.setLayout(null);
  193.         panel6.setBounds(0,0,126,123);
  194.         scrollingPanel1.add(panel6);
  195.         button11 = new java.awt.Button();
  196.         button11.setLabel("button");
  197.         button11.setBounds(45,63,60,40);
  198.         button11.setBackground(new Color(12632256));
  199.         panel6.add(button11);
  200.         panel2 = new java.awt.Panel();
  201.         panel2.setLayout(null);
  202.         panel2.setVisible(false);
  203.         panel2.setBounds(12,33,452,396);
  204.         tabPanel1.add(panel2);
  205.         calendar1 = new symantec.itools.awt.util.Calendar();
  206.         try {
  207.             calendar1.setDate("February 13, 1998");
  208.         }
  209.         catch(java.beans.PropertyVetoException e) { }
  210.         calendar1.setBounds(21,43,285,180);
  211.         calendar1.setFont(new Font("Dialog", Font.BOLD, 10));
  212.         panel2.add(calendar1);
  213.         treeView1 = new symantec.itools.awt.TreeView();
  214.         {
  215.             java.lang.String[] tempString = new java.lang.String[8];
  216.             tempString[0] = new java.lang.String("Root 1");
  217.             tempString[1] = new java.lang.String(" Sub 1");
  218.             tempString[2] = new java.lang.String(" Sub 2");
  219.             tempString[3] = new java.lang.String("Root2");
  220.             tempString[4] = new java.lang.String(" Sub 3");
  221.             tempString[5] = new java.lang.String(" Sub 4");
  222.             tempString[6] = new java.lang.String("  Sub 5");
  223.             tempString[7] = new java.lang.String("   Sub 6");
  224.             treeView1.setTreeStructure(tempString);
  225.         }
  226.         treeView1.setBounds(320,50,126,181);
  227.         treeView1.setBackground(new Color(16777215));
  228.         panel2.add(treeView1);
  229.         progressBar1 = new symantec.itools.awt.util.ProgressBar();
  230.         try {
  231.             progressBar1.setDrawBoxes(true);
  232.         }
  233.         catch(java.beans.PropertyVetoException e) { }
  234.         progressBar1.setBounds(63,315,324,38);
  235.         panel2.add(progressBar1);
  236.         label3 = new java.awt.Label("Calendar");
  237.         label3.setBounds(151,6,100,40);
  238.         panel2.add(label3);
  239.         label4 = new java.awt.Label("TreeView");
  240.         label4.setBounds(346,6,55,40);
  241.         panel2.add(label4);
  242.         label5 = new java.awt.Label("Progress Bar");
  243.         label5.setBounds(180,266,81,40);
  244.         panel2.add(label5);
  245.         directionButton2 = new symantec.itools.awt.DirectionButton();
  246.         try {
  247.             directionButton2.setDirection(symantec.itools.awt.DirectionButton.RIGHT);
  248.         }
  249.         catch(java.beans.PropertyVetoException e) { }
  250.         directionButton2.setBounds(391,315,20,38);
  251.         panel2.add(directionButton2);
  252.         directionButton3 = new symantec.itools.awt.DirectionButton();
  253.         directionButton3.setBounds(39,315,20,38);
  254.         panel2.add(directionButton3);
  255.         button10 = new java.awt.Button();
  256.         button10.setLabel("Delete Node");
  257.         button10.setBounds(320,232,126,16);
  258.         button10.setBackground(new Color(12632256));
  259.         panel2.add(button10);
  260.         radioButton4 = new java.awt.Checkbox("Block bar", Group1, true);
  261.         radioButton4.setBounds(129,367,74,18);
  262.         panel2.add(radioButton4);
  263.         radioButton5 = new java.awt.Checkbox("Solid bar", Group1, false);
  264.         radioButton5.setBounds(50,365,72,20);
  265.         panel2.add(radioButton5);
  266.         numericSpinner2 = new symantec.itools.awt.util.spinner.NumericSpinner();
  267.         try {
  268.             numericSpinner2.setCurrent(8);
  269.         }
  270.         catch(java.beans.PropertyVetoException e) { }
  271.         numericSpinner2.setBounds(205,366,34,19);
  272.         panel2.add(numericSpinner2);
  273.         label1 = new java.awt.Label("Block Width");
  274.         label1.setBounds(244,367,69,18);
  275.         panel2.add(label1);
  276.         numericSpinner3 = new symantec.itools.awt.util.spinner.NumericSpinner();
  277.         try {
  278.             numericSpinner3.setCurrent(2);
  279.         }
  280.         catch(java.beans.PropertyVetoException e) { }
  281.         numericSpinner3.setBounds(311,366,34,19);
  282.         panel2.add(numericSpinner3);
  283.         label13 = new java.awt.Label("Block Space");
  284.         label13.setBounds(350,367,69,18);
  285.         panel2.add(label13);
  286.         textField5 = new java.awt.TextField();
  287.         textField5.setBounds(166,232,126,22);
  288.         panel2.add(textField5);
  289.         button1 = new java.awt.Button();
  290.         button1.setLabel("Get Date");
  291.         button1.setBounds(38,232,87,22);
  292.         button1.setBackground(new Color(12632256));
  293.         panel2.add(button1);
  294.         panel3 = new java.awt.Panel();
  295.         panel3.setLayout(null);
  296.         panel3.setVisible(false);
  297.         panel3.setBounds(12,33,452,396);
  298.         tabPanel1.add(panel3);
  299.         slideShow1 = new symantec.itools.multimedia.SlideShow();
  300.         try {
  301.             slideShow1.addImageAndDescription(symantec.itools.net.RelativeURL.getURL("images/little.gif"), "");
  302.             slideShow1.addImageAndDescription(symantec.itools.net.RelativeURL.getURL("images/little1.gif"), "");
  303.             slideShow1.addImageAndDescription(symantec.itools.net.RelativeURL.getURL("images/bigbowie.gif"), "");
  304.             slideShow1.addImageAndDescription(symantec.itools.net.RelativeURL.getURL("images/g1.jpg"), "");
  305.             slideShow1.addImageAndDescription(symantec.itools.net.RelativeURL.getURL("images/g2.JPG"), "");
  306.         } catch (Exception e) { }
  307.         slideShow1.setBounds(1,28,318,251);
  308.         panel3.add(slideShow1);
  309.         imageViewer1 = new symantec.itools.multimedia.ImageViewer();
  310.         try {
  311.             imageViewer1.setImageURL(symantec.itools.net.RelativeURL.getURL("images/gear.gif"));
  312.         }
  313.         catch (java.net.MalformedURLException error) { }
  314.         catch(java.beans.PropertyVetoException e) { }
  315.         imageViewer1.setBounds(372,316,64,55);
  316.         panel3.add(imageViewer1);
  317.         scrollingText1 = new symantec.itools.multimedia.ScrollingText();
  318.         try {
  319.             java.lang.String[] tempString = new java.lang.String[1];
  320.             tempString[0] = new java.lang.String("Scrolling Text");
  321.             scrollingText1.setMessageList(tempString);
  322.         }
  323.         catch(java.beans.PropertyVetoException e) { }
  324.         scrollingText1.setBounds(346,22,85,40);
  325.         scrollingText1.setBackground(new Color(16762880));
  326.         panel3.add(scrollingText1);
  327.         animator1 = new symantec.itools.multimedia.Animator();
  328.         try {
  329.             java.net.URL[] tempURL = new java.net.URL[13];
  330.             tempURL[0] = symantec.itools.net.RelativeURL.getURL("images/FN0.gif");
  331.             tempURL[1] = symantec.itools.net.RelativeURL.getURL("images/FN1.gif");
  332.             tempURL[2] = symantec.itools.net.RelativeURL.getURL("images/FN2.gif");
  333.             tempURL[3] = symantec.itools.net.RelativeURL.getURL("images/FN3.gif");
  334.             tempURL[4] = symantec.itools.net.RelativeURL.getURL("images/FN4.gif");
  335.             tempURL[5] = symantec.itools.net.RelativeURL.getURL("images/FN5.gif");
  336.             tempURL[6] = symantec.itools.net.RelativeURL.getURL("images/FN6.gif");
  337.             tempURL[7] = symantec.itools.net.RelativeURL.getURL("images/FN7.gif");
  338.             tempURL[8] = symantec.itools.net.RelativeURL.getURL("images/FN8.gif");
  339.             tempURL[9] = symantec.itools.net.RelativeURL.getURL("images/FN9.gif");
  340.             tempURL[10] = symantec.itools.net.RelativeURL.getURL("images/FN10.gif");
  341.             tempURL[11] = symantec.itools.net.RelativeURL.getURL("images/FN11.gif");
  342.             tempURL[12] = symantec.itools.net.RelativeURL.getURL("images/FN12.gif");
  343.             animator1.setImageList(tempURL);
  344.         }
  345.         catch (java.net.MalformedURLException error) { }
  346.         catch(java.beans.PropertyVetoException e) { }
  347.         animator1.setBounds(1,299,358,91);
  348.         panel3.add(animator1);
  349.         label6 = new java.awt.Label("Slideshow");
  350.         label6.setBounds(138,3,64,17);
  351.         panel3.add(label6);
  352.         button3 = new java.awt.Button();
  353.         button3.setActionCommand("button");
  354.         button3.setLabel("Next");
  355.         button3.setBounds(88,247,60,19);
  356.         panel3.add(button3);
  357.         button4 = new java.awt.Button();
  358.         button4.setActionCommand("button");
  359.         button4.setLabel("Previous");
  360.         button4.setBounds(174,247,60,19);
  361.         panel3.add(button4);
  362.         label7 = new java.awt.Label("ImageViewer");
  363.         label7.setBounds(368,274,75,26);
  364.         panel3.add(label7);
  365.         label8 = new java.awt.Label("Animator");
  366.         label8.setBounds(150,282,87,15);
  367.         panel3.add(label8);
  368.         button5 = new java.awt.Button();
  369.         button5.setActionCommand("button");
  370.         button5.setLabel("Fireworks");
  371.         button5.setBounds(347,75,90,24);
  372.         panel3.add(button5);
  373.         button6 = new java.awt.Button();
  374.         button6.setActionCommand("button");
  375.         button6.setLabel("Plasma");
  376.         button6.setBounds(347,107,90,24);
  377.         panel3.add(button6);
  378.         button7 = new java.awt.Button();
  379.         button7.setActionCommand("button");
  380.         button7.setLabel("SoundPlayer");
  381.         button7.setBounds(347,139,90,24);
  382.         panel3.add(button7);
  383.         button8 = new java.awt.Button();
  384.         button8.setActionCommand("button");
  385.         button8.setLabel("Emblaze");
  386.         button8.setBounds(347,171,90,24);
  387.         panel3.add(button8);
  388.         button9 = new java.awt.Button();
  389.         button9.setActionCommand("button");
  390.         button9.setLabel("NervousText");
  391.         button9.setBounds(347,203,90,24);
  392.         panel3.add(button9);
  393.         directionButton4 = new symantec.itools.awt.DirectionButton();
  394.         directionButton4.setBounds(324,22,20,40);
  395.         panel3.add(directionButton4);
  396.         directionButton5 = new symantec.itools.awt.DirectionButton();
  397.         try {
  398.             directionButton5.setDirection(symantec.itools.awt.DirectionButton.RIGHT);
  399.         }
  400.         catch(java.beans.PropertyVetoException e) { }
  401.         directionButton5.setBounds(433,22,20,40);
  402.         panel3.add(directionButton5);
  403.         panel4 = new java.awt.Panel();
  404.         panel4.setLayout(null);
  405.         panel4.setVisible(false);
  406.         panel4.setBounds(12,33,452,396);
  407.         tabPanel1.add(panel4);
  408.         line1 = new symantec.itools.awt.shape.Line();
  409.         try {
  410.             line1.setLineThickness(10);
  411.         }
  412.         catch(java.beans.PropertyVetoException e) { }
  413.         line1.setBounds(43,38,139,133);
  414.         line1.setForeground(new Color(16756655));
  415.         panel4.add(line1);
  416.         horizontalLine1 = new symantec.itools.awt.shape.HorizontalLine();
  417.         horizontalLine1.setBounds(20,71,316,2);
  418.         horizontalLine1.setForeground(new Color(16776960));
  419.         panel4.add(horizontalLine1);
  420.         rect1 = new symantec.itools.awt.shape.Rect();
  421.         try {
  422.             rect1.setFillColor(new java.awt.Color(65535));
  423.         }
  424.         catch(java.beans.PropertyVetoException e) { }
  425.         try {
  426.             rect1.setFillMode(true);
  427.         }
  428.         catch(java.beans.PropertyVetoException e) { }
  429.         rect1.setBounds(80,234,239,63);
  430.         panel4.add(rect1);
  431.         square1 = new symantec.itools.awt.shape.Square();
  432.         try {
  433.             square1.setFillColor(new java.awt.Color(16711680));
  434.         }
  435.         catch(java.beans.PropertyVetoException e) { }
  436.         try {
  437.             square1.setFillMode(true);
  438.         }
  439.         catch(java.beans.PropertyVetoException e) { }
  440.         square1.setBounds(242,123,86,86);
  441.         panel4.add(square1);
  442.         verticalLine1 = new symantec.itools.awt.shape.VerticalLine();
  443.         verticalLine1.setBounds(360,25,2,305);
  444.         panel4.add(verticalLine1);
  445.         circle1 = new symantec.itools.awt.shape.Circle();
  446.         try {
  447.             circle1.setFillColor(new java.awt.Color(16711935));
  448.         }
  449.         catch(java.beans.PropertyVetoException e) { }
  450.         try {
  451.             circle1.setFillMode(true);
  452.         }
  453.         catch(java.beans.PropertyVetoException e) { }
  454.         circle1.setBounds(33,119,99,99);
  455.         panel4.add(circle1);
  456.         ellipse1 = new symantec.itools.awt.shape.Ellipse();
  457.         try {
  458.             ellipse1.setFillColor(new java.awt.Color(255));
  459.         }
  460.         catch(java.beans.PropertyVetoException e) { }
  461.         try {
  462.             ellipse1.setFillMode(true);
  463.         }
  464.         catch(java.beans.PropertyVetoException e) { }
  465.         ellipse1.setBounds(189,19,115,37);
  466.         panel4.add(ellipse1);
  467.         panel5 = new java.awt.Panel();
  468.         panel5.setLayout(null);
  469.         panel5.setVisible(false);
  470.         panel5.setBounds(12,33,452,396);
  471.         tabPanel1.add(panel5);
  472.         keyPressManagerPanel1 = new symantec.itools.awt.KeyPressManagerPanel();
  473.         keyPressManagerPanel1.setLayout(null);
  474.         keyPressManagerPanel1.setBounds(29,25,145,159);
  475.         keyPressManagerPanel1.setBackground(new Color(16756655));
  476.         panel5.add(keyPressManagerPanel1);
  477.         textField2 = new java.awt.TextField();
  478.         textField2.setBounds(24,9,100,40);
  479.         textField2.setBackground(new Color(16777215));
  480.         keyPressManagerPanel1.add(textField2);
  481.         textField3 = new java.awt.TextField();
  482.         textField3.setBounds(24,60,100,40);
  483.         textField3.setBackground(new Color(16777215));
  484.         keyPressManagerPanel1.add(textField3);
  485.         textField4 = new java.awt.TextField();
  486.         textField4.setBounds(24,111,100,40);
  487.         textField4.setBackground(new Color(16777215));
  488.         keyPressManagerPanel1.add(textField4);
  489.         borderPanel1 = new symantec.itools.awt.BorderPanel();
  490.         try {
  491.             borderPanel1.setLabel("Border Panel");
  492.         }
  493.         catch(java.beans.PropertyVetoException e) { }
  494.         try {
  495.             borderPanel1.setAlignStyle(symantec.itools.awt.BorderPanel.ALIGN_LEFT);
  496.         }
  497.         catch(java.beans.PropertyVetoException e) { }
  498.         borderPanel1.setLayout(null);
  499.         borderPanel1.setBounds(208,17,199,104);
  500.         panel5.add(borderPanel1);
  501.         radioButtonGroupPanel1 = new symantec.itools.awt.RadioButtonGroupPanel();
  502.         radioButtonGroupPanel1.setLayout(new FlowLayout(FlowLayout.CENTER,5,5));
  503.         radioButtonGroupPanel1.setBounds(37,209,158,67);
  504.         radioButtonGroupPanel1.setBackground(new Color(16777215));
  505.         panel5.add(radioButtonGroupPanel1);
  506.         radioButton1 = new java.awt.Checkbox("radiobutton");
  507.         radioButton1.setBounds(28,5,92,23);
  508.         radioButton1.setBackground(new Color(16777215));
  509.         radioButtonGroupPanel1.add(radioButton1);
  510.         radioButton2 = new java.awt.Checkbox("radiobutton");
  511.         radioButton2.setBounds(28,33,92,23);
  512.         radioButton2.setBackground(new Color(16777215));
  513.         radioButtonGroupPanel1.add(radioButton2);
  514.         imagePanel1 = new symantec.itools.awt.ImagePanel();
  515.         try {
  516.             imagePanel1.setImageURL(symantec.itools.net.RelativeURL.getURL("images/gear.gif"));
  517.         }
  518.         catch (java.net.MalformedURLException error) { }
  519.         catch(java.beans.PropertyVetoException e) { }
  520.         imagePanel1.setLayout(null);
  521.         imagePanel1.setBounds(211,135,193,144);
  522.         panel5.add(imagePanel1);
  523.         toolBarPanel1 = new symantec.itools.awt.util.ToolBarPanel();
  524.         toolBarPanel1.setBounds(13,298,254,67);
  525.         panel5.add(toolBarPanel1);
  526.         imageButton1 = new symantec.itools.awt.ImageButton();
  527.         try {
  528.             imageButton1.setImageURL(symantec.itools.net.RelativeURL.getURL("images/lightbulb.gif"));
  529.         }
  530.         catch (java.net.MalformedURLException error) { }
  531.         catch(java.beans.PropertyVetoException e) { }
  532.         imageButton1.setBounds(0,0,54,54);
  533.         toolBarPanel1.add(imageButton1);
  534.         imageButton2 = new symantec.itools.awt.ImageButton();
  535.         try {
  536.             imageButton2.setImageURL(symantec.itools.net.RelativeURL.getURL("images/penny.gif"));
  537.         }
  538.         catch (java.net.MalformedURLException error) { }
  539.         catch(java.beans.PropertyVetoException e) { }
  540.         imageButton2.setBounds(54,0,54,54);
  541.         toolBarPanel1.add(imageButton2);
  542.         toolBarSpacer1 = new symantec.itools.awt.util.ToolBarSpacer();
  543.         toolBarSpacer1.setBounds(108,0,10,54);
  544.         toolBarPanel1.add(toolBarSpacer1);
  545.         toolBarSpacer2 = new symantec.itools.awt.util.ToolBarSpacer();
  546.         toolBarSpacer2.setBounds(118,0,10,54);
  547.         toolBarPanel1.add(toolBarSpacer2);
  548.         toolBarSpacer3 = new symantec.itools.awt.util.ToolBarSpacer();
  549.         toolBarSpacer3.setBounds(128,0,10,54);
  550.         toolBarPanel1.add(toolBarSpacer3);
  551.         toolBarSpacer4 = new symantec.itools.awt.util.ToolBarSpacer();
  552.         toolBarSpacer4.setBounds(138,0,10,54);
  553.         toolBarPanel1.add(toolBarSpacer4);
  554.         imageButton3 = new symantec.itools.awt.ImageButton();
  555.         try {
  556.             imageButton3.setImageURL(symantec.itools.net.RelativeURL.getURL("images/sphere.gif"));
  557.         }
  558.         catch (java.net.MalformedURLException error) { }
  559.         catch(java.beans.PropertyVetoException e) { }
  560.         imageButton3.setBounds(148,0,54,54);
  561.         toolBarPanel1.add(imageButton3);
  562.         panel8 = new java.awt.Panel();
  563.         panel8.setLayout(null);
  564.         panel8.setBounds(12,33,452,396);
  565.         tabPanel1.add(panel8);
  566.         imageListBox1 = new symantec.itools.awt.ImageListBox();
  567.         try {
  568.             java.lang.String[] tempString = new java.lang.String[7];
  569.             tempString[0] = new java.lang.String("Light Bulb");
  570.             tempString[1] = new java.lang.String("Sphere");
  571.             tempString[2] = new java.lang.String("Doorbell");
  572.             tempString[3] = new java.lang.String("Bullet Hole");
  573.             tempString[4] = new java.lang.String("Gear");
  574.             tempString[5] = new java.lang.String("Penny");
  575.             tempString[6] = new java.lang.String("Smiley");
  576.             imageListBox1.setListItems(tempString);
  577.         }
  578.         catch(java.beans.PropertyVetoException e) { }
  579.         imageListBox1.setBounds(12,43,113,111);
  580.         imageListBox1.setBackground(new Color(16777215));
  581.         panel8.add(imageListBox1);
  582.         directionButton1 = new symantec.itools.awt.DirectionButton();
  583.         try {
  584.             directionButton1.setLinkURL(new java.net.URL("http://cafe.symantec.com/"));
  585.         }
  586.         catch (java.net.MalformedURLException error) { }
  587.         catch(java.beans.PropertyVetoException e) { }
  588.         directionButton1.setBounds(10,282,55,55);
  589.         panel8.add(directionButton1);
  590.         directionButton1.setCursor(new Cursor(Cursor.HAND_CURSOR));
  591.         monthSpinner1 = new symantec.itools.awt.util.spinner.MonthSpinner();
  592.         monthSpinner1.setBounds(342,43,104,27);
  593.         panel8.add(monthSpinner1);
  594.         listSpinner1 = new symantec.itools.awt.util.spinner.ListSpinner();
  595.         try {
  596.             java.lang.String[] tempString = new java.lang.String[3];
  597.             tempString[0] = new java.lang.String("Symantec");
  598.             tempString[1] = new java.lang.String("List");
  599.             tempString[2] = new java.lang.String("Spinner");
  600.             listSpinner1.setListItems(tempString);
  601.         }
  602.         catch(java.beans.PropertyVetoException e) { }
  603.         listSpinner1.setBounds(342,105,104,27);
  604.         panel8.add(listSpinner1);
  605.         daySpinner1 = new symantec.itools.awt.util.spinner.DaySpinner();
  606.         daySpinner1.setBounds(342,74,104,27);
  607.         panel8.add(daySpinner1);
  608.         numericSpinner1 = new symantec.itools.awt.util.spinner.NumericSpinner();
  609.         numericSpinner1.setBounds(342,136,104,27);
  610.         panel8.add(numericSpinner1);
  611.         verticalSlider1 = new symantec.itools.awt.VerticalSlider();
  612.         verticalSlider1.setBounds(273,218,51,113);
  613.         panel8.add(verticalSlider1);
  614.         horizontalSlider1 = new symantec.itools.awt.HorizontalSlider();
  615.         try {
  616.             horizontalSlider1.setMaxValue(100);
  617.         }
  618.         catch(java.beans.PropertyVetoException e) { }
  619.         try {
  620.             horizontalSlider1.setTickFreq(10);
  621.         }
  622.         catch(java.beans.PropertyVetoException e) { }
  623.         horizontalSlider1.setBounds(325,282,119,48);
  624.         panel8.add(horizontalSlider1);
  625.         imageHTMLLink1 = new symantec.itools.awt.ImageHTMLLink();
  626.         try {
  627.             imageHTMLLink1.setImageURL(symantec.itools.net.RelativeURL.getURL("images/penny.gif"));
  628.         }
  629.         catch (java.net.MalformedURLException error) { }
  630.         catch(java.beans.PropertyVetoException e) { }
  631.         imageHTMLLink1.setBounds(78,281,55,55);
  632.         panel8.add(imageHTMLLink1);
  633.         imageHTMLLink1.setCursor(new Cursor(Cursor.HAND_CURSOR));
  634.         imageButton4 = new symantec.itools.awt.ImageButton();
  635.         try {
  636.             imageButton4.setImageURL(symantec.itools.net.RelativeURL.getURL("images/sphere.gif"));
  637.         }
  638.         catch (java.net.MalformedURLException error) { }
  639.         catch(java.beans.PropertyVetoException e) { }
  640.         imageButton4.setBounds(149,281,55,55);
  641.         panel8.add(imageButton4);
  642.         imageButton4.setCursor(new Cursor(Cursor.HAND_CURSOR));
  643.         labelHTMLLink1 = new symantec.itools.awt.LabelHTMLLink();
  644.         try {
  645.             labelHTMLLink1.setText("LabelHTMLLink");
  646.         }
  647.         catch(java.beans.PropertyVetoException e) { }
  648.         try {
  649.             labelHTMLLink1.setLinkURL(new java.net.URL("http://www.symantec.com/"));
  650.         }
  651.         catch (java.net.MalformedURLException error) { }
  652.         catch(java.beans.PropertyVetoException e) { }
  653.         labelHTMLLink1.setBounds(134,86,94,29);
  654.         panel8.add(labelHTMLLink1);
  655.         labelHTMLLink1.setCursor(new Cursor(Cursor.HAND_CURSOR));
  656.         labelButton1 = new symantec.itools.awt.LabelButton();
  657.         try {
  658.             labelButton1.setText("LabelButton");
  659.         }
  660.         catch(java.beans.PropertyVetoException e) { }
  661.         labelButton1.setBounds(133,43,96,29);
  662.         panel8.add(labelButton1);
  663.         labelButton1.setCursor(new Cursor(Cursor.HAND_CURSOR));
  664.         rollOverButton1 = new symantec.itools.awt.RollOverButton();
  665.         try {
  666.             rollOverButton1.setOverURL(symantec.itools.net.RelativeURL.getURL("images/mouseover.gif"));
  667.         }
  668.         catch (java.net.MalformedURLException error) { }
  669.         catch(java.beans.PropertyVetoException e) { }
  670.         try {
  671.             rollOverButton1.setDownURL(symantec.itools.net.RelativeURL.getURL("images/mouseclicked.gif"));
  672.         }
  673.         catch (java.net.MalformedURLException error) { }
  674.         catch(java.beans.PropertyVetoException e) { }
  675.         try {
  676.             rollOverButton1.setStandardURL(symantec.itools.net.RelativeURL.getURL("images/noaction.gif"));
  677.         }
  678.         catch (java.net.MalformedURLException error) { }
  679.         catch(java.beans.PropertyVetoException e) { }
  680.         rollOverButton1.setBounds(208,289,60,39);
  681.         panel8.add(rollOverButton1);
  682.         rollOverButton1.setCursor(new Cursor(Cursor.HAND_CURSOR));
  683.         label3D1 = new symantec.itools.awt.Label3D();
  684.         try {
  685.             label3D1.setBorderedColor(new java.awt.Color(255));
  686.         }
  687.         catch(java.beans.PropertyVetoException e) { }
  688.         try {
  689.             label3D1.setText("Label3D");
  690.         }
  691.         catch(java.beans.PropertyVetoException e) { }
  692.         try {
  693.             label3D1.setBorderIndent(symantec.itools.awt.Label3D.INDENT_TWO);
  694.         }
  695.         catch(java.beans.PropertyVetoException e) { }
  696.         try {
  697.             label3D1.setTextColor(new java.awt.Color(16711680));
  698.         }
  699.         catch(java.beans.PropertyVetoException e) { }
  700.         label3D1.setBounds(132,127,96,29);
  701.         panel8.add(label3D1);
  702.         formattedTextField1 = new symantec.itools.awt.FormattedTextField();
  703.         formattedTextField1.setText("FormattedTextField");
  704.         formattedTextField1.setBounds(120,347,128,23);
  705.         formattedTextField1.setBackground(new Color(16777215));
  706.         panel8.add(formattedTextField1);
  707.         formattedTextField1.setCursor(new Cursor(Cursor.TEXT_CURSOR));
  708.         stateCheckBox1 = new symantec.itools.awt.StateCheckBox();
  709.         try {
  710.             stateCheckBox1.setStyle(symantec.itools.awt.StateCheckBox.THREE_STATE);
  711.         }
  712.         catch(java.beans.PropertyVetoException e) { }
  713.         stateCheckBox1.setBounds(257,351,15,14);
  714.         panel8.add(stateCheckBox1);
  715.         label9 = new java.awt.Label("StateCheckBox");
  716.         label9.setBounds(277,340,88,35);
  717.         panel8.add(label9);
  718.         multiList1 = new symantec.itools.awt.MultiList();
  719.         try {
  720.             java.lang.String[] tempString = new java.lang.String[1];
  721.             tempString[0] = new java.lang.String("Col1;Col2");
  722.             multiList1.setListItems(tempString);
  723.         }
  724.         catch(java.beans.PropertyVetoException e) { }
  725.         try {
  726.             java.lang.String[] tempString = new java.lang.String[2];
  727.             tempString[0] = new java.lang.String("Symantec");
  728.             tempString[1] = new java.lang.String("MultiList");
  729.             multiList1.setHeadings(tempString);
  730.         }
  731.         catch(java.beans.PropertyVetoException e) { }
  732.         multiList1.setBounds(11,165,213,81);
  733.         multiList1.setBackground(new Color(16777215));
  734.         panel8.add(multiList1);
  735.         wrappingLabel1 = new symantec.itools.awt.WrappingLabel();
  736.         try {
  737.             wrappingLabel1.setText("Symantec Wrapping Label");
  738.         }
  739.         catch(java.beans.PropertyVetoException e) { }
  740.         wrappingLabel1.setBounds(240,43,91,111);
  741.         wrappingLabel1.setBackground(new Color(16777215));
  742.         panel8.add(wrappingLabel1);
  743.         comboBox1 = new symantec.itools.awt.ComboBox();
  744.         try {
  745.             java.lang.String[] tempString = new java.lang.String[2];
  746.             tempString[0] = new java.lang.String("Symantec");
  747.             tempString[1] = new java.lang.String("ComboBox");
  748.             comboBox1.setListItems(tempString);
  749.         }
  750.         catch(java.beans.PropertyVetoException e) { }
  751.         comboBox1.setBounds(342,173,105,26);
  752.         panel8.add(comboBox1);
  753.         label10 = new java.awt.Label("Various Buttons");
  754.         label10.setBounds(12,245,88,35);
  755.         panel8.add(label10);
  756.         label11 = new java.awt.Label("Various Spinners");
  757.         label11.setBounds(342,5,106,35);
  758.         panel8.add(label11);
  759.         label12 = new java.awt.Label("Sliders");
  760.         label12.setBounds(331,230,106,35);
  761.         panel8.add(label12);
  762.         label14 = new java.awt.Label("Image List Box");
  763.         label14.setBounds(15,4,88,35);
  764.         panel8.add(label14);
  765.         statusBar1 = new symantec.itools.awt.StatusBar();
  766.         try {
  767.             statusBar1.setBevelStyle(symantec.itools.awt.StatusBar.BEVEL_RAISED);
  768.         }
  769.         catch(java.beans.PropertyVetoException e) { }
  770.         try {
  771.             statusBar1.setLabel("Info Center");
  772.         }
  773.         catch(java.beans.PropertyVetoException e) { }
  774.         try {
  775.             statusBar1.setAlignStyle(symantec.itools.awt.StatusBar.ALIGN_LEFT);
  776.         }
  777.         catch(java.beans.PropertyVetoException e) { }
  778.         statusBar1.setBounds(47,471,465,61);
  779.         add(statusBar1);
  780.         //}}
  781.      try {
  782.             setListItemImage(0, RelativeURL.getURL("images/lightbulb.gif"));
  783.             setListItemImage(1, RelativeURL.getURL("images/sphere.gif"));
  784.             setListItemImage(2, RelativeURL.getURL("images/doorbell.gif"));
  785.             setListItemImage(3, RelativeURL.getURL("images/bullethole.gif"));
  786.             setListItemImage(4, RelativeURL.getURL("images/gear.gif"));
  787.             setListItemImage(5, RelativeURL.getURL("images/penny.gif"));
  788.             setListItemImage(6, RelativeURL.getURL("images/smiley.gif"));
  789.         } catch (java.net.MalformedURLException e) {
  790.         }
  791.         //{{REGISTER_LISTENERS
  792.         SymAction lSymAction = new SymAction();
  793.         timer1.addActionListener(lSymAction);
  794.         button3.addActionListener(lSymAction);
  795.         button4.addActionListener(lSymAction);
  796.         imageButton1.addActionListener(lSymAction);
  797.         imageButton2.addActionListener(lSymAction);
  798.         imageButton3.addActionListener(lSymAction);
  799.         directionButton1.addActionListener(lSymAction);
  800.         imageHTMLLink1.addActionListener(lSymAction);
  801.         imageButton4.addActionListener(lSymAction);
  802.         horizontalSlider1.addActionListener(lSymAction);
  803.         SymMouse aSymMouse = new SymMouse();
  804.         canvas1.addMouseListener(aSymMouse);
  805.         radioButton3.addMouseListener(aSymMouse);
  806.         button2.addMouseListener(aSymMouse);
  807.         checkbox1.addMouseListener(aSymMouse);
  808.         choice1.addMouseListener(aSymMouse);
  809.         textArea1.addMouseListener(aSymMouse);
  810.         list1.addMouseListener(aSymMouse);
  811.         calendar1.addMouseListener(aSymMouse);
  812.         treeView1.addMouseListener(aSymMouse);
  813.         progressBar1.addMouseListener(aSymMouse);
  814.         slideShow1.addMouseListener(aSymMouse);
  815.         imageViewer1.addMouseListener(aSymMouse);
  816.         animator1.addMouseListener(aSymMouse);
  817.         button3.addMouseListener(aSymMouse);
  818.         button4.addMouseListener(aSymMouse);
  819.         scrollingText1.addMouseListener(aSymMouse);
  820.         button5.addMouseListener(aSymMouse);
  821.         button6.addMouseListener(aSymMouse);
  822.         button7.addMouseListener(aSymMouse);
  823.         button8.addMouseListener(aSymMouse);
  824.         button9.addMouseListener(aSymMouse);
  825.         imageListBox1.addMouseListener(aSymMouse);
  826.         labelButton1.addMouseListener(aSymMouse);
  827.         labelHTMLLink1.addMouseListener(aSymMouse);
  828.         label3D1.addMouseListener(aSymMouse);
  829.         wrappingLabel1.addMouseListener(aSymMouse);
  830.         multiList1.addMouseListener(aSymMouse);
  831.         directionButton1.addMouseListener(aSymMouse);
  832.         imageHTMLLink1.addMouseListener(aSymMouse);
  833.         imageButton4.addMouseListener(aSymMouse);
  834.         rollOverButton1.addMouseListener(aSymMouse);
  835.         horizontalSlider1.addMouseListener(aSymMouse);
  836.         label9.addMouseListener(aSymMouse);
  837.         stateCheckBox1.addMouseListener(aSymMouse);
  838.         formattedTextField1.addMouseListener(aSymMouse);
  839.         keyPressManagerPanel1.addMouseListener(aSymMouse);
  840.         borderPanel1.addMouseListener(aSymMouse);
  841.         imagePanel1.addMouseListener(aSymMouse);
  842.         radioButtonGroupPanel1.addMouseListener(aSymMouse);
  843.         toolBarPanel1.addMouseListener(aSymMouse);
  844.         SymComponent aSymComponent = new SymComponent();
  845.         label9.addComponentListener(aSymComponent);
  846.         button5.addActionListener(lSymAction);
  847.         button6.addActionListener(lSymAction);
  848.         button8.addActionListener(lSymAction);
  849.         button9.addActionListener(lSymAction);
  850.         button7.addActionListener(lSymAction);
  851.         textField1.addMouseListener(aSymMouse);
  852.         button10.addActionListener(lSymAction);
  853.         directionButton3.addActionListener(lSymAction);
  854.         directionButton2.addActionListener(lSymAction);
  855.         directionButton3.addMouseListener(aSymMouse);
  856.         directionButton2.addMouseListener(aSymMouse);
  857.         SymItem lSymItem = new SymItem();
  858.         radioButton5.addItemListener(lSymItem);
  859.         radioButton4.addMouseListener(aSymMouse);
  860.         numericSpinner2.addActionListener(lSymAction);
  861.         numericSpinner3.addActionListener(lSymAction);
  862.         directionButton4.addActionListener(lSymAction);
  863.         directionButton5.addActionListener(lSymAction);
  864.         button1.addActionListener(lSymAction);
  865.         //}}
  866.     }
  867.  
  868.     //{{DECLARE_CONTROLS
  869.     symantec.itools.util.Timer timer1;
  870.     symantec.itools.awt.util.StatusScroller statusScroller1;
  871.     symantec.itools.awt.TabPanel tabPanel1;
  872.     java.awt.Panel panel1;
  873.     java.awt.Scrollbar horizontalScrollbar1;
  874.     java.awt.Scrollbar verticalScrollbar1;
  875.     java.awt.List list1;
  876.     java.awt.TextField textField1;
  877.     java.awt.TextArea textArea1;
  878.     java.awt.Choice choice1;
  879.     java.awt.Panel panel7;
  880.     java.awt.Checkbox checkbox1;
  881.     java.awt.Checkbox radioButton3;
  882.     CheckboxGroup Group1;
  883.     java.awt.Button button2;
  884.     java.awt.Label label2;
  885.     java.awt.Canvas canvas1;
  886.     symantec.itools.awt.ScrollingPanel scrollingPanel1;
  887.     java.awt.Panel panel6;
  888.     java.awt.Button button11;
  889.     java.awt.Panel panel2;
  890.     symantec.itools.awt.util.Calendar calendar1;
  891.     symantec.itools.awt.TreeView treeView1;
  892.     symantec.itools.awt.util.ProgressBar progressBar1;
  893.     java.awt.Label label3;
  894.     java.awt.Label label4;
  895.     java.awt.Label label5;
  896.     symantec.itools.awt.DirectionButton directionButton2;
  897.     symantec.itools.awt.DirectionButton directionButton3;
  898.     java.awt.Button button10;
  899.     java.awt.Checkbox radioButton4;
  900.     java.awt.Checkbox radioButton5;
  901.     symantec.itools.awt.util.spinner.NumericSpinner numericSpinner2;
  902.     java.awt.Label label1;
  903.     symantec.itools.awt.util.spinner.NumericSpinner numericSpinner3;
  904.     java.awt.Label label13;
  905.     java.awt.TextField textField5;
  906.     java.awt.Button button1;
  907.     java.awt.Panel panel3;
  908.     symantec.itools.multimedia.SlideShow slideShow1;
  909.     symantec.itools.multimedia.ImageViewer imageViewer1;
  910.     symantec.itools.multimedia.ScrollingText scrollingText1;
  911.     symantec.itools.multimedia.Animator animator1;
  912.     java.awt.Label label6;
  913.     java.awt.Button button3;
  914.     java.awt.Button button4;
  915.     java.awt.Label label7;
  916.     java.awt.Label label8;
  917.     java.awt.Button button5;
  918.     java.awt.Button button6;
  919.     java.awt.Button button7;
  920.     java.awt.Button button8;
  921.     java.awt.Button button9;
  922.     symantec.itools.awt.DirectionButton directionButton4;
  923.     symantec.itools.awt.DirectionButton directionButton5;
  924.     java.awt.Panel panel4;
  925.     symantec.itools.awt.shape.Line line1;
  926.     symantec.itools.awt.shape.HorizontalLine horizontalLine1;
  927.     symantec.itools.awt.shape.Rect rect1;
  928.     symantec.itools.awt.shape.Square square1;
  929.     symantec.itools.awt.shape.VerticalLine verticalLine1;
  930.     symantec.itools.awt.shape.Circle circle1;
  931.     symantec.itools.awt.shape.Ellipse ellipse1;
  932.     java.awt.Panel panel5;
  933.     symantec.itools.awt.KeyPressManagerPanel keyPressManagerPanel1;
  934.     java.awt.TextField textField2;
  935.     java.awt.TextField textField3;
  936.     java.awt.TextField textField4;
  937.     symantec.itools.awt.BorderPanel borderPanel1;
  938.     symantec.itools.awt.RadioButtonGroupPanel radioButtonGroupPanel1;
  939.     java.awt.Checkbox radioButton1;
  940.     java.awt.Checkbox radioButton2;
  941.     symantec.itools.awt.ImagePanel imagePanel1;
  942.     symantec.itools.awt.util.ToolBarPanel toolBarPanel1;
  943.     symantec.itools.awt.ImageButton imageButton1;
  944.     symantec.itools.awt.ImageButton imageButton2;
  945.     symantec.itools.awt.util.ToolBarSpacer toolBarSpacer1;
  946.     symantec.itools.awt.util.ToolBarSpacer toolBarSpacer2;
  947.     symantec.itools.awt.util.ToolBarSpacer toolBarSpacer3;
  948.     symantec.itools.awt.util.ToolBarSpacer toolBarSpacer4;
  949.     symantec.itools.awt.ImageButton imageButton3;
  950.     java.awt.Panel panel8;
  951.     symantec.itools.awt.ImageListBox imageListBox1;
  952.     symantec.itools.awt.DirectionButton directionButton1;
  953.     symantec.itools.awt.util.spinner.MonthSpinner monthSpinner1;
  954.     symantec.itools.awt.util.spinner.ListSpinner listSpinner1;
  955.     symantec.itools.awt.util.spinner.DaySpinner daySpinner1;
  956.     symantec.itools.awt.util.spinner.NumericSpinner numericSpinner1;
  957.     symantec.itools.awt.VerticalSlider verticalSlider1;
  958.     symantec.itools.awt.HorizontalSlider horizontalSlider1;
  959.     symantec.itools.awt.ImageHTMLLink imageHTMLLink1;
  960.     symantec.itools.awt.ImageButton imageButton4;
  961.     symantec.itools.awt.LabelHTMLLink labelHTMLLink1;
  962.     symantec.itools.awt.LabelButton labelButton1;
  963.     symantec.itools.awt.RollOverButton rollOverButton1;
  964.     symantec.itools.awt.Label3D label3D1;
  965.     symantec.itools.awt.FormattedTextField formattedTextField1;
  966.     symantec.itools.awt.StateCheckBox stateCheckBox1;
  967.     java.awt.Label label9;
  968.     symantec.itools.awt.MultiList multiList1;
  969.     symantec.itools.awt.WrappingLabel wrappingLabel1;
  970.     symantec.itools.awt.ComboBox comboBox1;
  971.     java.awt.Label label10;
  972.     java.awt.Label label11;
  973.     java.awt.Label label12;
  974.     java.awt.Label label14;
  975.     symantec.itools.awt.StatusBar statusBar1;
  976.     //}}
  977.  
  978.     class SymAction implements java.awt.event.ActionListener
  979.     {
  980.         public void actionPerformed(java.awt.event.ActionEvent event)
  981.         {
  982.             Object object = event.getSource();
  983.             if (object == timer1)
  984.                 timer1_TimerEvent(event);
  985.             else if (object == button3)
  986.                 button3_Action(event);
  987.             else if (object == button4)
  988.                 button4_Action(event);
  989.             else if (object == imageButton1)
  990.                 imageButton1_actionPerformed(event);
  991.             else if (object == imageButton2)
  992.                 imageButton2_actionPerformed(event);
  993.             else if (object == imageButton3)
  994.                 imageButton3_actionPerformed(event);
  995.             else if (object == directionButton1)
  996.                 directionButton1_actionPerformed(event);
  997.             else if (object == imageHTMLLink1)
  998.                 imageHTMLLink1_actionPerformed(event);
  999.             else if (object == imageButton4)
  1000.                 imageButton4_actionPerformed(event);
  1001.             else if (object == horizontalSlider1)
  1002.                 horizontalSlider1_actionPerformed(event);
  1003.             else if (object == button5)
  1004.                 button5_Action(event);
  1005.             else if (object == button6)
  1006.                 button6_Action(event);
  1007.             else if (object == button8)
  1008.                 button8_Action(event);
  1009.             else if (object == button9)
  1010.                 button9_Action(event);
  1011.             else if (object == button7)
  1012.                 button7_Action(event);
  1013.             else if (object == button10)
  1014.                 button10_ActionPerformed(event);
  1015.             else if (object == directionButton3)
  1016.                 directionButton3_actionPerformed(event);
  1017.             else if (object == directionButton2)
  1018.                 directionButton2_actionPerformed(event);
  1019.             else if (object == numericSpinner2)
  1020.                 numericSpinner2_actionPerformed(event);
  1021.             else if (object == numericSpinner3)
  1022.                 numericSpinner3_actionPerformed(event);
  1023.             else if (object == directionButton4)
  1024.                 directionButton4_actionPerformed(event);
  1025.             else if (object == directionButton5)
  1026.                 directionButton5_actionPerformed(event);
  1027.             else if (object == button1)
  1028.                 button1_ActionPerformed(event);
  1029.         }
  1030.     }
  1031.  
  1032.     void timer1_TimerEvent(java.awt.event.ActionEvent event)
  1033.     {
  1034.         // to do: code goes here.
  1035.  
  1036.         //{{CONNECTION
  1037.         // Increment the progress bar value...
  1038.         {
  1039.             try {
  1040.                 progressBar1.setValue(progressBar1.getValue() + 1);
  1041.             }
  1042.             catch(java.beans.PropertyVetoException e) { }
  1043.         }
  1044.         //}}
  1045.     }
  1046.  
  1047.     void button3_Action(java.awt.event.ActionEvent event)
  1048.     {
  1049.         // to do: code goes here.
  1050.  
  1051.         //{{CONNECTION
  1052.         // Go to the SlideShow's next image
  1053.         slideShow1.nextImage();
  1054.         //}}
  1055.     }
  1056.  
  1057.     void button4_Action(java.awt.event.ActionEvent event)
  1058.     {
  1059.         // to do: code goes here.
  1060.  
  1061.         //{{CONNECTION
  1062.         // Go to the SlideShow's previous image
  1063.         slideShow1.previousImage();
  1064.         //}}
  1065.     }
  1066.  
  1067.     void imageButton1_actionPerformed(java.awt.event.ActionEvent event)
  1068.     {
  1069.         // to do: code goes here.
  1070.  
  1071.         //{{CONNECTION
  1072.         // Set the relative image to be displayed on the panel...
  1073.         {
  1074.             try {
  1075.                 imagePanel1.setImageURL(symantec.itools.net.RelativeURL.getURL("images/lightbulb.gif"));
  1076.             }
  1077.             catch(java.net.MalformedURLException e) { }
  1078.             catch(java.beans.PropertyVetoException e) { }
  1079.         }
  1080.         //}}
  1081.     }
  1082.  
  1083.     void imageButton2_actionPerformed(java.awt.event.ActionEvent event)
  1084.     {
  1085.         // to do: code goes here.
  1086.  
  1087.         //{{CONNECTION
  1088.         // Set the relative image to be displayed on the panel...
  1089.         {
  1090.             try {
  1091.                 imagePanel1.setImageURL(symantec.itools.net.RelativeURL.getURL("images/penny.gif"));
  1092.             }
  1093.             catch(java.net.MalformedURLException e) { }
  1094.             catch(java.beans.PropertyVetoException e) { }
  1095.         }
  1096.         //}}
  1097.     }
  1098.  
  1099.     void imageButton3_actionPerformed(java.awt.event.ActionEvent event)
  1100.     {
  1101.         // to do: code goes here.
  1102.  
  1103.         //{{CONNECTION
  1104.         // Set the relative image to be displayed on the panel...
  1105.         {
  1106.             try {
  1107.                 imagePanel1.setImageURL(symantec.itools.net.RelativeURL.getURL("images/sphere.gif"));
  1108.             }
  1109.             catch(java.net.MalformedURLException e) { }
  1110.             catch(java.beans.PropertyVetoException e) { }
  1111.         }
  1112.         //}}
  1113.     }
  1114.  
  1115.     void directionButton1_actionPerformed(java.awt.event.ActionEvent event)
  1116.     {
  1117.         // to do: code goes here.
  1118.  
  1119.         //{{CONNECTION
  1120.         // Set the relative image to be displayed on the button...
  1121.         {
  1122.             try {
  1123.                 imageHTMLLink1.setImageURL(symantec.itools.net.RelativeURL.getURL("images/lightbulb.gif"));
  1124.             }
  1125.             catch(java.net.MalformedURLException e) { }
  1126.             catch(java.beans.PropertyVetoException e) { }
  1127.         }
  1128.         //}}
  1129.  
  1130.         //{{CONNECTION
  1131.         // Set the relative image to be displayed on the button...
  1132.         {
  1133.             try {
  1134.                 imageButton4.setImageURL(symantec.itools.net.RelativeURL.getURL("images/gear.gif"));
  1135.             }
  1136.             catch(java.net.MalformedURLException e) { }
  1137.             catch(java.beans.PropertyVetoException e) { }
  1138.         }
  1139.         //}}
  1140.     }
  1141.  
  1142.     void imageHTMLLink1_actionPerformed(java.awt.event.ActionEvent event)
  1143.     {
  1144.         // to do: code goes here.
  1145.  
  1146.         //{{CONNECTION
  1147.         // Set the button arrow direction... Point the button arrow DOWN
  1148.         {
  1149.             try {
  1150.                 directionButton1.setDirection(directionButton1.DOWN);
  1151.             }
  1152.             catch(java.beans.PropertyVetoException e) { }
  1153.         }
  1154.         //}}
  1155.     }
  1156.  
  1157.     void imageButton4_actionPerformed(java.awt.event.ActionEvent event)
  1158.     {
  1159.         // to do: code goes here.
  1160.  
  1161.         //{{CONNECTION
  1162.         // Set the button arrow direction... Point the button arrow UP
  1163.         {
  1164.             try {
  1165.                 directionButton1.setDirection(directionButton1.UP);
  1166.             }
  1167.             catch(java.beans.PropertyVetoException e) { }
  1168.         }
  1169.         //}}
  1170.     }
  1171.  
  1172.     void horizontalSlider1_actionPerformed(java.awt.event.ActionEvent event)
  1173.     {
  1174.         // to do: code goes here.
  1175.  
  1176.         //{{CONNECTION
  1177.         // Set the delay amount... Get the current value of the HorizontalSlider
  1178.         {
  1179.             try {
  1180.                 statusScroller1.setDelay(horizontalSlider1.getValue());
  1181.             }
  1182.             catch(java.beans.PropertyVetoException e) { }
  1183.         }
  1184.         //}}
  1185.     }
  1186.  
  1187.     class SymMouse extends java.awt.event.MouseAdapter
  1188.     {
  1189.         public void mouseClicked(java.awt.event.MouseEvent event)
  1190.         {
  1191.             Object object = event.getSource();
  1192.             if (object == radioButton4)
  1193.                 radioButton4_MouseClicked(event);
  1194.         }
  1195.  
  1196.         public void mouseExited(java.awt.event.MouseEvent event)
  1197.         {
  1198.             Object object = event.getSource();
  1199.             if (object == canvas1)
  1200.                 canvas1_MouseExit(event);
  1201.             else if (object == radioButton3)
  1202.                 radioButton3_MouseExit(event);
  1203.             else if (object == button2)
  1204.                 button2_MouseExit(event);
  1205.             else if (object == checkbox1)
  1206.                 checkbox1_MouseExit(event);
  1207.             else if (object == choice1)
  1208.                 choice1_MouseExit(event);
  1209.             else if (object == textArea1)
  1210.                 textArea1_MouseExit(event);
  1211.             else if (object == list1)
  1212.                 list1_MouseExit(event);
  1213.             else if (object == calendar1)
  1214.                 calendar1_mouseExited(event);
  1215.             else if (object == treeView1)
  1216.                 treeView1_mouseExited(event);
  1217.             else if (object == progressBar1)
  1218.                 progressBar1_mouseExited(event);
  1219.             else if (object == slideShow1)
  1220.                 slideShow1_MouseExit(event);
  1221.             else if (object == imageViewer1)
  1222.                 imageViewer1_mouseExited(event);
  1223.             else if (object == animator1)
  1224.                 animator1_mouseExited(event);
  1225.             else if (object == button3)
  1226.                 button3_MouseExit(event);
  1227.             else if (object == scrollingText1)
  1228.                 scrollingText1_mouseExited(event);
  1229.             else if (object == button5)
  1230.                 button5_MouseExit(event);
  1231.             else if (object == button6)
  1232.                 button6_MouseExit(event);
  1233.             else if (object == button7)
  1234.                 button7_MouseExit(event);
  1235.             else if (object == button8)
  1236.                 button8_MouseExit(event);
  1237.             else if (object == button9)
  1238.                 button9_MouseExit(event);
  1239.             else if (object == imageListBox1)
  1240.                 imageListBox1_mouseExited(event);
  1241.             else if (object == labelButton1)
  1242.                 labelButton1_mouseExited(event);
  1243.             else if (object == labelHTMLLink1)
  1244.                 labelHTMLLink1_mouseExited(event);
  1245.             else if (object == label3D1)
  1246.                 label3D1_mouseExited(event);
  1247.             else if (object == wrappingLabel1)
  1248.                 wrappingLabel1_mouseExited(event);
  1249.             else if (object == multiList1)
  1250.                 multiList1_mouseExited(event);
  1251.             else if (object == directionButton1)
  1252.                 directionButton1_mouseExited(event);
  1253.             else if (object == imageHTMLLink1)
  1254.                 imageHTMLLink1_mouseExited(event);
  1255.             else if (object == imageButton4)
  1256.                 imageButton4_mouseExited(event);
  1257.             else if (object == rollOverButton1)
  1258.                 rollOverButton1_mouseExited(event);
  1259.             else if (object == horizontalSlider1)
  1260.                 horizontalSlider1_mouseExited(event);
  1261.             else if (object == label9)
  1262.                 label9_MouseExit(event);
  1263.             else if (object == stateCheckBox1)
  1264.                 stateCheckBox1_mouseExited(event);
  1265.             else if (object == formattedTextField1)
  1266.                 formattedTextField1_mouseExited(event);
  1267.             else if (object == keyPressManagerPanel1)
  1268.                 keyPressManagerPanel1_mouseExited(event);
  1269.             else if (object == borderPanel1)
  1270.                 borderPanel1_mouseExited(event);
  1271.             else if (object == imagePanel1)
  1272.                 imagePanel1_mouseExited(event);
  1273.             else if (object == radioButtonGroupPanel1)
  1274.                 radioButtonGroupPanel1_mouseExited(event);
  1275.             else if (object == toolBarPanel1)
  1276.                 toolBarPanel1_mouseExited(event);
  1277.             else if (object == textField1)
  1278.                 textField1_MouseExit(event);
  1279.             else if (object == directionButton3)
  1280.                 directionButton3_mouseExited(event);
  1281.             else if (object == directionButton2)
  1282.                 directionButton2_mouseExited(event);
  1283.         }
  1284.  
  1285.         public void mouseEntered(java.awt.event.MouseEvent event)
  1286.         {
  1287.             Object object = event.getSource();
  1288.             if (object == canvas1)
  1289.                 canvas1_MouseEnter(event);
  1290.             else if (object == radioButton3)
  1291.                 radioButton3_MouseEnter(event);
  1292.             else if (object == button2)
  1293.                 button2_MouseEnter(event);
  1294.             else if (object == checkbox1)
  1295.                 checkbox1_MouseEnter(event);
  1296.             else if (object == choice1)
  1297.                 choice1_MouseEnter(event);
  1298.             else if (object == textArea1)
  1299.                 textArea1_MouseEnter(event);
  1300.             else if (object == list1)
  1301.                 list1_MouseEnter(event);
  1302.             else if (object == calendar1)
  1303.                 calendar1_mouseEntered(event);
  1304.             else if (object == treeView1)
  1305.                 treeView1_mouseEntered(event);
  1306.             else if (object == progressBar1)
  1307.                 progressBar1_mouseEntered(event);
  1308.             else if (object == slideShow1)
  1309.                 slideShow1_MouseEnter(event);
  1310.             else if (object == imageViewer1)
  1311.                 imageViewer1_mouseEntered(event);
  1312.             else if (object == animator1)
  1313.                 animator1_mouseEntered(event);
  1314.             else if (object == button3)
  1315.                 button3_MouseEnter(event);
  1316.             else if (object == button4)
  1317.                 button4_MouseEnter(event);
  1318.             else if (object == scrollingText1)
  1319.                 scrollingText1_mouseEntered(event);
  1320.             else if (object == button5)
  1321.                 button5_MouseEnter(event);
  1322.             else if (object == button6)
  1323.                 button6_MouseEnter(event);
  1324.             else if (object == button7)
  1325.                 button7_MouseEnter(event);
  1326.             else if (object == button8)
  1327.                 button8_MouseEnter(event);
  1328.             else if (object == button9)
  1329.                 button9_MouseEnter(event);
  1330.             else if (object == imageListBox1)
  1331.                 imageListBox1_mouseEntered(event);
  1332.             else if (object == labelButton1)
  1333.                 labelButton1_mouseEntered(event);
  1334.             else if (object == labelHTMLLink1)
  1335.                 labelHTMLLink1_mouseEntered(event);
  1336.             else if (object == label3D1)
  1337.                 label3D1_mouseEntered(event);
  1338.             else if (object == wrappingLabel1)
  1339.                 wrappingLabel1_mouseEntered(event);
  1340.             else if (object == multiList1)
  1341.                 multiList1_mouseEntered(event);
  1342.             else if (object == directionButton1)
  1343.                 directionButton1_mouseEntered(event);
  1344.             else if (object == imageHTMLLink1)
  1345.                 imageHTMLLink1_mouseEntered(event);
  1346.             else if (object == imageButton4)
  1347.                 imageButton4_mouseEntered(event);
  1348.             else if (object == rollOverButton1)
  1349.                 rollOverButton1_mouseEntered(event);
  1350.             else if (object == horizontalSlider1)
  1351.                 horizontalSlider1_mouseEntered(event);
  1352.             else if (object == label9)
  1353.                 label9_MouseEnter(event);
  1354.             else if (object == stateCheckBox1)
  1355.                 stateCheckBox1_mouseEntered(event);
  1356.             else if (object == formattedTextField1)
  1357.                 formattedTextField1_mouseEntered(event);
  1358.             else if (object == keyPressManagerPanel1)
  1359.                 keyPressManagerPanel1_mouseEntered(event);
  1360.             else if (object == borderPanel1)
  1361.                 borderPanel1_mouseEntered(event);
  1362.             else if (object == imagePanel1)
  1363.                 imagePanel1_mouseEntered(event);
  1364.             else if (object == radioButtonGroupPanel1)
  1365.                 radioButtonGroupPanel1_mouseEntered(event);
  1366.             else if (object == toolBarPanel1)
  1367.                 toolBarPanel1_mouseEntered(event);
  1368.             else if (object == textField1)
  1369.                 textField1_MouseEnter(event);
  1370.             else if (object == directionButton3)
  1371.                 directionButton3_mouseEntered(event);
  1372.             else if (object == directionButton2)
  1373.                 directionButton2_mouseEntered(event);
  1374.         }
  1375.     }
  1376.  
  1377.     void canvas1_MouseEnter(java.awt.event.MouseEvent event)
  1378.     {
  1379.         // to do: code goes here.
  1380.  
  1381.         //{{CONNECTION
  1382.         // Set the status text...
  1383.         {
  1384.             try {
  1385.                 statusBar1.setStatusText("AWT Canvas");
  1386.             }
  1387.             catch(java.beans.PropertyVetoException e) { }
  1388.         }
  1389.         //}}
  1390.     }
  1391.  
  1392.     void canvas1_MouseExit(java.awt.event.MouseEvent event)
  1393.     {
  1394.         // to do: code goes here.
  1395.  
  1396.         //{{CONNECTION
  1397.         // Set the status text...
  1398.         {
  1399.             try {
  1400.                 statusBar1.setStatusText(" ");
  1401.             }
  1402.             catch(java.beans.PropertyVetoException e) { }
  1403.         }
  1404.         //}}
  1405.     }
  1406.  
  1407.     void radioButton3_MouseEnter(java.awt.event.MouseEvent event)
  1408.     {
  1409.         // to do: code goes here.
  1410.  
  1411.         //{{CONNECTION
  1412.         // Set the status text...
  1413.         {
  1414.             try {
  1415.                 statusBar1.setStatusText("AWT RadioButton");
  1416.             }
  1417.             catch(java.beans.PropertyVetoException e) { }
  1418.         }
  1419.         //}}
  1420.     }
  1421.  
  1422.     void radioButton3_MouseExit(java.awt.event.MouseEvent event)
  1423.     {
  1424.         // to do: code goes here.
  1425.  
  1426.         //{{CONNECTION
  1427.         // Set the status text...
  1428.         {
  1429.             try {
  1430.                 statusBar1.setStatusText(" ");
  1431.             }
  1432.             catch(java.beans.PropertyVetoException e) { }
  1433.         }
  1434.         //}}
  1435.     }
  1436.  
  1437.     void button2_MouseEnter(java.awt.event.MouseEvent event)
  1438.     {
  1439.         // to do: code goes here.
  1440.  
  1441.         //{{CONNECTION
  1442.         // Set the status text...
  1443.         {
  1444.             try {
  1445.                 statusBar1.setStatusText("AWT Button");
  1446.             }
  1447.             catch(java.beans.PropertyVetoException e) { }
  1448.         }
  1449.         //}}
  1450.     }
  1451.  
  1452.     void button2_MouseExit(java.awt.event.MouseEvent event)
  1453.     {
  1454.         // to do: code goes here.
  1455.  
  1456.         //{{CONNECTION
  1457.         // Set the status text...
  1458.         {
  1459.             try {
  1460.                 statusBar1.setStatusText(" ");
  1461.             }
  1462.             catch(java.beans.PropertyVetoException e) { }
  1463.         }
  1464.         //}}
  1465.     }
  1466.  
  1467.     void checkbox1_MouseEnter(java.awt.event.MouseEvent event)
  1468.     {
  1469.         // to do: code goes here.
  1470.  
  1471.         //{{CONNECTION
  1472.         // Set the status text...
  1473.         {
  1474.             try {
  1475.                 statusBar1.setStatusText("AWT CheckBox");
  1476.             }
  1477.             catch(java.beans.PropertyVetoException e) { }
  1478.         }
  1479.         //}}
  1480.     }
  1481.  
  1482.     void checkbox1_MouseExit(java.awt.event.MouseEvent event)
  1483.     {
  1484.         // to do: code goes here.
  1485.  
  1486.         //{{CONNECTION
  1487.         // Set the status text...
  1488.         {
  1489.             try {
  1490.                 statusBar1.setStatusText(" ");
  1491.             }
  1492.             catch(java.beans.PropertyVetoException e) { }
  1493.         }
  1494.         //}}
  1495.     }
  1496.  
  1497.     void choice1_MouseEnter(java.awt.event.MouseEvent event)
  1498.     {
  1499.         // to do: code goes here.
  1500.  
  1501.         //{{CONNECTION
  1502.         // Set the status text...
  1503.         {
  1504.             try {
  1505.                 statusBar1.setStatusText("AWT Choice");
  1506.             }
  1507.             catch(java.beans.PropertyVetoException e) { }
  1508.         }
  1509.         //}}
  1510.     }
  1511.  
  1512.     void choice1_MouseExit(java.awt.event.MouseEvent event)
  1513.     {
  1514.         // to do: code goes here.
  1515.  
  1516.         //{{CONNECTION
  1517.         // Set the status text...
  1518.         {
  1519.             try {
  1520.                 statusBar1.setStatusText(" ");
  1521.             }
  1522.             catch(java.beans.PropertyVetoException e) { }
  1523.         }
  1524.         //}}
  1525.     }
  1526.  
  1527.     void textArea1_MouseEnter(java.awt.event.MouseEvent event)
  1528.     {
  1529.         // to do: code goes here.
  1530.  
  1531.         //{{CONNECTION
  1532.         // Set the status text...
  1533.         {
  1534.             try {
  1535.                 statusBar1.setStatusText("AWT TextArea");
  1536.             }
  1537.             catch(java.beans.PropertyVetoException e) { }
  1538.         }
  1539.         //}}
  1540.     }
  1541.  
  1542.     void textArea1_MouseExit(java.awt.event.MouseEvent event)
  1543.     {
  1544.         // to do: code goes here.
  1545.  
  1546.         //{{CONNECTION
  1547.         // Set the status text...
  1548.         {
  1549.             try {
  1550.                 statusBar1.setStatusText(" ");
  1551.             }
  1552.             catch(java.beans.PropertyVetoException e) { }
  1553.         }
  1554.         //}}
  1555.     }
  1556.  
  1557.     void list1_MouseEnter(java.awt.event.MouseEvent event)
  1558.     {
  1559.         // to do: code goes here.
  1560.  
  1561.         //{{CONNECTION
  1562.         // Set the status text...
  1563.         {
  1564.             try {
  1565.                 statusBar1.setStatusText("AWT List");
  1566.             }
  1567.             catch(java.beans.PropertyVetoException e) { }
  1568.         }
  1569.         //}}
  1570.     }
  1571.  
  1572.     void list1_MouseExit(java.awt.event.MouseEvent event)
  1573.     {
  1574.         // to do: code goes here.
  1575.  
  1576.         //{{CONNECTION
  1577.         // Set the status text...
  1578.         {
  1579.             try {
  1580.                 statusBar1.setStatusText(" ");
  1581.             }
  1582.             catch(java.beans.PropertyVetoException e) { }
  1583.         }
  1584.         //}}
  1585.     }
  1586.  
  1587.     void calendar1_mouseEntered(java.awt.event.MouseEvent event)
  1588.     {
  1589.         // to do: code goes here.
  1590.  
  1591.         //{{CONNECTION
  1592.         // Set the status text...
  1593.         {
  1594.             try {
  1595.                 statusBar1.setStatusText("Symantec Calendar");
  1596.             }
  1597.             catch(java.beans.PropertyVetoException e) { }
  1598.         }
  1599.         //}}
  1600.     }
  1601.  
  1602.     void calendar1_mouseExited(java.awt.event.MouseEvent event)
  1603.     {
  1604.         // to do: code goes here.
  1605.  
  1606.         //{{CONNECTION
  1607.         // Set the status text...
  1608.         {
  1609.             try {
  1610.                 statusBar1.setStatusText(" ");
  1611.             }
  1612.             catch(java.beans.PropertyVetoException e) { }
  1613.         }
  1614.         //}}
  1615.     }
  1616.  
  1617.     void treeView1_mouseEntered(java.awt.event.MouseEvent event)
  1618.     {
  1619.         // to do: code goes here.
  1620.  
  1621.         //{{CONNECTION
  1622.         // Set the status text...
  1623.         {
  1624.             try {
  1625.                 statusBar1.setStatusText("Symantec Treeview");
  1626.             }
  1627.             catch(java.beans.PropertyVetoException e) { }
  1628.         }
  1629.         //}}
  1630.     }
  1631.  
  1632.     void treeView1_mouseExited(java.awt.event.MouseEvent event)
  1633.     {
  1634.         // to do: code goes here.
  1635.  
  1636.         //{{CONNECTION
  1637.         // Set the status text...
  1638.         {
  1639.             try {
  1640.                 statusBar1.setStatusText(" ");
  1641.             }
  1642.             catch(java.beans.PropertyVetoException e) { }
  1643.         }
  1644.         //}}
  1645.     }
  1646.  
  1647.     void progressBar1_mouseEntered(java.awt.event.MouseEvent event)
  1648.     {
  1649.         // to do: code goes here.
  1650.  
  1651.         //{{CONNECTION
  1652.         // Set the status text...
  1653.         {
  1654.             try {
  1655.                 statusBar1.setStatusText("Symantec ProgressBar");
  1656.             }
  1657.             catch(java.beans.PropertyVetoException e) { }
  1658.         }
  1659.         //}}
  1660.     }
  1661.  
  1662.     void progressBar1_mouseExited(java.awt.event.MouseEvent event)
  1663.     {
  1664.         // to do: code goes here.
  1665.  
  1666.         //{{CONNECTION
  1667.         // Set the status text...
  1668.         {
  1669.             try {
  1670.                 statusBar1.setStatusText(" ");
  1671.             }
  1672.             catch(java.beans.PropertyVetoException e) { }
  1673.         }
  1674.         //}}
  1675.     }
  1676.  
  1677.     void slideShow1_MouseEnter(java.awt.event.MouseEvent event)
  1678.     {
  1679.         // to do: code goes here.
  1680.  
  1681.         //{{CONNECTION
  1682.         // Set the status text...
  1683.         {
  1684.             try {
  1685.                 statusBar1.setStatusText("Symantec Slideshow");
  1686.             }
  1687.             catch(java.beans.PropertyVetoException e) { }
  1688.         }
  1689.         //}}
  1690.     }
  1691.  
  1692.     void slideShow1_MouseExit(java.awt.event.MouseEvent event)
  1693.     {
  1694.         // to do: code goes here.
  1695.  
  1696.         //{{CONNECTION
  1697.         // Set the status text...
  1698.         {
  1699.             try {
  1700.                 statusBar1.setStatusText(" ");
  1701.             }
  1702.             catch(java.beans.PropertyVetoException e) { }
  1703.         }
  1704.         //}}
  1705.     }
  1706.  
  1707.     void imageViewer1_mouseEntered(java.awt.event.MouseEvent event)
  1708.     {
  1709.         // to do: code goes here.
  1710.  
  1711.         //{{CONNECTION
  1712.         // Set the status text...
  1713.         {
  1714.             try {
  1715.                 statusBar1.setStatusText("Symantec Image Viewer");
  1716.             }
  1717.             catch(java.beans.PropertyVetoException e) { }
  1718.         }
  1719.         //}}
  1720.     }
  1721.  
  1722.     void imageViewer1_mouseExited(java.awt.event.MouseEvent event)
  1723.     {
  1724.         // to do: code goes here.
  1725.  
  1726.         //{{CONNECTION
  1727.         // Set the status text...
  1728.         {
  1729.             try {
  1730.                 statusBar1.setStatusText(" ");
  1731.             }
  1732.             catch(java.beans.PropertyVetoException e) { }
  1733.         }
  1734.         //}}
  1735.     }
  1736.  
  1737.     void animator1_mouseEntered(java.awt.event.MouseEvent event)
  1738.     {
  1739.         // to do: code goes here.
  1740.  
  1741.         //{{CONNECTION
  1742.         // Set the status text...
  1743.         {
  1744.             try {
  1745.                 statusBar1.setStatusText("Symantec Animator");
  1746.             }
  1747.             catch(java.beans.PropertyVetoException e) { }
  1748.         }
  1749.         //}}
  1750.     }
  1751.  
  1752.     void animator1_mouseExited(java.awt.event.MouseEvent event)
  1753.     {
  1754.         // to do: code goes here.
  1755.  
  1756.         //{{CONNECTION
  1757.         // Set the status text...
  1758.         {
  1759.             try {
  1760.                 statusBar1.setStatusText(" ");
  1761.             }
  1762.             catch(java.beans.PropertyVetoException e) { }
  1763.         }
  1764.         //}}
  1765.     }
  1766.  
  1767.     void button3_MouseEnter(java.awt.event.MouseEvent event)
  1768.     {
  1769.         // to do: code goes here.
  1770.  
  1771.         //{{CONNECTION
  1772.         // Set the status text...
  1773.         {
  1774.             try {
  1775.                 statusBar1.setStatusText("Show the Slideshow's next Image");
  1776.             }
  1777.             catch(java.beans.PropertyVetoException e) { }
  1778.         }
  1779.         //}}
  1780.     }
  1781.  
  1782.     void button3_MouseExit(java.awt.event.MouseEvent event)
  1783.     {
  1784.         // to do: code goes here.
  1785.  
  1786.         //{{CONNECTION
  1787.         // Set the status text...
  1788.         {
  1789.             try {
  1790.                 statusBar1.setStatusText(" ");
  1791.             }
  1792.             catch(java.beans.PropertyVetoException e) { }
  1793.         }
  1794.         //}}
  1795.     }
  1796.  
  1797.     void button4_MouseEnter(java.awt.event.MouseEvent event)
  1798.     {
  1799.         // to do: code goes here.
  1800.  
  1801.         //{{CONNECTION
  1802.         // Set the status text...
  1803.         {
  1804.             try {
  1805.                 statusBar1.setStatusText("Show the Slideshow's previous Image");
  1806.             }
  1807.             catch(java.beans.PropertyVetoException e) { }
  1808.         }
  1809.         //}}
  1810.     }
  1811.  
  1812.     void scrollingText1_mouseEntered(java.awt.event.MouseEvent event)
  1813.     {
  1814.         // to do: code goes here.
  1815.  
  1816.         //{{CONNECTION
  1817.         // Set the status text color...
  1818.         {
  1819.             try {
  1820.                 statusBar1.setStatusText("Symantec Scrolling Text");
  1821.             }
  1822.             catch(java.beans.PropertyVetoException e) { }
  1823.         }
  1824.         //}}
  1825.     }
  1826.  
  1827.     void scrollingText1_mouseExited(java.awt.event.MouseEvent event)
  1828.     {
  1829.         // to do: code goes here.
  1830.  
  1831.         //{{CONNECTION
  1832.         // Set the status text...
  1833.         {
  1834.             try {
  1835.                 statusBar1.setStatusText(" ");
  1836.             }
  1837.             catch(java.beans.PropertyVetoException e) { }
  1838.         }
  1839.         //}}
  1840.     }
  1841.  
  1842.     void button5_MouseEnter(java.awt.event.MouseEvent event)
  1843.     {
  1844.         // to do: code goes here.
  1845.  
  1846.         //{{CONNECTION
  1847.         // Set the status text...
  1848.         {
  1849.             try {
  1850.                 statusBar1.setStatusText("Symantec Fireworks");
  1851.             }
  1852.             catch(java.beans.PropertyVetoException e) { }
  1853.         }
  1854.         //}}
  1855.     }
  1856.  
  1857.     void button5_MouseExit(java.awt.event.MouseEvent event)
  1858.     {
  1859.         // to do: code goes here.
  1860.  
  1861.         //{{CONNECTION
  1862.         // Set the status text...
  1863.         {
  1864.             try {
  1865.                 statusBar1.setStatusText(" ");
  1866.             }
  1867.             catch(java.beans.PropertyVetoException e) { }
  1868.         }
  1869.         //}}
  1870.     }
  1871.  
  1872.     void button6_MouseEnter(java.awt.event.MouseEvent event)
  1873.     {
  1874.         // to do: code goes here.
  1875.  
  1876.         //{{CONNECTION
  1877.         // Set the status text...
  1878.         {
  1879.             try {
  1880.                 statusBar1.setStatusText("Symantec Plasma");
  1881.             }
  1882.             catch(java.beans.PropertyVetoException e) { }
  1883.         }
  1884.         //}}
  1885.     }
  1886.  
  1887.     void button6_MouseExit(java.awt.event.MouseEvent event)
  1888.     {
  1889.         // to do: code goes here.
  1890.  
  1891.         //{{CONNECTION
  1892.         // Set the status text...
  1893.         {
  1894.             try {
  1895.                 statusBar1.setStatusText(" ");
  1896.             }
  1897.             catch(java.beans.PropertyVetoException e) { }
  1898.         }
  1899.         //}}
  1900.     }
  1901.  
  1902.     void button7_MouseEnter(java.awt.event.MouseEvent event)
  1903.     {
  1904.         // to do: code goes here.
  1905.  
  1906.         //{{CONNECTION
  1907.         // Set the status text...
  1908.         {
  1909.             try {
  1910.                 statusBar1.setStatusText("Symantec Sound Player");
  1911.             }
  1912.             catch(java.beans.PropertyVetoException e) { }
  1913.         }
  1914.         //}}
  1915.     }
  1916.  
  1917.     void button7_MouseExit(java.awt.event.MouseEvent event)
  1918.     {
  1919.         // to do: code goes here.
  1920.  
  1921.         //{{CONNECTION
  1922.         // Set the status text...
  1923.         {
  1924.             try {
  1925.                 statusBar1.setStatusText(" ");
  1926.             }
  1927.             catch(java.beans.PropertyVetoException e) { }
  1928.         }
  1929.         //}}
  1930.     }
  1931.  
  1932.     void button8_MouseEnter(java.awt.event.MouseEvent event)
  1933.     {
  1934.         // to do: code goes here.
  1935.  
  1936.         //{{CONNECTION
  1937.         // Set the status text...
  1938.         {
  1939.             try {
  1940.                 statusBar1.setStatusText("Geo Emblaze");
  1941.             }
  1942.             catch(java.beans.PropertyVetoException e) { }
  1943.         }
  1944.         //}}
  1945.     }
  1946.  
  1947.     void button8_MouseExit(java.awt.event.MouseEvent event)
  1948.     {
  1949.         // to do: code goes here.
  1950.  
  1951.         //{{CONNECTION
  1952.         // Set the status text...
  1953.         {
  1954.             try {
  1955.                 statusBar1.setStatusText(" ");
  1956.             }
  1957.             catch(java.beans.PropertyVetoException e) { }
  1958.         }
  1959.         //}}
  1960.     }
  1961.  
  1962.     void button9_MouseEnter(java.awt.event.MouseEvent event)
  1963.     {
  1964.         // to do: code goes here.
  1965.  
  1966.         //{{CONNECTION
  1967.         // Set the status text...
  1968.         {
  1969.             try {
  1970.                 statusBar1.setStatusText("Symantec Nervous Text");
  1971.             }
  1972.             catch(java.beans.PropertyVetoException e) { }
  1973.         }
  1974.         //}}
  1975.     }
  1976.  
  1977.     void button9_MouseExit(java.awt.event.MouseEvent event)
  1978.     {
  1979.         // to do: code goes here.
  1980.  
  1981.         //{{CONNECTION
  1982.         // Set the status text...
  1983.         {
  1984.             try {
  1985.                 statusBar1.setStatusText(" ");
  1986.             }
  1987.             catch(java.beans.PropertyVetoException e) { }
  1988.         }
  1989.         //}}
  1990.     }
  1991.  
  1992.     void imageListBox1_mouseEntered(java.awt.event.MouseEvent event)
  1993.     {
  1994.         // to do: code goes here.
  1995.  
  1996.         //{{CONNECTION
  1997.         // Set the status text...
  1998.         {
  1999.             try {
  2000.                 statusBar1.setStatusText("Symantec Image List Box");
  2001.             }
  2002.             catch(java.beans.PropertyVetoException e) { }
  2003.         }
  2004.         //}}
  2005.     }
  2006.  
  2007.     void imageListBox1_mouseExited(java.awt.event.MouseEvent event)
  2008.     {
  2009.         // to do: code goes here.
  2010.  
  2011.         //{{CONNECTION
  2012.         // Set the status text...
  2013.         {
  2014.             try {
  2015.                 statusBar1.setStatusText(" ");
  2016.             }
  2017.             catch(java.beans.PropertyVetoException e) { }
  2018.         }
  2019.         //}}
  2020.     }
  2021.  
  2022.     void labelButton1_mouseEntered(java.awt.event.MouseEvent event)
  2023.     {
  2024.         // to do: code goes here.
  2025.  
  2026.         //{{CONNECTION
  2027.         // Set the status text...
  2028.         {
  2029.             try {
  2030.                 statusBar1.setStatusText("Symantec Label Button");
  2031.             }
  2032.             catch(java.beans.PropertyVetoException e) { }
  2033.         }
  2034.         //}}
  2035.     }
  2036.  
  2037.     void labelButton1_mouseExited(java.awt.event.MouseEvent event)
  2038.     {
  2039.         // to do: code goes here.
  2040.  
  2041.         //{{CONNECTION
  2042.         // Set the status text...
  2043.         {
  2044.             try {
  2045.                 statusBar1.setStatusText(" ");
  2046.             }
  2047.             catch(java.beans.PropertyVetoException e) { }
  2048.         }
  2049.         //}}
  2050.     }
  2051.  
  2052.     void labelHTMLLink1_mouseEntered(java.awt.event.MouseEvent event)
  2053.     {
  2054.         // to do: code goes here.
  2055.  
  2056.         //{{CONNECTION
  2057.         // Set the status text...
  2058.         {
  2059.             try {
  2060.                 statusBar1.setStatusText("Symantec Label HTML Link");
  2061.             }
  2062.             catch(java.beans.PropertyVetoException e) { }
  2063.         }
  2064.         //}}
  2065.     }
  2066.  
  2067.     void labelHTMLLink1_mouseExited(java.awt.event.MouseEvent event)
  2068.     {
  2069.         // to do: code goes here.
  2070.  
  2071.         //{{CONNECTION
  2072.         // Set the status text...
  2073.         {
  2074.             try {
  2075.                 statusBar1.setStatusText(" ");
  2076.             }
  2077.             catch(java.beans.PropertyVetoException e) { }
  2078.         }
  2079.         //}}
  2080.     }
  2081.  
  2082.     void label3D1_mouseEntered(java.awt.event.MouseEvent event)
  2083.     {
  2084.         // to do: code goes here.
  2085.  
  2086.         //{{CONNECTION
  2087.         // Set the status text...
  2088.         {
  2089.             try {
  2090.                 statusBar1.setStatusText("Symantec Label3D");
  2091.             }
  2092.             catch(java.beans.PropertyVetoException e) { }
  2093.         }
  2094.         //}}
  2095.     }
  2096.  
  2097.     void label3D1_mouseExited(java.awt.event.MouseEvent event)
  2098.     {
  2099.         // to do: code goes here.
  2100.  
  2101.         //{{CONNECTION
  2102.         // Set the status text...
  2103.         {
  2104.             try {
  2105.                 statusBar1.setStatusText(" ");
  2106.             }
  2107.             catch(java.beans.PropertyVetoException e) { }
  2108.         }
  2109.         //}}
  2110.     }
  2111.  
  2112.     void wrappingLabel1_mouseEntered(java.awt.event.MouseEvent event)
  2113.     {
  2114.         // to do: code goes here.
  2115.  
  2116.         //{{CONNECTION
  2117.         // Set the status text...
  2118.         {
  2119.             try {
  2120.                 statusBar1.setStatusText("Symantec Wrapping Label");
  2121.             }
  2122.             catch(java.beans.PropertyVetoException e) { }
  2123.         }
  2124.         //}}
  2125.     }
  2126.  
  2127.     void wrappingLabel1_mouseExited(java.awt.event.MouseEvent event)
  2128.     {
  2129.         // to do: code goes here.
  2130.  
  2131.         //{{CONNECTION
  2132.         // Set the status text...
  2133.         {
  2134.             try {
  2135.                 statusBar1.setStatusText(" ");
  2136.             }
  2137.             catch(java.beans.PropertyVetoException e) { }
  2138.         }
  2139.         //}}
  2140.     }
  2141.  
  2142.     void multiList1_mouseEntered(java.awt.event.MouseEvent event)
  2143.     {
  2144.         // to do: code goes here.
  2145.  
  2146.         //{{CONNECTION
  2147.         // Set the status text...
  2148.         {
  2149.             try {
  2150.                 statusBar1.setStatusText("Symantec MultiList");
  2151.             }
  2152.             catch(java.beans.PropertyVetoException e) { }
  2153.         }
  2154.         //}}
  2155.     }
  2156.  
  2157.     void multiList1_mouseExited(java.awt.event.MouseEvent event)
  2158.     {
  2159.         // to do: code goes here.
  2160.  
  2161.         //{{CONNECTION
  2162.         // Set the status text...
  2163.         {
  2164.             try {
  2165.                 statusBar1.setStatusText(" ");
  2166.             }
  2167.             catch(java.beans.PropertyVetoException e) { }
  2168.         }
  2169.         //}}
  2170.     }
  2171.  
  2172.     void directionButton1_mouseEntered(java.awt.event.MouseEvent event)
  2173.     {
  2174.         // to do: code goes here.
  2175.  
  2176.         //{{CONNECTION
  2177.         // Set the status text...
  2178.         {
  2179.             try {
  2180.                 statusBar1.setStatusText("Symantec Direction Button");
  2181.             }
  2182.             catch(java.beans.PropertyVetoException e) { }
  2183.         }
  2184.         //}}
  2185.     }
  2186.  
  2187.     void directionButton1_mouseExited(java.awt.event.MouseEvent event)
  2188.     {
  2189.         // to do: code goes here.
  2190.  
  2191.         //{{CONNECTION
  2192.         // Set the status text...
  2193.         {
  2194.             try {
  2195.                 statusBar1.setStatusText(" ");
  2196.             }
  2197.             catch(java.beans.PropertyVetoException e) { }
  2198.         }
  2199.         //}}
  2200.     }
  2201.  
  2202.     void imageHTMLLink1_mouseEntered(java.awt.event.MouseEvent event)
  2203.     {
  2204.         // to do: code goes here.
  2205.  
  2206.         //{{CONNECTION
  2207.         // Set the status text...
  2208.         {
  2209.             try {
  2210.                 statusBar1.setStatusText("Symantec Image HTML Link");
  2211.             }
  2212.             catch(java.beans.PropertyVetoException e) { }
  2213.         }
  2214.         //}}
  2215.     }
  2216.  
  2217.     void imageHTMLLink1_mouseExited(java.awt.event.MouseEvent event)
  2218.     {
  2219.         // to do: code goes here.
  2220.  
  2221.         //{{CONNECTION
  2222.         // Set the status text...
  2223.         {
  2224.             try {
  2225.                 statusBar1.setStatusText(" ");
  2226.             }
  2227.             catch(java.beans.PropertyVetoException e) { }
  2228.         }
  2229.         //}}
  2230.     }
  2231.  
  2232.     void imageButton4_mouseEntered(java.awt.event.MouseEvent event)
  2233.     {
  2234.         // to do: code goes here.
  2235.  
  2236.         //{{CONNECTION
  2237.         // Set the status text...
  2238.         {
  2239.             try {
  2240.                 statusBar1.setStatusText("Symantec Image Button");
  2241.             }
  2242.             catch(java.beans.PropertyVetoException e) { }
  2243.         }
  2244.         //}}
  2245.     }
  2246.  
  2247.     void imageButton4_mouseExited(java.awt.event.MouseEvent event)
  2248.     {
  2249.         // to do: code goes here.
  2250.  
  2251.         //{{CONNECTION
  2252.         // Set the status text...
  2253.         {
  2254.             try {
  2255.                 statusBar1.setStatusText(" ");
  2256.             }
  2257.             catch(java.beans.PropertyVetoException e) { }
  2258.         }
  2259.         //}}
  2260.     }
  2261.  
  2262.     void rollOverButton1_mouseEntered(java.awt.event.MouseEvent event)
  2263.     {
  2264.         // to do: code goes here.
  2265.  
  2266.         //{{CONNECTION
  2267.         // Set the status text...
  2268.         {
  2269.             try {
  2270.                 statusBar1.setStatusText("Symantec Rollover Button");
  2271.             }
  2272.             catch(java.beans.PropertyVetoException e) { }
  2273.         }
  2274.         //}}
  2275.     }
  2276.  
  2277.     void rollOverButton1_mouseExited(java.awt.event.MouseEvent event)
  2278.     {
  2279.         // to do: code goes here.
  2280.  
  2281.         //{{CONNECTION
  2282.         // Set the status text...
  2283.         {
  2284.             try {
  2285.                 statusBar1.setStatusText(" ");
  2286.             }
  2287.             catch(java.beans.PropertyVetoException e) { }
  2288.         }
  2289.         //}}
  2290.     }
  2291.  
  2292.     void horizontalSlider1_mouseEntered(java.awt.event.MouseEvent event)
  2293.     {
  2294.         // to do: code goes here.
  2295.  
  2296.         //{{CONNECTION
  2297.         // Set the status text...
  2298.         {
  2299.             try {
  2300.                 statusBar1.setStatusText("Use this slider to speed up or slow down the Status Bar Scrolling Text");
  2301.             }
  2302.             catch(java.beans.PropertyVetoException e) { }
  2303.         }
  2304.         //}}
  2305.     }
  2306.  
  2307.     void horizontalSlider1_mouseExited(java.awt.event.MouseEvent event)
  2308.     {
  2309.         // to do: code goes here.
  2310.  
  2311.         //{{CONNECTION
  2312.         // Set the status text...
  2313.         {
  2314.             try {
  2315.                 statusBar1.setStatusText(" ");
  2316.             }
  2317.             catch(java.beans.PropertyVetoException e) { }
  2318.         }
  2319.         //}}
  2320.     }
  2321.  
  2322.     void label9_MouseEnter(java.awt.event.MouseEvent event)
  2323.     {
  2324.         // to do: code goes here.
  2325.  
  2326.         //{{CONNECTION
  2327.         // Set the status text...
  2328.         {
  2329.             try {
  2330.                 statusBar1.setStatusText("Symantec State Check Box");
  2331.             }
  2332.             catch(java.beans.PropertyVetoException e) { }
  2333.         }
  2334.         //}}
  2335.     }
  2336.  
  2337.     void label9_MouseExit(java.awt.event.MouseEvent event)
  2338.     {
  2339.         // to do: code goes here.
  2340.  
  2341.         //{{CONNECTION
  2342.         // Set the status text...
  2343.         {
  2344.             try {
  2345.                 statusBar1.setStatusText(" ");
  2346.             }
  2347.             catch(java.beans.PropertyVetoException e) { }
  2348.         }
  2349.         //}}
  2350.     }
  2351.  
  2352.     void stateCheckBox1_mouseEntered(java.awt.event.MouseEvent event)
  2353.     {
  2354.         // to do: code goes here.
  2355.  
  2356.         //{{CONNECTION
  2357.         // Set the status text...
  2358.         {
  2359.             try {
  2360.                 statusBar1.setStatusText("Symantec State Check Box");
  2361.             }
  2362.             catch(java.beans.PropertyVetoException e) { }
  2363.         }
  2364.         //}}
  2365.     }
  2366.  
  2367.     void stateCheckBox1_mouseExited(java.awt.event.MouseEvent event)
  2368.     {
  2369.         // to do: code goes here.
  2370.  
  2371.         //{{CONNECTION
  2372.         // Set the status text...
  2373.         {
  2374.             try {
  2375.                 statusBar1.setStatusText(" ");
  2376.             }
  2377.             catch(java.beans.PropertyVetoException e) { }
  2378.         }
  2379.         //}}
  2380.     }
  2381.  
  2382.     void formattedTextField1_mouseEntered(java.awt.event.MouseEvent event)
  2383.     {
  2384.         // to do: code goes here.
  2385.  
  2386.         //{{CONNECTION
  2387.         // Set the status text...
  2388.         {
  2389.             try {
  2390.                 statusBar1.setStatusText("Symantec Formatted Text Field");
  2391.             }
  2392.             catch(java.beans.PropertyVetoException e) { }
  2393.         }
  2394.         //}}
  2395.     }
  2396.  
  2397.     void formattedTextField1_mouseExited(java.awt.event.MouseEvent event)
  2398.     {
  2399.         // to do: code goes here.
  2400.  
  2401.         //{{CONNECTION
  2402.         // Set the status text...
  2403.         {
  2404.             try {
  2405.                 statusBar1.setStatusText(" ");
  2406.             }
  2407.             catch(java.beans.PropertyVetoException e) { }
  2408.         }
  2409.         //}}
  2410.     }
  2411.  
  2412.     void keyPressManagerPanel1_mouseEntered(java.awt.event.MouseEvent event)
  2413.     {
  2414.         // to do: code goes here.
  2415.  
  2416.         //{{CONNECTION
  2417.         // Set the status text...
  2418.         {
  2419.             try {
  2420.                 statusBar1.setStatusText("Symantec Keypress Manager Panel");
  2421.             }
  2422.             catch(java.beans.PropertyVetoException e) { }
  2423.         }
  2424.         //}}
  2425.     }
  2426.  
  2427.     void keyPressManagerPanel1_mouseExited(java.awt.event.MouseEvent event)
  2428.     {
  2429.         // to do: code goes here.
  2430.  
  2431.         //{{CONNECTION
  2432.         // Set the status text...
  2433.         {
  2434.             try {
  2435.                 statusBar1.setStatusText(" ");
  2436.             }
  2437.             catch(java.beans.PropertyVetoException e) { }
  2438.         }
  2439.         //}}
  2440.     }
  2441.  
  2442.     void borderPanel1_mouseEntered(java.awt.event.MouseEvent event)
  2443.     {
  2444.         // to do: code goes here.
  2445.  
  2446.         //{{CONNECTION
  2447.         // Set the status text...
  2448.         {
  2449.             try {
  2450.                 statusBar1.setStatusText("Symantec Border Panel");
  2451.             }
  2452.             catch(java.beans.PropertyVetoException e) { }
  2453.         }
  2454.         //}}
  2455.     }
  2456.  
  2457.     void borderPanel1_mouseExited(java.awt.event.MouseEvent event)
  2458.     {
  2459.         // to do: code goes here.
  2460.  
  2461.         //{{CONNECTION
  2462.         // Set the status text...
  2463.         {
  2464.             try {
  2465.                 statusBar1.setStatusText(" ");
  2466.             }
  2467.             catch(java.beans.PropertyVetoException e) { }
  2468.         }
  2469.         //}}
  2470.     }
  2471.  
  2472.     void imagePanel1_mouseEntered(java.awt.event.MouseEvent event)
  2473.     {
  2474.         // to do: code goes here.
  2475.  
  2476.         //{{CONNECTION
  2477.         // Set the status text...
  2478.         {
  2479.             try {
  2480.                 statusBar1.setStatusText("Symantec Image Panel");
  2481.             }
  2482.             catch(java.beans.PropertyVetoException e) { }
  2483.         }
  2484.         //}}
  2485.     }
  2486.  
  2487.     void imagePanel1_mouseExited(java.awt.event.MouseEvent event)
  2488.     {
  2489.         // to do: code goes here.
  2490.  
  2491.         //{{CONNECTION
  2492.         // Set the status text...
  2493.         {
  2494.             try {
  2495.                 statusBar1.setStatusText(" ");
  2496.             }
  2497.             catch(java.beans.PropertyVetoException e) { }
  2498.         }
  2499.         //}}
  2500.     }
  2501.  
  2502.     void radioButtonGroupPanel1_mouseEntered(java.awt.event.MouseEvent event)
  2503.     {
  2504.         // to do: code goes here.
  2505.  
  2506.         //{{CONNECTION
  2507.         // Set the status text...
  2508.         {
  2509.             try {
  2510.                 statusBar1.setStatusText("Symantec RadioButton Group Panel");
  2511.             }
  2512.             catch(java.beans.PropertyVetoException e) { }
  2513.         }
  2514.         //}}
  2515.     }
  2516.  
  2517.     void radioButtonGroupPanel1_mouseExited(java.awt.event.MouseEvent event)
  2518.     {
  2519.         // to do: code goes here.
  2520.  
  2521.         //{{CONNECTION
  2522.         // Set the status text...
  2523.         {
  2524.             try {
  2525.                 statusBar1.setStatusText(" ");
  2526.             }
  2527.             catch(java.beans.PropertyVetoException e) { }
  2528.         }
  2529.         //}}
  2530.     }
  2531.  
  2532.     void toolBarPanel1_mouseEntered(java.awt.event.MouseEvent event)
  2533.     {
  2534.         // to do: code goes here.
  2535.  
  2536.         //{{CONNECTION
  2537.         // Set the status text...
  2538.         {
  2539.             try {
  2540.                 statusBar1.setStatusText("Symantec Toolbar Panel - with Spacers");
  2541.             }
  2542.             catch(java.beans.PropertyVetoException e) { }
  2543.         }
  2544.         //}}
  2545.     }
  2546.  
  2547.     void toolBarPanel1_mouseExited(java.awt.event.MouseEvent event)
  2548.     {
  2549.         // to do: code goes here.
  2550.  
  2551.         //{{CONNECTION
  2552.         // Set the status text...
  2553.         {
  2554.             try {
  2555.                 statusBar1.setStatusText(" ");
  2556.             }
  2557.             catch(java.beans.PropertyVetoException e) { }
  2558.         }
  2559.         //}}
  2560.     }
  2561.  
  2562.     class SymComponent extends java.awt.event.ComponentAdapter
  2563.     {
  2564.         public void componentHidden(java.awt.event.ComponentEvent event)
  2565.         {
  2566.             Object object = event.getSource();
  2567.             if (object == label9)
  2568.                 label9_ComponentHidden(event);
  2569.         }
  2570.     }
  2571.  
  2572.     void label9_ComponentHidden(java.awt.event.ComponentEvent event)
  2573.     {
  2574.         // to do: code goes here.
  2575.  
  2576.         //{{CONNECTION
  2577.         // Toggle enabled
  2578.         {
  2579.             stateCheckBox1.setEnabled(!stateCheckBox1.isEnabled());
  2580.         }
  2581.         //}}
  2582.     }
  2583.  
  2584.     void button5_Action(java.awt.event.ActionEvent event)
  2585.     {
  2586.         // to do: code goes here.
  2587.  
  2588.         //{{CONNECTION
  2589.         // Create and show the Frame with a title...
  2590.         (new FireWorksClass("Symantec FireWorks")).show();
  2591.         //}}
  2592.     }
  2593.  
  2594.     void button6_Action(java.awt.event.ActionEvent event)
  2595.     {
  2596.         // to do: code goes here.
  2597.  
  2598.         //{{CONNECTION
  2599.         // Create and show the Frame with a title...
  2600.         (new PlasmaClass("Symantec Plasma")).show();
  2601.         //}}
  2602.     }
  2603.  
  2604.     void button8_Action(java.awt.event.ActionEvent event)
  2605.     {
  2606.         // to do: code goes here.
  2607.  
  2608.         //{{CONNECTION
  2609.         // Create and show the Frame with a title...
  2610.         (new EmblazeClass("Geo Emblaze")).show();
  2611.         //}}
  2612.     }
  2613.  
  2614.     void button9_Action(java.awt.event.ActionEvent event)
  2615.     {
  2616.         // to do: code goes here.
  2617.  
  2618.         //{{CONNECTION
  2619.         // Create and show the Frame
  2620.         (new NervousTextClass()).show();
  2621.         //}}
  2622.     }
  2623.  
  2624.     void button7_Action(java.awt.event.ActionEvent event)
  2625.     {
  2626.         // to do: code goes here.
  2627.  
  2628.         //{{CONNECTION
  2629.         // Create and show the Frame with a title...
  2630.         (new SoundPlayerClass("Symantec Sound Player")).show();
  2631.         //}}
  2632.     }
  2633.  
  2634.     void textField1_MouseEnter(java.awt.event.MouseEvent event)
  2635.     {
  2636.         // to do: code goes here.
  2637.  
  2638.         //{{CONNECTION
  2639.         // Set the status text...
  2640.         {
  2641.             try {
  2642.                 statusBar1.setStatusText("AWT TextField");
  2643.             }
  2644.             catch(java.beans.PropertyVetoException e) { }
  2645.         }
  2646.         //}}
  2647.     }
  2648.  
  2649.     void textField1_MouseExit(java.awt.event.MouseEvent event)
  2650.     {
  2651.         // to do: code goes here.
  2652.  
  2653.         //{{CONNECTION
  2654.         // Set the status text...
  2655.         {
  2656.             try {
  2657.                 statusBar1.setStatusText(" ");
  2658.             }
  2659.             catch(java.beans.PropertyVetoException e) { }
  2660.         }
  2661.         //}}
  2662.     }
  2663.  
  2664.     void button10_ActionPerformed(java.awt.event.ActionEvent event)
  2665.     {
  2666.         // to do: code goes here.
  2667.  
  2668.         //{{CONNECTION
  2669.         // Remove the specified node from the tree... Get the string for the selected node
  2670.         {
  2671.             treeView1.remove(treeView1.getSelectedText());
  2672.         }
  2673.         //}}
  2674.     }
  2675.  
  2676.     void directionButton3_actionPerformed(java.awt.event.ActionEvent event)
  2677.     {
  2678.         // to do: code goes here.
  2679.  
  2680.         //{{CONNECTION
  2681.         // Set the progress bar value...
  2682.         {
  2683.             int x =progressBar1.getValue();
  2684.             try {
  2685.                 progressBar1.setValue(x-1);
  2686.             }
  2687.             catch(Exception e) { }
  2688.         }
  2689.         //}}
  2690.     }
  2691.  
  2692.     void directionButton2_actionPerformed(java.awt.event.ActionEvent event)
  2693.     {
  2694.         // to do: code goes here.
  2695.  
  2696.         //{{CONNECTION
  2697.         // Set the progress bar value...
  2698.         {
  2699.             int y = progressBar1.getValue();
  2700.             try {
  2701.                 progressBar1.setValue(y+1);
  2702.             }
  2703.             catch(Exception e) { }
  2704.         }
  2705.         //}}
  2706.     }
  2707.  
  2708.     void directionButton3_mouseEntered(java.awt.event.MouseEvent event)
  2709.     {
  2710.         // to do: code goes here.
  2711.  
  2712.         //{{CONNECTION
  2713.         // Set the status text...
  2714.         {
  2715.             try {
  2716.                 statusBar1.setStatusText("Decrease the progressBar value by 1%");
  2717.             }
  2718.             catch(Exception e) { }
  2719.         }
  2720.         //}}
  2721.     }
  2722.  
  2723.     void directionButton3_mouseExited(java.awt.event.MouseEvent event)
  2724.     {
  2725.         // to do: code goes here.
  2726.  
  2727.         //{{CONNECTION
  2728.         // Set the status text...
  2729.         {
  2730.             try {
  2731.                 statusBar1.setStatusText(" ");
  2732.             }
  2733.             catch(Exception e) { }
  2734.         }
  2735.         //}}
  2736.     }
  2737.  
  2738.     void directionButton2_mouseEntered(java.awt.event.MouseEvent event)
  2739.     {
  2740.         // to do: code goes here.
  2741.  
  2742.         //{{CONNECTION
  2743.         // Set the status text...
  2744.         {
  2745.             try {
  2746.                 statusBar1.setStatusText("Increase the progressBar value by 1%");
  2747.             }
  2748.             catch(Exception e) { }
  2749.         }
  2750.         //}}
  2751.     }
  2752.  
  2753.     void directionButton2_mouseExited(java.awt.event.MouseEvent event)
  2754.     {
  2755.         // to do: code goes here.
  2756.  
  2757.         //{{CONNECTION
  2758.         // Set the status text...
  2759.         {
  2760.             try {
  2761.                 statusBar1.setStatusText(" ");
  2762.             }
  2763.             catch(Exception e) { }
  2764.         }
  2765.         //}}
  2766.     }
  2767.  
  2768.     class SymItem implements java.awt.event.ItemListener
  2769.     {
  2770.         public void itemStateChanged(java.awt.event.ItemEvent event)
  2771.         {
  2772.             Object object = event.getSource();
  2773.             if (object == radioButton5)
  2774.                 radioButton5_ItemStateChanged(event);
  2775.         }
  2776.     }
  2777.  
  2778.     void radioButton5_ItemStateChanged(java.awt.event.ItemEvent event)
  2779.     {
  2780.         // to do: code goes here.
  2781.  
  2782.         //{{CONNECTION
  2783.         // Set draw progress bar as boxes... Draw progress bar as boxes?
  2784.         {
  2785.             try {
  2786.                     progressBar1.setDrawBoxes(!progressBar1.isEnabled());            }
  2787.             catch(Exception e) { }
  2788.         }
  2789.         //}}
  2790.     }
  2791.  
  2792.  
  2793.  
  2794.     void radioButton4_MouseClicked(java.awt.event.MouseEvent event)
  2795.     {
  2796.         // to do: code goes here.
  2797.  
  2798.         //{{CONNECTION
  2799.         // Set draw progress bar as boxes... Is not enabled
  2800.         {
  2801.             try {
  2802.                 progressBar1.setDrawBoxes(true);
  2803.             }
  2804.             catch(Exception e) { }
  2805.         }
  2806.         //}}
  2807.     }
  2808.  
  2809.     void numericSpinner2_actionPerformed(java.awt.event.ActionEvent event)
  2810.     {
  2811.         // to do: code goes here.
  2812.  
  2813.         //{{CONNECTION
  2814.         // Set the bar box width... Get the current index
  2815.         {
  2816.             try {
  2817.                 progressBar1.setBoxWidth(numericSpinner2.getCurrent());
  2818.             }
  2819.             catch(Exception e) { }
  2820.         }
  2821.         //}}
  2822.     }
  2823.  
  2824.     void numericSpinner3_actionPerformed(java.awt.event.ActionEvent event)
  2825.     {
  2826.         // to do: code goes here.
  2827.  
  2828.         //{{CONNECTION
  2829.         // Set the bar gap width... Get the current index
  2830.         {
  2831.             try {
  2832.                 progressBar1.setGapWidth(numericSpinner3.getCurrent());
  2833.             }
  2834.             catch(Exception e) { }
  2835.         }
  2836.         //}}
  2837.     }
  2838.  
  2839.     void directionButton4_actionPerformed(java.awt.event.ActionEvent event)
  2840.     {
  2841.         // to do: code goes here.
  2842.  
  2843.         //{{CONNECTION
  2844.         // Specify the scrolling direction... SCROLL_LEFT
  2845.         {
  2846.             try {
  2847.                 scrollingText1.setScrollDirection(scrollingText1.SCROLL_LEFT);
  2848.             }
  2849.             catch(Exception e) { }
  2850.         }
  2851.         //}}
  2852.     }
  2853.  
  2854.     void directionButton5_actionPerformed(java.awt.event.ActionEvent event)
  2855.     {
  2856.         // to do: code goes here.
  2857.  
  2858.         //{{CONNECTION
  2859.         // Specify the scrolling direction... SCROLL_RIGHT
  2860.         {
  2861.             try {
  2862.                 scrollingText1.setScrollDirection(scrollingText1.SCROLL_RIGHT);
  2863.             }
  2864.             catch(Exception e) { }
  2865.         }
  2866.         //}}
  2867.     }
  2868.  
  2869.     void button1_ActionPerformed(java.awt.event.ActionEvent event)
  2870.     {
  2871.         // to do: code goes here.
  2872.  
  2873.         //{{CONNECTION
  2874.         // Set the text for TextField... Get the date displayed on calendar
  2875.         {
  2876.             textField5.setText(calendar1.getDate());
  2877.         }
  2878.         //}}
  2879.     }
  2880. }
  2881.