home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-09-04 | 4.0 KB | 168 lines |
- /*
- A basic extension of the java.awt.Frame class
- */
-
- import java.awt.*;
-
- import symantec.itools.multimedia.*;
- public class PlasmaClass extends Frame
- {
- public PlasmaClass()
- {
- // This code is automatically generated by Visual Cafe when you add
- // components to the visual environment. It instantiates and initializes
- // the components. To modify the code, only use code syntax that matches
- // what Visual Cafe can generate, or Visual Cafe may be unable to back
- // parse your Java file into its visual environment.
- //{{INIT_CONTROLS
- setLayout(null);
- setVisible(false);
- setSize(insets().left + insets().right + 425,insets().top + insets().bottom + 282);
- setBackground(new Color(65535));
- plasma1 = new symantec.itools.multimedia.Plasma();
- plasma1.setBounds(insets().left + 15,insets().top + 9,401,167);
- add(plasma1);
- button1 = new java.awt.Button();
- button1.setActionCommand("button");
- button1.setLabel("Pause");
- button1.setBounds(insets().left + 81,insets().top + 211,60,40);
- add(button1);
- button2 = new java.awt.Button();
- button2.setActionCommand("button");
- button2.setLabel("Close");
- button2.setBounds(insets().left + 283,insets().top + 211,60,40);
- add(button2);
- button3 = new java.awt.Button();
- button3.setActionCommand("button");
- button3.setLabel("Start");
- button3.setBounds(insets().left + 182,insets().top + 211,60,40);
- add(button3);
- setTitle("Untitled");
- //}}
-
- //{{INIT_MENUS
- //}}
-
- //{{REGISTER_LISTENERS
- SymWindow aSymWindow = new SymWindow();
- this.addWindowListener(aSymWindow);
- SymAction lSymAction = new SymAction();
- button1.addActionListener(lSymAction);
- button3.addActionListener(lSymAction);
- button2.addActionListener(lSymAction);
- //}}
- }
-
- public PlasmaClass(String title)
- {
- this();
- setTitle(title);
- }
-
- public synchronized void show()
- {
- move(50, 50);
- super.show();
- }
-
- public void addNotify()
- {
- // Record the size of the window prior to calling parents addNotify.
- Dimension d = getSize();
-
- super.addNotify();
-
- if (fComponentsAdjusted)
- return;
-
- // Adjust components according to the insets
- setSize(insets().left + insets().right + d.width, insets().top + insets().bottom + d.height);
- Component components[] = getComponents();
- for (int i = 0; i < components.length; i++)
- {
- Point p = components[i].getLocation();
- p.translate(insets().left, insets().top);
- components[i].setLocation(p);
- }
- fComponentsAdjusted = true;
- }
-
- // Used for addNotify check.
- boolean fComponentsAdjusted = false;
-
- //{{DECLARE_CONTROLS
- symantec.itools.multimedia.Plasma plasma1;
- java.awt.Button button1;
- java.awt.Button button2;
- java.awt.Button button3;
- //}}
-
- //{{DECLARE_MENUS
- //}}
-
- class SymWindow extends java.awt.event.WindowAdapter
- {
- public void windowClosing(java.awt.event.WindowEvent event)
- {
- Object object = event.getSource();
- if (object == PlasmaClass.this)
- Frame1_WindowClosing(event);
- }
- }
-
- void Frame1_WindowClosing(java.awt.event.WindowEvent event)
- {
- hide(); // hide the Frame
- dispose();
- }
-
- class SymAction implements java.awt.event.ActionListener
- {
- public void actionPerformed(java.awt.event.ActionEvent event)
- {
- Object object = event.getSource();
- if (object == button1)
- button1_Action(event);
- else if (object == button3)
- button3_Action(event);
- else if (object == button2)
- button2_Action(event);
- }
- }
-
- void button1_Action(java.awt.event.ActionEvent event)
- {
- // to do: code goes here.
-
- //{{CONNECTION
- // Stop the plasma animation
- {
- plasma1.stopPlasma();
- }
- //}}
- }
-
- void button3_Action(java.awt.event.ActionEvent event)
- {
- // to do: code goes here.
-
- //{{CONNECTION
- // Start the plasma animation
- {
- plasma1.startPlasma();
- }
- //}}
- }
-
- void button2_Action(java.awt.event.ActionEvent event)
- {
- // to do: code goes here.
-
- //{{CONNECTION
- // Hide the Frame
- setVisible(false);
- dispose();
- //}}
- }
- }
-