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

📄 newlocalefiledialog.java

📁 iReport-0.4.1-src是iReport的源代码,iReport是一个开源的报表项目,可以生成PDF等格式报表
💻 JAVA
字号:
/* * NewLocaleFileDialog.java * * Created on 17 novembre 2004, 1.07 */package it.businesslogic.ireport.gui.locale;/** * * @author  Administrator */public class NewLocaleFileDialog extends javax.swing.JDialog {        private int dialogResult = javax.swing.JOptionPane.CANCEL_OPTION;        private String text = "";        /** Creates new form NewLocaleFileDialog */    public NewLocaleFileDialog(java.awt.Dialog parent, boolean modal) {        super(parent, modal);        initComponents();        this.setSize(300,100);        it.businesslogic.ireport.util.Misc.centerFrame(this);    }        public int getDialogResult() {        return dialogResult;    }    public void setDialogResult(int dialogResult) {        this.dialogResult = dialogResult;    }        /** 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        java.awt.GridBagConstraints gridBagConstraints;        jLabel1 = new javax.swing.JLabel();        jTextField1 = new javax.swing.JTextField();        jPanel1 = new javax.swing.JPanel();        jButton1 = new javax.swing.JButton();        jButton2 = new javax.swing.JButton();        getContentPane().setLayout(new java.awt.GridBagLayout());        setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);        jLabel1.setFont(new java.awt.Font("Dialog", 0, 11));        jLabel1.setText("Locale suffix (i.e. \"_en_US\"). Blank for default locale");        gridBagConstraints = new java.awt.GridBagConstraints();        gridBagConstraints.gridx = 0;        gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;        gridBagConstraints.weightx = 1.0;        gridBagConstraints.insets = new java.awt.Insets(4, 4, 0, 0);        getContentPane().add(jLabel1, gridBagConstraints);        gridBagConstraints = new java.awt.GridBagConstraints();        gridBagConstraints.gridx = 0;        gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;        gridBagConstraints.insets = new java.awt.Insets(2, 4, 4, 4);        getContentPane().add(jTextField1, gridBagConstraints);        jButton1.setFont(new java.awt.Font("Dialog", 0, 11));        jButton1.setText("OK");        jButton1.addActionListener(new java.awt.event.ActionListener() {            public void actionPerformed(java.awt.event.ActionEvent evt) {                jButton1ActionPerformed(evt);            }        });        jPanel1.add(jButton1);        jButton2.setFont(new java.awt.Font("Dialog", 0, 11));        jButton2.setText("Cancel");        jButton2.addActionListener(new java.awt.event.ActionListener() {            public void actionPerformed(java.awt.event.ActionEvent evt) {                jButton2ActionPerformed(evt);            }        });        jPanel1.add(jButton2);        gridBagConstraints = new java.awt.GridBagConstraints();        gridBagConstraints.gridx = 0;        gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;        gridBagConstraints.weightx = 1.0;        gridBagConstraints.weighty = 1.0;        getContentPane().add(jPanel1, gridBagConstraints);        pack();    }//GEN-END:initComponents    private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton2ActionPerformed       this.setDialogResult( javax.swing.JOptionPane.CANCEL_OPTION);        this.setVisible(false);        this.dispose();    }//GEN-LAST:event_jButton2ActionPerformed    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton1ActionPerformed        text = jTextField1.getText().trim();        this.setDialogResult( javax.swing.JOptionPane.OK_OPTION);        this.setVisible(false);        this.dispose();    }//GEN-LAST:event_jButton1ActionPerformed    public String getText() {        return text;    }    public void setText(String text) {        this.text = text;    }        // Variables declaration - do not modify//GEN-BEGIN:variables    private javax.swing.JButton jButton1;    private javax.swing.JButton jButton2;    private javax.swing.JLabel jLabel1;    private javax.swing.JPanel jPanel1;    private javax.swing.JTextField jTextField1;    // End of variables declaration//GEN-END:variables    }

⌨️ 快捷键说明

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