-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathFrmPCategories.java
More file actions
217 lines (204 loc) · 5.88 KB
/
FrmPCategories.java
File metadata and controls
217 lines (204 loc) · 5.88 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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
package hms;
import javax.swing.*;
import javax.swing.table.*;
import java.awt.*;
import java.awt.event.*;
import java.sql.*;
class FrmPCategories extends JInternalFrame
{
/**
*
*/
private static final long serialVersionUID = 1L;
static FrmPCategories fpc;
JTable jtb;
Object [][]data;
JScrollPane jsp;
String heads[]={"Category ID","Category Name"};
JPanel p1;
JButton btnAdd,btnUpdate,btnSearch,btnShowAll,btnDelete;
DConnection dc;
ResultSet rst;
static String query="";
JTableHeader header;
FrmPCategories(JDesktopPane jdp)
{
super("Procedure Categories",true,true,true,true);
dc=new DConnection();
btnAdd=new JButton("Add");
btnUpdate=new JButton("Update");
btnSearch=new JButton("Search");
btnShowAll=new JButton("Show All");
btnDelete=new JButton("Delete");
p1=new JPanel();
p1.setLayout(new GridLayout(1,5));
fpc=this;
btnAdd.setForeground(Color.white);
btnAdd.setBackground(Color.blue);
btnAdd.setFont(new Font(Font.SERIF,Font.ITALIC+Font.BOLD,20));
btnAdd.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent ae)
{
FrmAddEditPCategory pc =new FrmAddEditPCategory(true,"",fpc);
jdp.add(pc);
jdp.setComponentZOrder(pc,0);
jdp.setComponentZOrder(fpc,1);
}
});
btnUpdate.setForeground(Color.white);
btnUpdate.setBackground(Color.blue);
btnUpdate.setFont(new Font(Font.SERIF,Font.ITALIC+Font.BOLD,20));
btnUpdate.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent ae)
{
int r=jtb.getSelectedRow();
if(r==-1)
{
JOptionPane.showMessageDialog(null,"No row selected");
}
else
{
String s1=(String)jtb.getValueAt(r,0);
FrmAddEditPCategory pc=new FrmAddEditPCategory(false,"select * from pcat where pcat_id="+s1,fpc);
jdp.add(pc);
jdp.setComponentZOrder(pc,0);
jdp.setComponentZOrder(fpc,1);
}
}
});
btnSearch.setForeground(Color.white);
btnSearch.setBackground(new Color(128,0,255));
btnSearch.setFont(new Font(Font.SERIF,Font.ITALIC+Font.BOLD,20));
btnSearch.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent ae)
{
query="";
FrmSearchPCategory pc=new FrmSearchPCategory(fpc);
jdp.add(pc);
jdp.setComponentZOrder(pc,0);
jdp.setComponentZOrder(fpc,1);
}
});
btnShowAll.setForeground(Color.white);
btnShowAll.setBackground(new Color(128,0,255));
btnShowAll.setFont(new Font(Font.SERIF,Font.ITALIC+Font.BOLD,20));
btnShowAll.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent ae)
{
query="";
reload();
}
});
btnDelete.setForeground(Color.white);
btnDelete.setBackground(Color.red);
btnDelete.setFont(new Font(Font.SERIF,Font.ITALIC+Font.BOLD,20));
btnDelete.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent ae)
{
int r=jtb.getSelectedRow();
if(r==-1)
{
JOptionPane.showMessageDialog(null,"No row selected");
}
else
{
String s1=(String)jtb.getValueAt(r,0);
dc.executeOther("delete from pcat where pcat_id="+s1);
reload();
}
}
});
p1.add(btnAdd); p1.add(btnUpdate);
p1.add(btnSearch);p1.add(btnShowAll);p1.add(btnDelete);
add(p1,"South");
jtb=createJTable();
jtb.setRowHeight(25);
jtb.setRowMargin(5);
Dimension d1=new Dimension(5,5);
jtb.setIntercellSpacing(d1);
jtb.setGridColor(Color.black);
jtb.setShowGrid(true);
jtb.setForeground(new Color(255,0,0));
jtb.setBackground(new Color(255,255,255));
jtb.setFont(new Font(Font.SERIF,Font.BOLD,15));
header=jtb.getTableHeader();
header.setForeground(Color.white);
header.setBackground(new Color(64,0,0));
header.setFont(new Font(Font.SERIF,Font.BOLD,17));
jtb.setSelectionForeground(Color.black);
jtb.setSelectionBackground(new Color(255,128,128));
jsp=new JScrollPane(jtb);
jsp.getViewport().setBackground(new Color(255,255,255));
add(jsp);
setSize(600,400);
setLocation(CommonMethods.getCenterPoint(getSize()));
setVisible(true);
}
void reload()
{
remove(jsp);
jtb=createJTable();
jtb.setRowHeight(25);
jtb.setRowMargin(5);
Dimension d1=new Dimension(5,5);
jtb.setIntercellSpacing(d1);
jtb.setGridColor(Color.black);
jtb.setShowGrid(true);
jtb.setForeground(new Color(255,0,0));
jtb.setBackground(new Color(255,255,255));
jtb.setFont(new Font(Font.SERIF,Font.BOLD,15));
header=jtb.getTableHeader();
header.setForeground(Color.white);
header.setBackground(new Color(64,0,0));
header.setFont(new Font(Font.SERIF,Font.BOLD,17));
jtb.setSelectionForeground(Color.black);
jtb.setSelectionBackground(new Color(255,128,128));
jsp=new JScrollPane(jtb);
jsp.getViewport().setBackground(new Color(255,255,255));
add(jsp);
revalidate();
}
JTable createJTable()
{
try
{
if(query==null || "".equals(query))
rst=dc.executeQuery("Select count(*) from pcat");
else
rst=dc.executeQuery("Select count(*)" + query);
rst.next();
int n=rst.getInt(1);
if(n!=0)
{
if(query==null || "".equals(query))
rst=dc.executeQuery("Select * from pcat");
else
rst=dc.executeQuery("Select * "+query);
data=new Object[n][2];
int i=0;
while(rst.next())
{
data[i][0]=rst.getString(1);
data[i][1]=rst.getString(2);
i++;
}
dc.close();
}
else
{
data=new Object[0][1];
}
}
catch(SQLException e)
{
e.printStackTrace();
}
jtb=new JTable(data,heads);
return jtb;
}
}