AdminWindow.java
上传用户:liming9091
上传日期:2014-10-27
资源大小:3376k
文件大小:5k
源码类别:

Java编程

开发平台:

Java

  1. package uml_gaokai;
  2. import java.awt.*;
  3. import javax.swing.*;
  4. import com.borland.jbcl.layout.*;
  5. import java.awt.event.*;
  6. /**
  7.  * <p>Title: </p>
  8.  * <p>Description: </p>
  9.  * <p>Copyright: Copyright (c) 2003</p>
  10.  * <p>Company: </p>
  11.  * @author unascribed
  12.  * @version 1.0
  13.  */
  14. public class AdminWindow extends JDialog {
  15.   private JPanel panel1 = new JPanel();
  16.   private XYLayout xYLayout1 = new XYLayout();
  17.   private JButton jButton1 = new JButton();
  18.   private JButton jButton2 = new JButton();
  19.   private JButton jButton3 = new JButton();
  20.   private JButton jButton4 = new JButton();
  21.   private JButton jButton5 = new JButton();
  22.   public AdminWindow(Frame frame, String title, boolean modal) {
  23.     super(frame, title, modal);
  24.     try {
  25.       jbInit();
  26.       pack();
  27.     }
  28.     catch(Exception ex) {
  29.       ex.printStackTrace();
  30.     }
  31.   }
  32.   public AdminWindow() {
  33.     this(null, "", false);
  34.   }
  35.   private void jbInit() throws Exception {
  36.     panel1.setLayout(xYLayout1);
  37.     jButton1.setForeground(UIManager.getColor("InternalFrame.activeTitleBackground"));
  38.     jButton1.setText("顾客登录");
  39.     jButton1.addActionListener(new java.awt.event.ActionListener() {
  40.       public void actionPerformed(ActionEvent e) {
  41.         jButton1_actionPerformed(e);
  42.       }
  43.     });
  44.     jButton2.setForeground(UIManager.getColor("InternalFrame.activeTitleBackground"));
  45.     jButton2.setText("采购员登录");
  46.     jButton2.addActionListener(new java.awt.event.ActionListener() {
  47.       public void actionPerformed(ActionEvent e) {
  48.         jButton2_actionPerformed(e);
  49.       }
  50.     });
  51.     jButton3.setForeground(UIManager.getColor("InternalFrame.activeTitleBackground"));
  52.     jButton3.setText("销售员登录");
  53.     jButton3.addActionListener(new java.awt.event.ActionListener() {
  54.       public void actionPerformed(ActionEvent e) {
  55.         jButton3_actionPerformed(e);
  56.       }
  57.     });
  58.     jButton4.setForeground(UIManager.getColor("InternalFrame.activeTitleBackground"));
  59.     jButton4.setText("经理登录");
  60.     jButton4.addActionListener(new java.awt.event.ActionListener() {
  61.       public void actionPerformed(ActionEvent e) {
  62.         jButton4_actionPerformed(e);
  63.       }
  64.     });
  65.     jButton5.setForeground(UIManager.getColor("InternalFrame.activeTitleBackground"));
  66.     jButton5.setText("用户管理");
  67.     jButton5.addActionListener(new java.awt.event.ActionListener() {
  68.       public void actionPerformed(ActionEvent e) {
  69.         jButton5_actionPerformed(e);
  70.       }
  71.     });
  72.     this.getContentPane().add(panel1, BorderLayout.CENTER);
  73.     panel1.add(jButton1,  new XYConstraints(0, 0, -1, 35));
  74.     panel1.add(jButton4,    new XYConstraints(281, 1, 100, 33));
  75.     panel1.add(jButton5,       new XYConstraints(376, 1, 93, 33));
  76.     panel1.add(jButton3, new XYConstraints(182, 1, 98, 33));
  77.     panel1.add(jButton2,   new XYConstraints(84, 1, 100, 33));
  78.   }
  79. //userManagement 用户管理()涉及到用户的增删改
  80.   void jButton5_actionPerformed(ActionEvent e) {
  81.     UserManagement userManagement = new UserManagement() ;
  82.     Dimension dlgSize = userManagement.getPreferredSize();
  83.     Dimension frmSize = getSize();
  84.     Point loc = getLocation();
  85.     userManagement.setLocation((frmSize.width - dlgSize.width) / 2 + loc.x, (frmSize.height - dlgSize.height) / 2 + loc.y);
  86.     userManagement.setModal(true);
  87.     userManagement.pack();
  88.     userManagement.show();
  89.   }
  90. //admin作为顾客登录
  91.   void jButton1_actionPerformed(ActionEvent e) {
  92.     CustomerWindow customerWindow =new CustomerWindow() ;
  93.     Dimension dlgSize = customerWindow.getPreferredSize();
  94.     Dimension frmSize = getSize();
  95.     Point loc = getLocation();
  96.     customerWindow.setLocation((frmSize.width - dlgSize.width) / 2 + loc.x, (frmSize.height - dlgSize.height) / 2 + loc.y);
  97.     customerWindow.setModal(true);
  98.     customerWindow.pack();
  99.     customerWindow.show();
  100.   }
  101.   //admin作为采购员登录
  102.   void jButton2_actionPerformed(ActionEvent e) {
  103.     BuyerWindow buyerWindow =new BuyerWindow() ;
  104.     Dimension dlgSize = buyerWindow.getPreferredSize();
  105.     Dimension frmSize = getSize();
  106.     Point loc = getLocation();
  107.     buyerWindow.setLocation((frmSize.width - dlgSize.width) / 2 + loc.x, (frmSize.height - dlgSize.height) / 2 + loc.y);
  108.     buyerWindow.setModal(true);
  109.     buyerWindow.pack();
  110.     buyerWindow.show();
  111.   }
  112.   //admin作为销售员登录
  113.   void jButton3_actionPerformed(ActionEvent e) {
  114.     SalesWindow salesWindow =new SalesWindow() ;
  115.     Dimension dlgSize = salesWindow.getPreferredSize();
  116.     Dimension frmSize = getSize();
  117.     Point loc = getLocation();
  118.     salesWindow.setLocation((frmSize.width - dlgSize.width) / 2 + loc.x, (frmSize.height - dlgSize.height) / 2 + loc.y);
  119.     salesWindow.setModal(true);
  120.     salesWindow.pack();
  121.     salesWindow.show();
  122.   }
  123.   //admin作为经理登录
  124.   void jButton4_actionPerformed(ActionEvent e) {
  125.     ManagementWindow managementWindow =new ManagementWindow() ;
  126.     Dimension dlgSize = managementWindow.getPreferredSize();
  127.     Dimension frmSize = getSize();
  128.     Point loc = getLocation();
  129.     managementWindow.setLocation((frmSize.width - dlgSize.width) / 2 + loc.x, (frmSize.height - dlgSize.height) / 2 + loc.y);
  130.     managementWindow.setModal(true);
  131.     managementWindow.pack();
  132.     managementWindow.show();
  133.   }
  134. }