home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgLangD.iso
/
VCAFE.3.0A
/
Sample.bin
/
FireWorksClass.java
< prev
next >
Wrap
Text File
|
1998-10-28
|
4KB
|
161 lines
/*
A basic extension of the java.awt.Frame class
*/
import java.awt.*;
import symantec.itools.multimedia.*;
import symantec.itools.multimedia.Firework;
public class FireWorksClass extends Frame
{
public FireWorksClass()
{
// 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);
setBackground(java.awt.Color.black);
setSize(433,271);
setVisible(false);
add(firework1);
firework1.setBounds(49,21,357,173);
button1.setActionCommand("button");
button1.setLabel("Pause");
add(button1);
button1.setBounds(80,204,60,40);
button2.setActionCommand("button");
button2.setLabel("Close");
add(button2);
button2.setBounds(288,204,60,40);
button3.setActionCommand("button");
button3.setLabel("Start");
add(button3);
button3.setBounds(184,204,60,40);
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 FireWorksClass(String title)
{
this();
setTitle(title);
}
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
Insets insets = getInsets();
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.Firework firework1 = new symantec.itools.multimedia.Firework();
java.awt.Button button1 = new java.awt.Button();
java.awt.Button button2 = new java.awt.Button();
java.awt.Button button3 = new java.awt.Button();
//}}
//{{DECLARE_MENUS
//}}
class SymWindow extends java.awt.event.WindowAdapter
{
public void windowClosing(java.awt.event.WindowEvent event)
{
Object object = event.getSource();
if (object == FireWorksClass.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
// Freeze all rockets
{
firework1.freezeRockets();
}
//}}
}
void button3_Action(java.awt.event.ActionEvent event)
{
// to do: code goes here.
//{{CONNECTION
// Unfreeze all rockets
{
firework1.unfreezeRockets();
}
//}}
}
void button2_Action(java.awt.event.ActionEvent event)
{
// to do: code goes here.
//{{CONNECTION
// Hide the Frame
setVisible(false);
dispose();
//}}
}
}