home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1997 October / PCO1097.ISO / FilesBBS / WIN95 / IAVAZIP.EXE / DATA.Z / LicensePanel.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-08-18  |  1.5 KB  |  38 lines

  1. package com.sfs.iavazip;
  2.  
  3. import com.sfs.awt.TexturePanel;
  4. import java.awt.BorderLayout;
  5. import java.awt.Button;
  6. import java.awt.Container;
  7. import java.awt.FlowLayout;
  8. import java.awt.GridLayout;
  9. import java.awt.Label;
  10. import java.awt.Panel;
  11. import java.awt.TextField;
  12. import java.awt.event.ActionListener;
  13.  
  14. class LicensePanel extends Panel {
  15.    public TextField userName;
  16.    public TextField registrationCode;
  17.  
  18.    public LicensePanel(iavaZip var1, ActionListener var2) {
  19.       ((Container)this).setLayout(new BorderLayout());
  20.       1 var3 = new 1(this);
  21.       ((Container)var3).setLayout(new GridLayout(4, 1));
  22.       ((Container)var3).add(new Label("Enter user ID:"));
  23.       ((Container)var3).add(this.userName = new TextField(System.getProperty("user.name")));
  24.       ((Container)var3).add(new Label("Enter license key:"));
  25.       ((Container)var3).add(this.registrationCode = new TextField(""));
  26.       ((Container)this).add("Center", var3);
  27.       TexturePanel var4 = new TexturePanel(this, var1.backgroundTexture);
  28.       ((Container)var4).setLayout(new FlowLayout());
  29.       Button var5 = new Button("License iavaZIP now");
  30.       ((Container)var4).add(var5);
  31.       var5.addActionListener(var2);
  32.       var5 = new Button("Cancel");
  33.       ((Container)var4).add(var5);
  34.       var5.addActionListener(var2);
  35.       ((Container)this).add("South", var4);
  36.    }
  37. }
  38.