|
@@ -4,13 +4,14 @@
|
|
|
* and open the template in the editor.
|
|
|
*/
|
|
|
package project82usb;
|
|
|
+import project82usb.usbDeviceList.*;
|
|
|
|
|
|
/**
|
|
|
*
|
|
|
* @author ilysk
|
|
|
*/
|
|
|
public class devicesmatrix extends javax.swing.JFrame {
|
|
|
-
|
|
|
+ private final usbDeviceList list = new usbDeviceList();
|
|
|
/**
|
|
|
* Creates new form devicesmatrix
|
|
|
*/
|
|
@@ -29,6 +30,10 @@ public class devicesmatrix extends javax.swing.JFrame {
|
|
|
|
|
|
jScrollPane1 = new javax.swing.JScrollPane();
|
|
|
jTable1 = new javax.swing.JTable();
|
|
|
+ jScrollPane2 = new javax.swing.JScrollPane();
|
|
|
+ tvOut = new javax.swing.JTextArea();
|
|
|
+ btnClear = new javax.swing.JButton();
|
|
|
+ btnRefresh = new javax.swing.JButton();
|
|
|
|
|
|
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
|
|
|
|
|
@@ -45,20 +50,66 @@ public class devicesmatrix extends javax.swing.JFrame {
|
|
|
));
|
|
|
jScrollPane1.setViewportView(jTable1);
|
|
|
|
|
|
+ tvOut.setEditable(false);
|
|
|
+ tvOut.setColumns(20);
|
|
|
+ tvOut.setRows(5);
|
|
|
+ jScrollPane2.setViewportView(tvOut);
|
|
|
+
|
|
|
+ btnClear.setText("Clear");
|
|
|
+ btnClear.addActionListener(new java.awt.event.ActionListener() {
|
|
|
+ public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
|
+ btnClearActionPerformed(evt);
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ btnRefresh.setText("Refresh");
|
|
|
+ btnRefresh.addActionListener(new java.awt.event.ActionListener() {
|
|
|
+ public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
|
+ btnRefreshActionPerformed(evt);
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
|
|
|
getContentPane().setLayout(layout);
|
|
|
layout.setHorizontalGroup(
|
|
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
|
.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 400, Short.MAX_VALUE)
|
|
|
+ .addGroup(layout.createSequentialGroup()
|
|
|
+ .addContainerGap()
|
|
|
+ .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
|
+ .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
|
|
|
+ .addGap(0, 0, Short.MAX_VALUE)
|
|
|
+ .addComponent(btnRefresh)
|
|
|
+ .addGap(18, 18, 18)
|
|
|
+ .addComponent(btnClear))
|
|
|
+ .addComponent(jScrollPane2))
|
|
|
+ .addContainerGap())
|
|
|
);
|
|
|
layout.setVerticalGroup(
|
|
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
|
- .addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 300, Short.MAX_VALUE)
|
|
|
+ .addGroup(layout.createSequentialGroup()
|
|
|
+ .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 126, javax.swing.GroupLayout.PREFERRED_SIZE)
|
|
|
+ .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
|
+ .addComponent(jScrollPane2, javax.swing.GroupLayout.DEFAULT_SIZE, 254, Short.MAX_VALUE)
|
|
|
+ .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
|
|
|
+ .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
|
|
|
+ .addComponent(btnClear)
|
|
|
+ .addComponent(btnRefresh))
|
|
|
+ .addContainerGap())
|
|
|
);
|
|
|
|
|
|
pack();
|
|
|
}// </editor-fold>//GEN-END:initComponents
|
|
|
|
|
|
+ private void btnClearActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnClearActionPerformed
|
|
|
+ this.tvOut.setText("");
|
|
|
+ }//GEN-LAST:event_btnClearActionPerformed
|
|
|
+
|
|
|
+ private void btnRefreshActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnRefreshActionPerformed
|
|
|
+ list.getUsbDeviceList();
|
|
|
+ list.printDeviceList(this);
|
|
|
+ }//GEN-LAST:event_btnRefreshActionPerformed
|
|
|
+
|
|
|
/**
|
|
|
* @param args the command line arguments
|
|
|
*/
|
|
@@ -93,9 +144,17 @@ public class devicesmatrix extends javax.swing.JFrame {
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
+
|
|
|
+ public void addTextTvOut(String text){
|
|
|
+ tvOut.setText(tvOut.getText()+text+"\n");
|
|
|
+ }
|
|
|
|
|
|
// Variables declaration - do not modify//GEN-BEGIN:variables
|
|
|
+ private javax.swing.JButton btnClear;
|
|
|
+ private javax.swing.JButton btnRefresh;
|
|
|
private javax.swing.JScrollPane jScrollPane1;
|
|
|
+ private javax.swing.JScrollPane jScrollPane2;
|
|
|
private javax.swing.JTable jTable1;
|
|
|
+ private javax.swing.JTextArea tvOut;
|
|
|
// End of variables declaration//GEN-END:variables
|
|
|
}
|