-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain_Frame.java
139 lines (123 loc) · 4.7 KB
/
Main_Frame.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.sql.ResultSet;
import java.sql.SQLException;
import javax.swing.BorderFactory;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
class Main_Frame extends Basic_Frame {
JFrame jf_m=new JFrame();
JPanel m=new JPanel();
//title
JLabel pro_title=new JLabel("驾驶系统",JLabel.CENTER);
//driver
JLabel pro_driver=new JLabel("驾驶员",JLabel.CENTER);
JButton submit_driver_create=new JButton("创建");
JButton submit_driver_inquiry=new JButton("查询");
JButton submit_driver_modify=new JButton("修改");
JButton submit_driver_car=new JButton("拥有汽车");
//car
JLabel pro_car=new JLabel("汽车",JLabel.CENTER);
JButton submit_car_create=new JButton("创建");
JButton submit_car_inquiry=new JButton("查询");
JButton submit_car_modify=new JButton("修改");
JButton submit_car_condition=new JButton("状态");
JButton submit_creator=new JButton("@creator");
Main_Frame() {
try {
//create database
Driving_System_MySQL.regDriver();
Driving_System_MySQL.conBuild();
if (Driving_System_MySQL.ifexistDatabase("DRIVING_SYSTEM")==false) {
Driving_System_MySQL.execUpdate("create DATABASE DRIVING_SYSTEM");
//Driving_System_MySQL.execUpdate("create DATABASE if not exists DRIVING_SYSTEM");
System.out.println("create database 'DRIVING_SYSTEM'");
}
Driving_System_MySQL.closeDB();
//create table
Driving_System_MySQL.changeUrl();
Driving_System_MySQL.regDriver();
Driving_System_MySQL.conBuild();
if (Driving_System_MySQL.ifexistTable("DRIVER")==false) {
System.out.println("create table 'DRIVER'");
Driving_System_MySQL.createTableDRIVER();
}
if (Driving_System_MySQL.ifexistTable("CAR")==false) {
System.out.println("create table 'CAR'");
Driving_System_MySQL.createTableCAR();
}
jf_m.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
Driving_System_MySQL.closeDB();
}
});
} catch(SQLException e1) {
e1.printStackTrace();
}
//title
this.JLabel_add(pro_title,m,100,50,600,50);
pro_title.setBorder(BorderFactory.createLineBorder(Color.blue));
//driver_operation
this.JLabel_add(pro_driver,m,100,150,600,100);
pro_driver.setBorder(BorderFactory.createLineBorder(Color.red));
this.JButton_add(submit_driver_create,m,100,250,150,100);
this.JButton_add(submit_driver_inquiry,m,250,250,150,100);
this.JButton_add(submit_driver_modify,m,400,250,150,100);
this.JButton_add(submit_driver_car,m,550,250,150,100);
//car
this.JLabel_add(pro_car,m,100,400,600,100);
pro_car.setBorder(BorderFactory.createLineBorder(Color.red));
this.JButton_add(submit_car_create,m,100,500,150,100);
this.JButton_add(submit_car_inquiry,m,250,500,150,100);
this.JButton_add(submit_car_modify,m,400,500,150,100);
this.JButton_add(submit_car_condition,m,550,500,150,100);
this.JButton_add(submit_creator,m,550,650,150,50);
//submit_creator.setFocusPainted(false); //去焦点
submit_creator.setBorderPainted(false); //去边框
this.create_jf_jp(jf_m,m,800,800,"主界面");
//主窗口关闭,就会结束运行,而其它窗口关闭,不会结束运行
jf_m.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public void actionPerformed(ActionEvent e) {
try {
//driver
if (e.getSource()==submit_driver_create) {
Driver_Frame df=new Driver_Frame(1);
}
else if (e.getSource()==submit_driver_inquiry) {
Driver_Verify_Frame dvf=new Driver_Verify_Frame(2);
}
else if (e.getSource()==submit_driver_modify) {
Driver_Verify_Frame dvf=new Driver_Verify_Frame(3);
}
else if (e.getSource()==submit_driver_car) {
Driver_Verify_Frame dvf=new Driver_Verify_Frame(4);
}
//car
else if (e.getSource()==submit_car_create) {
Car_Frame df=new Car_Frame(1);
}
else if (e.getSource()==submit_car_inquiry) {
Car_Verify_Frame cvf=new Car_Verify_Frame(2);
}
else if (e.getSource()==submit_car_modify) {
Car_Verify_Frame cvf=new Car_Verify_Frame(3);
}
else if (e.getSource()==submit_car_condition) {
Car_Verify_Frame cvf=new Car_Verify_Frame(4);
}
//author
else if (e.getSource()==submit_creator) {
JOptionPane.showMessageDialog(null, new JLabel("<html><h2> 欢迎您使用该驾驶系统</h2><h2>Creator : 兰州大学 信息学院 陈冠斌</h2><h2>Contact : [email protected]</h2></html>"));
//JOptionPane.showMessageDialog(null, "兰州大学 信息学院 陈冠斌\n欢迎您使用该驾驶系统\nContact : [email protected]", "信息", JOptionPane.CLOSED_OPTION);
}
} catch(Exception e1) {
System.out.println(e1.getMessage());
}
}
}