package demo7;
import java.util.*;
import org.openswing.swing.internationalization.java.EnglishOnlyResourceFactory;
import org.openswing.swing.domains.java.*;
import java.sql.*;
import org.openswing.swing.util.client.*;
import org.openswing.swing.permissions.java.ButtonsAuthorizations;
import org.openswing.swing.internationalization.java.*;
import java.awt.Color;
import org.openswing.swing.util.java.Consts;
/**
* <p>Title: OpenSwing Demo</p>
* <p>Description: Used to start application from main method:
* it creates a grid frame and a detail frame accessed by double click on the grid.
* The detail form contains a tree+grid lookup.</p>
* <p>Copyright: Copyright (C) 2006 Mauro Carniel</p>
* <p> </p>
* @author Mauro Carniel
* @version 1.0
*/
public class ClientApplication {
Connection conn = null;
public ClientApplication() {
Hashtable domains = new Hashtable();
Properties props = new Properties();
props.setProperty("this text will be translated","This text will be translated");
props.setProperty("date","Date");
props.setProperty("combobox","Combobox");
props.setProperty("opened","Opened");
props.setProperty("suspended","Suspended");
props.setProperty("delivered","Delivered");
props.setProperty("closed","Closed");
props.setProperty("radio button","Radio Button");
props.setProperty("stringValue","Text");
props.setProperty("dateValue","Date");
props.setProperty("checkValue","CheckBox");
props.setProperty("radioButtonValue","RadioButton");
props.setProperty("comboValue","ComboBox");
props.setProperty("currencyValue","Currency");
props.setProperty("numericValue","Number");
props.setProperty("lookupValue","Lookup Code");
props.setProperty("descrLookupValue","Lookup Description");
props.setProperty("taValue","Text Area");
ButtonsAuthorizations auth = new ButtonsAuthorizations();
auth.addButtonAuthorization("F1",true,false,true);
ClientSettings clientSettings = new ClientSettings(
new EnglishOnlyResourceFactory("�",props,true),
domains,
auth
);
ClientSettings.ALLOW_OR_OPERATOR = false;
ClientSettings.INCLUDE_IN_OPERATOR = false;
ClientSettings.BUTTON_BEHAVIOR = Consts.BUTTON_IMAGE_AND_TEXT;
Domain orderStateDomain = new Domain("ORDERSTATE");
orderStateDomain.addDomainPair("O","opened");
orderStateDomain.addDomainPair("S","suspended");
orderStateDomain.addDomainPair("D","delivered");
orderStateDomain.addDomainPair("ABC","closed");
domains.put(
orderStateDomain.getDomainId(),
orderStateDomain
);
createConnection();
new GridFrameController(conn);
}
public static void main(String[] argv) {
new ClientApplication();
}
/**
* Create the database connection (using Hypersonic DB - in memory) and initialize tables...
*/
private void createConnection() {
try {
Class.forName("org.hsqldb.jdbcDriver");
conn = DriverManager.getConnection("jdbc:hsqldb:mem:"+"a"+Math.random(),"sa","");
PreparedStatement stmt = null;
try {
stmt = conn.prepareStatement("create table DEMO7(TEXT VARCHAR,DECNUM DECIMAL(10,2),CURRNUM DECIMAL(10,2),THEDATE DATE,COMBO VARCHAR,CHECK_BOX CHAR(1),RADIO CHAR(1),CODE VARCHAR,TA VARCHAR,PRIMARY KEY(TEXT))");
stmt.execute();
stmt.close();
stmt = conn.prepareStatement("create table DEMO7_LOOKUP(CODE VARCHAR,DESCRCODE VARCHAR,PRIMARY KEY(CODE))");
stmt.execute();
for(int i=0;i<10;i++) {
stmt.close();
stmt = conn.prepareStatement("insert into DEMO7 values('ABC"+i+"',"+12+i+0.333+","+1234+i+0.56+",?,'ABC','Y','Y','A"+i+"','AAAAAA"+i+"')");
stmt.setObject(1,new java.sql.Date(System.currentTimeMillis()+86400000*i));
stmt.execute();
}
stmt.close();
stmt = conn.prepareStatement("insert into DEMO7 values('ABC"+10+"',"+22+0.333+","+1234+10+0.56+",?,'O','Y','Y','A"+10+"','AAAAAA"+10+"')");
stmt.setObject(1,new java.sql.Date(System.currentTimeMillis()+86400000*10));
stmt.execute();
for(int i=0;i<10;i++) {
stmt.close();
stmt = conn.prepareStatement("insert into DEMO7_LOOKUP values('A"+i+"','ABCDEF"+String.valueOf((char)(i+78))+"')");
stmt.execute();
}
}
catch (SQLException ex1) {
ex1.printStackTrace();
}
finally {
try {
stmt.close();
}
catch (SQLException ex2) {
}
}
conn.commit();
}
catch (Exception ex) {
ex.printStackTrace();
}
}
}