-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSearchContactForm.java
203 lines (174 loc) · 6.72 KB
/
SearchContactForm.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
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
class SearchContactForm extends JFrame{
private JLabel titleLabel;
private JButton backToHomeButton;
private JButton searchButton;
private JLabel idLabel;
private JLabel nameLabel;
private JLabel phoneNumberLabel;
private JLabel companyNameLabel;
private JLabel salaryLabel;
private JLabel birthDayLabel;
private JLabel genIdLabel;
private JLabel searchNameLabel;
private JLabel searchTpLabel;
private JLabel searchCompanyLabel;
private JLabel searchSalaryLabel;
private JLabel searchBirthDayLabel;
private JTextField searchText;
public SearchContactForm(){
setSize(725,735);
setTitle("Search Contact Form ");
setDefaultCloseOperation(DISPOSE_ON_CLOSE);
setLocationRelativeTo(null);
setResizable(false);
setLayout(new BorderLayout());
JPanel titlePanel=new JPanel();
titlePanel.setPreferredSize(new Dimension(725, 100));
titlePanel.setBackground(new Color(95, 119, 222));
titlePanel.setLayout(new BorderLayout());
titleLabel=new JLabel("SEARCH CONTACT");
titleLabel.setFont(new Font("",1,35));
titleLabel.setHorizontalAlignment(JLabel.CENTER);
titlePanel.add(titleLabel);
add(titlePanel, BorderLayout.NORTH);
JPanel detailPanel=new JPanel(new GridLayout(9,1));
detailPanel.setPreferredSize(new Dimension(725,635));
detailPanel.setLayout(null);
searchText=new JTextField(15);
searchText.setFont(new Font("",0,25));
searchText.setBounds(37,18,380,38);
/*searchText.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent evt){
String search=searchText.getText();
int index=ContactController.searchContact(search);
if(index!=-1){
genIdLabel.setText(ContactController.getContact(index).getID());
searchNameLabel.setText(ContactController.getContact(index).getName());
searchTpLabel.setText(ContactController.getContact(index).getphoneNumber());
searchCompanyLabel.setText(ContactController.getContact(index).getcompanyName());
searchSalaryLabel.setText(Double.toString(ContactController.getContact(index).getSalary()));
searchBirthDayLabel.setText(ContactController.getContact(index).getbirthDay());
}else{
JOptionPane.showMessageDialog(null,"No Contact found for "+"\""+search+"\".....");
searchText.setText("");
return;
}
}
});*/
detailPanel.add(searchText);
searchButton=new JButton("Search");
searchButton.setFont(new Font("",1,25));
searchButton.setBounds(450,18,150,38);
searchButton.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent evt){
ContactList contactList=DBConnection.getInstance().getContactList();
String nameOrPhone=searchText.getText();
int index=ContactController.searchContacts(nameOrPhone);
if(searchText.getText().equals("")){
JOptionPane.showMessageDialog(null,"Text Filed is empty");
}else if(index!=-1){
genIdLabel.setText(contactList.get(index).getId());
searchNameLabel.setText(contactList.get(index).getName());
searchTpLabel.setText(contactList.get(index).getPhoneNumber());
searchCompanyLabel.setText(contactList.get(index).getCompanyName());
searchSalaryLabel.setText(""+contactList.get(index).getSalary());
searchBirthDayLabel.setText(contactList.get(index).getBirthday());
}else{
JOptionPane.showMessageDialog(null,"No contact found for "+nameOrPhone);
}
int option=JOptionPane.showConfirmDialog(null,"Do you want to search contact again ?","confirm",JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE);
if(option==JOptionPane.YES_OPTION){
searchText.setText("");
searchText.requestFocus();
genIdLabel.setText("");
searchNameLabel.setText("");
searchTpLabel.setText("");
searchCompanyLabel.setText("");
searchSalaryLabel.setText("");
searchBirthDayLabel.setText("");
}else if(option==JOptionPane.NO_OPTION){
searchText.setText("");
genIdLabel.setText("");
searchNameLabel.setText("");
searchTpLabel.setText("");
searchCompanyLabel.setText("");
searchSalaryLabel.setText("");
searchBirthDayLabel.setText("");
dispose();
}
}
});
detailPanel.add(searchButton);
idLabel=new JLabel("Contact ID ");
idLabel.setFont(new Font("",1,25));
idLabel.setBounds(37,70,250,55);
detailPanel.add(idLabel);
nameLabel=new JLabel("Name");
nameLabel.setFont(new Font("",1,25));
nameLabel.setBounds(37,120,250,55);
detailPanel.add(nameLabel);
phoneNumberLabel=new JLabel("Phone Number");
phoneNumberLabel.setFont(new Font("",1,25));
phoneNumberLabel.setBounds(37,180,250,55);
detailPanel.add(phoneNumberLabel);
companyNameLabel=new JLabel("Company Name");
companyNameLabel.setFont(new Font("",1,25));
companyNameLabel.setBounds(37,250,250,55);
detailPanel.add(companyNameLabel);
salaryLabel=new JLabel("Salary");
salaryLabel.setFont(new Font("",1,25));
salaryLabel.setBounds(37,315,250,55);
detailPanel.add(salaryLabel);
birthDayLabel=new JLabel("B'Day(YYYY-MM-DD)");
birthDayLabel.setFont(new Font("",1,25));
birthDayLabel.setBounds(37,380,250,55);
detailPanel.add(birthDayLabel);
genIdLabel=new JLabel("");
genIdLabel.setFont(new Font("",1,26));
genIdLabel.setBounds(347,75,250,55);
detailPanel.add(genIdLabel);
searchNameLabel=new JLabel();
searchNameLabel.setFont(new Font("",0,25));
searchNameLabel.setBounds(350,135,260,36);
detailPanel.add(searchNameLabel);
searchTpLabel=new JLabel();
searchTpLabel.setFont(new Font("",0,25));
searchTpLabel.setBounds(350,195,260,36);
detailPanel.add(searchTpLabel);
searchCompanyLabel=new JLabel();
searchCompanyLabel.setFont(new Font("",0,25));
searchCompanyLabel.setBounds(350,260,260,36);
detailPanel.add(searchCompanyLabel);
searchSalaryLabel=new JLabel();
searchSalaryLabel.setFont(new Font("",0,25));
searchSalaryLabel.setBounds(350,325,260,36);
detailPanel.add(searchSalaryLabel);
searchBirthDayLabel=new JLabel();
searchBirthDayLabel.setFont(new Font("",0,25));
searchBirthDayLabel.setBounds(350,390,260,36);
detailPanel.add(searchBirthDayLabel);
backToHomeButton=new JButton("Back To HomePage");
backToHomeButton.setFont(new Font("",1,24));
backToHomeButton.setBounds(350,500,331,36);
backToHomeButton.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent evt){
searchText.setText("");
genIdLabel.setText("");
searchNameLabel.setText("");
searchTpLabel.setText("");
searchCompanyLabel.setText("");
searchSalaryLabel.setText("");
searchBirthDayLabel.setText("");
dispose();
}
});
detailPanel.add(backToHomeButton);
add(detailPanel);
}
public static void main(String args[]){
new SearchContactForm().setVisible(true);
}
}