-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIssueBookForm.java
More file actions
180 lines (157 loc) · 6.73 KB
/
IssueBookForm.java
File metadata and controls
180 lines (157 loc) · 6.73 KB
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
package libraryManagement;
import java.awt.BorderLayout;
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import javax.swing.GroupLayout;
import javax.swing.GroupLayout.Alignment;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import java.awt.Color;
import java.awt.Font;
import javax.swing.JTextField;
import javax.swing.JButton;
import javax.swing.LayoutStyle.ComponentPlacement;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
public class IssueBookForm extends JFrame {
static IssueBookForm frame;
private JPanel contentPane;
private JTextField textField_1;
private JTextField textField_2;
private JTextField textField_3;
private JTextField textField_4;
//launching
public static void main(String[] args) {
try {
frame = new IssueBookForm();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
//creating the frame
public IssueBookForm() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 438, 414);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
JLabel lblNewLabel = new JLabel("Issue Book ");
lblNewLabel.setFont(new Font("URW Gothic L", Font.BOLD, 20));
lblNewLabel.setForeground(Color.GRAY);
JLabel lblBookName = new JLabel("Book Callno:");
lblBookName.setFont(new Font("Purisa", Font.PLAIN, 15));
textField_1 = new JTextField();
textField_1.setColumns(10);
textField_2 = new JTextField();
textField_2.setColumns(10);
textField_3 = new JTextField();
textField_3.setColumns(10);
textField_4 = new JTextField();
textField_4.setColumns(10);
JLabel lblStudentId = new JLabel("Student Id:");
lblStudentId.setFont(new Font("Purisa", Font.PLAIN, 15));
JLabel lblStudentName = new JLabel("Student Name:");
lblStudentName.setFont(new Font("Purisa", Font.PLAIN, 15));
JLabel lblStudentContact = new JLabel("Student Contact:");
lblStudentContact.setFont(new Font("Purisa", Font.PLAIN, 15));
JButton btnIssueBook = new JButton("Issue Book");
btnIssueBook.setFont(new Font("Purisa", Font.PLAIN, 15));
btnIssueBook.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
String bookcallno=textField_1.getText();
int studentid=Integer.parseInt(textField_2.getText());
String studentname=textField_3.getText();
String studentcontact=textField_4.getText();
if(IssueBookDao.checkBook(bookcallno)){
int i=IssueBookDao.save(bookcallno, studentid, studentname, studentcontact);
if(i>0){
JOptionPane.showMessageDialog(IssueBookForm.this,"Book issued successfully!");
LibrarianSuccess.main(new String[]{});
frame.dispose();
}else{
JOptionPane.showMessageDialog(IssueBookForm.this,"Sorry, unable to issue!");
}//end of save if-else
}else{
JOptionPane.showMessageDialog(IssueBookForm.this,"Sorry, Callno doesn't exist!");
}//end of checkbook if-else
}
});
JButton btnBack = new JButton("Back");
btnBack.setFont(new Font("Purisa", Font.PLAIN, 15));
btnBack.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
LibrarianSuccess.main(new String[]{});
frame.dispose();
}
});
JLabel lblNewLabel_1 = new JLabel("Note: Please check Student ID Carefully before issuing book!");
lblNewLabel_1.setFont(new Font("Tahoma", Font.PLAIN, 13));
lblNewLabel_1.setForeground(Color.RED);
GroupLayout gl_contentPane = new GroupLayout(contentPane);
gl_contentPane.setHorizontalGroup(
gl_contentPane.createParallelGroup(Alignment.LEADING)
.addGroup(gl_contentPane.createSequentialGroup()
.addContainerGap(10, Short.MAX_VALUE)
.addGroup(gl_contentPane.createParallelGroup(Alignment.LEADING)
.addGroup(gl_contentPane.createSequentialGroup()
.addGroup(gl_contentPane.createParallelGroup(Alignment.LEADING)
.addComponent(lblBookName)
.addComponent(lblStudentId)
.addComponent(lblStudentName, GroupLayout.PREFERRED_SIZE, 130, GroupLayout.PREFERRED_SIZE)
.addComponent(lblStudentContact, GroupLayout.PREFERRED_SIZE, 150, GroupLayout.PREFERRED_SIZE))
.addGap(10)
.addGroup(gl_contentPane.createParallelGroup(Alignment.LEADING)
.addComponent(textField_2, GroupLayout.PREFERRED_SIZE, 172, GroupLayout.PREFERRED_SIZE)
.addComponent(textField_1, GroupLayout.PREFERRED_SIZE, 172, GroupLayout.PREFERRED_SIZE)
.addComponent(textField_3, GroupLayout.PREFERRED_SIZE, 172, GroupLayout.PREFERRED_SIZE)
.addComponent(textField_4, GroupLayout.PREFERRED_SIZE, 172, GroupLayout.PREFERRED_SIZE))
.addGap(48))
.addGroup(Alignment.TRAILING, gl_contentPane.createSequentialGroup()
.addGap(20)
.addGroup(gl_contentPane.createParallelGroup(Alignment.TRAILING)
.addComponent(lblNewLabel_1)
.addGroup(gl_contentPane.createSequentialGroup()
.addComponent(btnIssueBook, GroupLayout.PREFERRED_SIZE, 130, GroupLayout.PREFERRED_SIZE)
.addGap(47)
.addComponent(btnBack)))
.addGap(100))))
.addGroup(gl_contentPane.createSequentialGroup()
.addGap(146)
.addComponent(lblNewLabel)
.addContainerGap(235, Short.MAX_VALUE))
);
gl_contentPane.setVerticalGroup(
gl_contentPane.createParallelGroup(Alignment.TRAILING)
.addGroup(gl_contentPane.createSequentialGroup()
.addGap(37)
.addComponent(lblNewLabel)
.addGap(43)
.addGroup(gl_contentPane.createParallelGroup(Alignment.BASELINE)
.addComponent(lblBookName)
.addComponent(textField_1, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE))
.addGap(28)
.addGroup(gl_contentPane.createParallelGroup(Alignment.BASELINE)
.addComponent(lblStudentId)
.addComponent(textField_2, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE))
.addGap(28)
.addGroup(gl_contentPane.createParallelGroup(Alignment.BASELINE)
.addComponent(lblStudentName)
.addComponent(textField_3, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE))
.addGap(26)
.addGroup(gl_contentPane.createParallelGroup(Alignment.BASELINE)
.addComponent(lblStudentContact)
.addComponent(textField_4, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE))
.addPreferredGap(ComponentPlacement.UNRELATED)
.addGroup(gl_contentPane.createParallelGroup(Alignment.BASELINE)
.addComponent(btnIssueBook, GroupLayout.PREFERRED_SIZE, 31, GroupLayout.PREFERRED_SIZE)
.addComponent(btnBack))
.addGap(18)
.addComponent(lblNewLabel_1)
.addGap(25))
);
contentPane.setLayout(gl_contentPane);
}
}