home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / LocatorFrame.java < prev    next >
Text File  |  1998-05-08  |  4KB  |  109 lines

  1. /*
  2.  * Copyright (c) 1997-1998 Borland International, Inc. All Rights Reserved.
  3.  * 
  4.  * This SOURCE CODE FILE, which has been provided by Borland as part
  5.  * of a Borland product for use ONLY by licensed users of the product,
  6.  * includes CONFIDENTIAL and PROPRIETARY information of Borland.  
  7.  *
  8.  * USE OF THIS SOFTWARE IS GOVERNED BY THE TERMS AND CONDITIONS 
  9.  * OF THE LICENSE STATEMENT AND LIMITED WARRANTY FURNISHED WITH
  10.  * THE PRODUCT.
  11.  *
  12.  * IN PARTICULAR, YOU WILL INDEMNIFY AND HOLD BORLAND, ITS RELATED
  13.  * COMPANIES AND ITS SUPPLIERS, HARMLESS FROM AND AGAINST ANY CLAIMS
  14.  * OR LIABILITIES ARISING OUT OF THE USE, REPRODUCTION, OR DISTRIBUTION
  15.  * OF YOUR PROGRAMS, INCLUDING ANY CLAIMS OR LIABILITIES ARISING OUT OF
  16.  * OR RESULTING FROM THE USE, MODIFICATION, OR DISTRIBUTION OF PROGRAMS
  17.  * OR FILES CREATED FROM, BASED ON, AND/OR DERIVED FROM THIS SOURCE
  18.  * CODE FILE.
  19.  */
  20. package borland.samples.tutorial.dataset.locator;
  21.  
  22. // AWT imports
  23. import java.awt.*;
  24. import java.awt.event.*;
  25.  
  26. // JBCL imports
  27. import borland.jbcl.layout.*;
  28. import borland.jbcl.control.*;
  29. import borland.sql.dataset.*;
  30. import borland.jbcl.dataset.*;
  31.  
  32. // JBCL Frame
  33. public class LocatorFrame extends DecoratedFrame
  34. {
  35.   Database database1 = new Database();
  36.   QueryDataSet queryDataSet1 = new QueryDataSet();
  37.  
  38.   Label label1 = new Label();
  39.   TextField textField1 = new TextField();
  40.   Label label2 = new Label();
  41.   LocatorControl locatorControl1 = new LocatorControl();
  42.   GridControl gridControl1 = new GridControl();
  43.   Label label3 = new Label();
  44.   Label label4 = new Label();
  45.   Label label5 = new Label();
  46.   BevelPanel bevelPanel1 = new BevelPanel();
  47.   BorderLayout borderLayout1 = new BorderLayout();
  48.   StatusBar statusBar1 = new StatusBar();
  49.   Column column1 = new Column();
  50.  
  51.  
  52.   public LocatorFrame() {
  53.     try {
  54.       jbInit();
  55.     }
  56.     catch (Exception x) {
  57.       // handle exceptions here
  58.     }
  59.   }         
  60.  
  61.   private void jbInit() throws Exception {
  62.     gridControl1.setDataSet(queryDataSet1);
  63.     database1.setConnection(new borland.sql.dataset.ConnectionDescriptor("jdbc:odbc:dataset tutorial", "SYSDBA", "masterkey", false, "sun.jdbc.odbc.JdbcOdbcDriver"));
  64.     queryDataSet1.setQuery(new borland.sql.dataset.QueryDescriptor(database1, "select * from employee", null, true, Load.ALL));
  65.     label1.setText("Column to locate");
  66.     textField1.addKeyListener(new LocatorFrame_textField1_KeyAdapter(this));
  67.     label2.setText("Value to locate");
  68.     locatorControl1.setDataSet(queryDataSet1);
  69.     label3.setText("Name the column on which to search");
  70.     label4.setText("Then specify the exact value you want to locate");
  71.     label5.setText("(Press {ENTER} after each of the above items)");
  72.     statusBar1.setDataSet(queryDataSet1);
  73.     column1.setColumnName("HIRE_DATE");
  74.     column1.setDisplayMask("MM/dd/yy");
  75.     column1.setDataType(borland.jbcl.util.Variant.TIMESTAMP);
  76.     queryDataSet1.setColumns(new Column[] {column1});
  77.     this.setLayout(borderLayout1);
  78.     this.setTitle("LocatorControl Application");
  79.     bevelPanel1.add(label1, new XYConstraints(18, 3, 134, 22));
  80.     bevelPanel1.add(textField1, new XYConstraints(18, 28, 184, 23));
  81.     bevelPanel1.add(label2, new XYConstraints(21, 62, 94, 23));
  82.     bevelPanel1.add(locatorControl1, new XYConstraints(18, 88, 187, 26));
  83.     bevelPanel1.add(label3, new XYConstraints(227, 27, 221, 23));
  84.     bevelPanel1.add(label4, new XYConstraints(227, 55, 286, -1));
  85.     bevelPanel1.add(label5, new XYConstraints(227, 82, 295, -1));
  86.     this.add(bevelPanel1, BorderLayout.NORTH);
  87.     this.add(gridControl1, BorderLayout.CENTER);
  88.     this.add(statusBar1, BorderLayout.SOUTH);
  89.   }
  90.  
  91.   void textField1_keyPressed(java.awt.event.KeyEvent e) {
  92.    if (e.getKeyCode() == KeyEvent.VK_ENTER) {
  93.       locatorControl1.setColumnName(textField1.getText());
  94.       locatorControl1.requestFocus();
  95.    }
  96.   }
  97. }
  98.  
  99. class LocatorFrame_textField1_KeyAdapter extends KeyAdapter {
  100.   LocatorFrame adaptee;
  101.   LocatorFrame_textField1_KeyAdapter(LocatorFrame adaptee) {
  102.     this.adaptee = adaptee;
  103.   }
  104.   public void keyPressed(java.awt.event.KeyEvent e) {
  105.      adaptee.textField1_keyPressed(e);
  106.   }
  107. }
  108.  
  109.