Examples of HelpedTextField


Examples of nu.lazy8.util.help.HelpedTextField

    textField1 = new IntegerField("Number", "accounttype", view);
    textField1.setEnabled(false);

    label2 = new HelpedLabel(Translator.getTranslation("Account type name"),
        "Name", "accounttype", view);
    textField2 = new HelpedTextField("Name", "accounttype", view);
    label3 = new HelpedLabel(Translator.getTranslation("Sorting order for reports"),
        "Sort", "accounttype", view);
    textField3 = new IntegerField("Sort", "accounttype", view);
    JPanel jPanel22 = new JPanel();
    jPanel22.setLayout(new BoxLayout(jPanel22, BoxLayout.Y_AXIS));
View Full Code Here

Examples of nu.lazy8.util.help.HelpedTextField

    //setDefaultCloseOperation(DO_NOTHING_ON_CLOSE);
    jPanel1 = new JPanel();

    label1 = new HelpedLabel(Translator.getTranslation("JDBC Driver information"),
        "driver", "dataconn", view);
    textField1 = new HelpedTextField("driver", "dataconn", view);
    label2 = new HelpedLabel(Translator.getTranslation("Database connection information"),
        "dataconnect", "dataconn", view);
    textField2 = new HelpedTextField("dataconnect", "dataconn", view);

    label3 = new HelpedLabel(Translator.getTranslation("User name"),
        "user", "dataconn", view);
    textField3 = new HelpedTextField("user", "dataconn", view);

    label4 = new HelpedLabel(Translator.getTranslation("Password"),
        "password", "dataconn", view);
    textField4 = new JPasswordField();
View Full Code Here

Examples of nu.lazy8.util.help.HelpedTextField

        "number", "account", view);
    textField1 = new IntegerField("number", "account", view);
    textField1.setText(sAccountNum);
    label2 = new HelpedLabel(Translator.getTranslation("Account name"),
        "name", "account", view);
    textField2 = new HelpedTextField("name", "account", view);

    jPanel1.add(label1);
    jPanel1.add(textField1);

    jPanel1.add(label2);
View Full Code Here

Examples of nu.lazy8.util.help.HelpedTextField

    label1 = new HelpedLabel(Translator.getTranslation("CompId"),
        "Number", "company", view);
    textField1 = new IntegerField("Number", "company", view);
    label2 = new HelpedLabel(Translator.getTranslation("Company name"),
        "Name", "company", view);
    textField2 = new HelpedTextField("Name", "company", view);
    JPanel jPanel22 = new JPanel();
    jPanel22.setLayout(new BoxLayout(jPanel22, BoxLayout.Y_AXIS));

    jPanel1.setLayout(new GridLayout(2, 2));
View Full Code Here

Examples of nu.lazy8.util.help.HelpedTextField

    m_monitor.setText("");
    m_monitor.replaceSelection(Translator.getTranslation("Enter the name of your company and any four digit number that will represent your company.") + "\n" +
        Translator.getTranslation("Press NEXT to continue."));

    textField1 = new IntegerField("Number", "company", frameParent);
    textField2 = new HelpedTextField("Name", "company", frameParent);

    rightButton = new JButton(Translator.getTranslation("Next"));

    rightButton.addActionListener(
      new java.awt.event.ActionListener() {
View Full Code Here

Examples of nu.lazy8.util.help.HelpedTextField

          //can be bad dates!!! or no dates at all
        }
      };
    cc.AddPeriod(null, Translator.getTranslation("Period"), false);

    nowSelectedReport.jTextField3 = new HelpedTextField("ReportTitle", "allreports", view);
    jpImage = new JPanel();
    jpImage.setLayout(new BoxLayout(jpImage, BoxLayout.X_AXIS));
    nowSelectedReport.jTextField4 = new HelpedTextField("headerimage", "allreports", view);
    jpImage.add(nowSelectedReport.jTextField4);
    JButton browse = new HelpedButton(Translator.getTranslation("Browse"),
        "headerimage", "allreports", view);
    jpImage.add(browse);
    browse.addActionListener(
View Full Code Here

Examples of nu.lazy8.util.help.HelpedTextField

    //once isnt enough
    SwingUtilities.invokeLater(
      new Runnable() {
        //{{{ +run() : void
        public void run() {
          nowSelectedReport.jTextField3 = new HelpedTextField("ReportTitle", "allreports", view);
          nowSelectedReport.jTextField4 = new HelpedTextField("headerimage", "allreports", view);
          nowSelectedReport.cc = cc;
          ReCreateThePanel();
        }//}}}
      });
  }//}}}
View Full Code Here

Examples of nu.lazy8.util.help.HelpedTextField

        }//}}}
      };

    label3 = new HelpedLabel(Translator.getTranslation("Commentary"), "Commentary", "transaction", view);
    commentsTextField =
      new HelpedTextField("Commentary", "transaction", view) {
        //{{{ +gotEnter() : void
        public void gotEnter() {
          SetSelectionFirstNoEdit();
          tableView.requestFocus();
          tableView.editCellAt(0, COL_ACCOUNTNUM);
        }//}}}
      };

    label4 = new HelpedLabel(Translator.getTranslation("Fileing information"), "FileInfo", "transaction", view);
    fileInfoTextField =
      new HelpedTextField("FileInfo", "transaction", view) {
        //{{{ +gotEnter() : void
        public void gotEnter() {
          invoiceDateField.getEditor().requestFocus();
          invoiceDateField.getEditor().setEditable(true);
          SwingUtilities.invokeLater(
View Full Code Here

Examples of nu.lazy8.util.help.HelpedTextField

    column = tableView.getColumn(dataModel.getColumnName(COL_ROWNUM));
    column.setPreferredWidth(rownumSize);
    column.setCellRenderer(new JTableHeader().getDefaultRenderer());

    column = tableView.getColumn(dataModel.getColumnName(COL_TEXT));
    textCommentsEditor = new HelpedTextField("TextComments", "transaction", view);
    column.setCellEditor(new DefaultCellEditor(textCommentsEditor));
    column.setPreferredWidth(textCommentSize);

    column = tableView.getColumn(dataModel.getColumnName(COL_ACCOUNTNUM));
    accountEditor = new IntegerField("Account", "transaction", view);
View Full Code Here

Examples of nu.lazy8.util.help.HelpedTextField

        "Number", "customer", view);
    textField1 = new IntegerField("Number", "customer", view);
    textField1.setText(sAccountNum);
    label2 = new HelpedLabel(Translator.getTranslation("Customer name"),
        "Name", "customer", view);
    textField2 = new HelpedTextField("Name", "customer", view);
    label3 = new HelpedLabel(Translator.getTranslation("Customer description"),
        "Description", "customer", view);
    textField3 = new HelpedTextField("Description", "customer", view);
    JPanel jPanel22 = new JPanel();
    jPanel22.setLayout(new BoxLayout(jPanel22, BoxLayout.Y_AXIS));

    jPanel1.setLayout(new GridLayout(5, 2));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.