diff --git a/MyInfoPrint.java b/MyInfoPrint.java new file mode 100644 index 0000000..23e4a78 --- /dev/null +++ b/MyInfoPrint.java @@ -0,0 +1,114 @@ +import com.symbian.devnet.util.TaskSwitch; + +import java.awt.Dialog; +import java.awt.Dimension; +import java.awt.Frame; +import java.awt.Label; +import java.awt.Point; + +public class MyInfoPrint { + Frame parent; + Dialog diInfo; + Label lbInfo = new Label(); + InfoPrintThread thIPT = new InfoPrintThread(); + + public MyInfoPrint(Frame p) { + parent = p; + diInfo = new Dialog(parent, "infoPrint", false); + } + + // waits 3 seconds and then hides the diInfo-Dialog + private class InfoPrintThread extends Thread { + private transient boolean stopnow; + + public void run() { + this.stopnow = false; + try { + // System.out.println("IPT: started."); + long dtStart = System.currentTimeMillis(); + while (System.currentTimeMillis()