⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jfind.java

📁 是一个专门设计用于触摸屏的POS(point of sales)应用软件
💻 JAVA
字号:
//    Tina POS is a point of sales application designed for touch screens.//    Copyright (C) 2005 Adrian Romero Corchado.//    http://sourceforge.net/projects/tinapos////    This program is free software; you can redistribute it and/or modify//    it under the terms of the GNU General Public License as published by//    the Free Software Foundation; either version 2 of the License, or//    (at your option) any later version.////    This program is distributed in the hope that it will be useful,//    but WITHOUT ANY WARRANTY; without even the implied warranty of//    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the//    GNU General Public License for more details.////    You should have received a copy of the GNU General Public License//    along with this program; if not, write to the Free Software//    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USApackage net.adrianromero.data.gui;import javax.swing.*;import java.awt.*;import net.adrianromero.basic.BasicException;import net.adrianromero.data.loader.Vectorer;import net.adrianromero.data.loader.LocalRes;public class JFind extends JDialog {        private FindInfo m_FindInfo;    private Vectorer m_vec;            /** Creates new form JFind */    private JFind(java.awt.Frame parent, boolean modal) {        super(parent, modal);    }    /** Creates new form JFind */    private JFind(java.awt.Dialog parent, boolean modal) {        super(parent, modal);    }        private FindInfo init(FindInfo lastFindInfo) throws BasicException {                initComponents();        getRootPane().setDefaultButton(jcmdOK);              // El texto        m_jFind.setText(lastFindInfo.getText());        // Pinto la caja        m_jWhere.removeAllItems();        for (int i = 0; i < lastFindInfo.getVectorer().getHeaders().length; i++) {            m_jWhere.addItem(lastFindInfo.getVectorer().getHeaders()[i]);        }        m_jWhere.setSelectedIndex(lastFindInfo.getField());        // El Match        m_jMatch.removeAllItems();        m_jMatch.addItem(LocalRes.getIntString("list.startfield"));        m_jMatch.addItem(LocalRes.getIntString("list.wholefield"));        m_jMatch.addItem(LocalRes.getIntString("list.anypart"));        m_jMatch.addItem(LocalRes.getIntString("list.re"));        m_jMatch.setSelectedIndex(lastFindInfo.getMatch());        // El case        m_jMatchCase.setSelected(lastFindInfo.isMatchCase());                m_vec = lastFindInfo.getVectorer();        m_FindInfo = null;                //show();        setVisible(true);                return m_FindInfo;    }        private static Window getWindow(Component parent) {        if (parent == null) {            return new JFrame();        } else if (parent instanceof Frame || parent instanceof Dialog) {            return (Window)parent;        } else {            return getWindow(parent.getParent());        }    }           public static FindInfo showMessage(Component parent, FindInfo lastFindInfo) throws BasicException {                 Window window = getWindow(parent);                      JFind myMsg;        if (window instanceof Frame) {             myMsg = new JFind((Frame) window, true);        } else {            myMsg = new JFind((Dialog) window, true);        }        return myMsg.init(lastFindInfo);    }        /** This method is called from within the constructor to     * initialize the form.     * WARNING: Do NOT modify this code. The content of this method is     * always regenerated by the Form Editor.     */    private void initComponents() {//GEN-BEGIN:initComponents        jPanel1 = new javax.swing.JPanel();        jLabel1 = new javax.swing.JLabel();        m_jFind = new javax.swing.JTextField();        jLabel2 = new javax.swing.JLabel();        m_jWhere = new javax.swing.JComboBox();        jLabel3 = new javax.swing.JLabel();        m_jMatch = new javax.swing.JComboBox();        m_jMatchCase = new javax.swing.JCheckBox();        jPanel2 = new javax.swing.JPanel();        jcmdOK = new javax.swing.JButton();        jcmdCancel = new javax.swing.JButton();        setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);        setTitle(LocalRes.getIntString("title.find"));        setResizable(false);        jPanel1.setLayout(null);        jLabel1.setText(LocalRes.getIntString("label.findwhat"));        jPanel1.add(jLabel1);        jLabel1.setBounds(10, 20, 100, 14);        jPanel1.add(m_jFind);        m_jFind.setBounds(110, 20, 230, 19);        jLabel2.setText(LocalRes.getIntString("label.where"));        jPanel1.add(jLabel2);        jLabel2.setBounds(10, 50, 100, 14);        jPanel1.add(m_jWhere);        m_jWhere.setBounds(110, 50, 230, 22);        jLabel3.setText(LocalRes.getIntString("label.match"));        jPanel1.add(jLabel3);        jLabel3.setBounds(10, 80, 100, 14);        jPanel1.add(m_jMatch);        m_jMatch.setBounds(110, 80, 230, 22);        m_jMatchCase.setText(LocalRes.getIntString("label.casesensitive"));        jPanel1.add(m_jMatchCase);        m_jMatchCase.setBounds(110, 110, 230, 20);        getContentPane().add(jPanel1, java.awt.BorderLayout.CENTER);        jPanel2.setLayout(new java.awt.FlowLayout(java.awt.FlowLayout.RIGHT));        jcmdOK.setText(LocalRes.getIntString("button.ok"));        jcmdOK.addActionListener(new java.awt.event.ActionListener() {            public void actionPerformed(java.awt.event.ActionEvent evt) {                jcmdOKActionPerformed(evt);            }        });        jPanel2.add(jcmdOK);        jcmdCancel.setText(LocalRes.getIntString("button.cancel"));        jcmdCancel.addActionListener(new java.awt.event.ActionListener() {            public void actionPerformed(java.awt.event.ActionEvent evt) {                jcmdCancelActionPerformed(evt);            }        });        jPanel2.add(jcmdCancel);        getContentPane().add(jPanel2, java.awt.BorderLayout.SOUTH);        java.awt.Dimension screenSize = java.awt.Toolkit.getDefaultToolkit().getScreenSize();        setBounds((screenSize.width-434)/2, (screenSize.height-222)/2, 434, 222);    }//GEN-END:initComponents    private void jcmdCancelActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jcmdCancelActionPerformed                // TODO add your handling code here:        dispose();            }//GEN-LAST:event_jcmdCancelActionPerformed    private void jcmdOKActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jcmdOKActionPerformed                // TODO add your handling code here:        m_FindInfo = new FindInfo(m_vec, m_jFind.getText(), m_jWhere.getSelectedIndex(), m_jMatchCase.isSelected(), m_jMatch.getSelectedIndex());                dispose();            }//GEN-LAST:event_jcmdOKActionPerformed    //    /**//     * @param args the command line arguments//     *///    public static void main(String args[]) {//        //new JFind(new javax.swing.JFrame(), true).show();//         //        try {//            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());//            //UIManager.setLookAndFeel("com.shfarr.ui.plaf.fh.FhLookAndFeel");//        } catch(Exception ex) {//        }//        //        try {//            showMessage(new javax.swing.JFrame(), null);//        } catch (DataException eD) {//        }//        //        System.exit(0);//    }            // Variables declaration - do not modify//GEN-BEGIN:variables    private javax.swing.JLabel jLabel1;    private javax.swing.JLabel jLabel2;    private javax.swing.JLabel jLabel3;    private javax.swing.JPanel jPanel1;    private javax.swing.JPanel jPanel2;    private javax.swing.JButton jcmdCancel;    private javax.swing.JButton jcmdOK;    private javax.swing.JTextField m_jFind;    private javax.swing.JComboBox m_jMatch;    private javax.swing.JCheckBox m_jMatchCase;    private javax.swing.JComboBox m_jWhere;    // End of variables declaration//GEN-END:variables    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -