JTextField, установить позицию каретки в конец ввода без выделения всей строки - PullRequest
1 голос
/ 16 февраля 2012

Я действительно сбит с толку, потому что думал, что решил эту проблему.У меня есть пользовательский JDialog, где пользователь вводит уравнение, и есть кнопки для добавления специальных символов для ввода в месте расположения курсора.Вот функция, которую я должен добавить специальный символ:

private void addSymbol(String symbol) {

    int pos = input.getCaretPosition();
    String currInput = input.getText();
    input.setText(currInput.subSequence(0, pos) + symbol
            + currInput.subSequence(pos, currInput.length()));
    input.requestFocus();
    input.setCaretPosition(pos+1);

}

Я работаю в Netbeans, и вчера эта функция работала, как ожидалось.Вы нажимаете кнопку, символ добавляется в позицию курсора, и курсор перемещается сразу после нового символа, что позволяет вам продолжать ввод без прерывания, даже если добавленный символ находится в конце строки.Сегодня я пытался скопировать свой код в проект другого типа, поэтому я несколько раз переименовал рабочий проект, прежде чем бросить и вернуть старое имя.

Теперь, когда я пытаюсь добавить специальный символ в конце ввода, выделяется вся строка ввода, так что очень легко набрать что-то, добавить символ, затем продолжать печатать и случайно перезаписывать все, что вы простовход.Он отлично работает, когда вы добавляете символ в середине строки.Я попытался сделать чистую сборку, перезапустить NetBeans и удалил различные части этой функции, чтобы убедиться, что версия, которую я видел, была на самом деле вызываемой (у меня был инцидент, которого раньше не было, так что теперь япараноик).Кто-нибудь знает, что может происходить или как установить курсор в конце строки, не выделяя ее?

РЕДАКТИРОВАТЬ: Вот тестовый код

GetExpressionDialog.java

package bepe;

public class GetExpressionDialog extends javax.swing.JDialog {

    /** Creates new form GetExpressionDialog */
    public GetExpressionDialog(java.awt.Frame parent, boolean modal) {
        super(parent, modal);
        initComponents();
    }

    /** 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.
     */
    @SuppressWarnings("unchecked")
    // <editor-fold defaultstate="collapsed" desc="Generated Code">                          
    private void initComponents() {

        input = new javax.swing.JTextField();
        andButton = new javax.swing.JButton();
        orButton = new javax.swing.JButton();
        stileButton = new javax.swing.JButton();
        messageLabel = new javax.swing.JLabel();
        submitButton = new javax.swing.JButton();
        notButton = new javax.swing.JButton();
        impliesButton = new javax.swing.JButton();

        setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
        addWindowListener(new java.awt.event.WindowAdapter() {
            public void windowClosing(java.awt.event.WindowEvent evt) {
                formWindowClosing(evt);
            }
        });

        andButton.setText("∧");
        andButton.setToolTipText("You can also type \"&\"");
        andButton.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                andButtonActionPerformed(evt);
            }
        });

        orButton.setText("∨");
        orButton.setToolTipText("You can also type \"|\"");
        orButton.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                orButtonActionPerformed(evt);
            }
        });

        stileButton.setText("⊢");
        stileButton.setToolTipText("You can also type \"|-\"");
        stileButton.setMargin(new java.awt.Insets(0, 0, 0, 0));
        stileButton.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                stileButtonActionPerformed(evt);
            }
        });

        messageLabel.setText("Enter the sequent you would like to prove:");

        submitButton.setText("Submit");
        submitButton.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                submitButtonActionPerformed(evt);
            }
        });

        notButton.setText("¬");
        notButton.setToolTipText("You can also type \"!\"");
        notButton.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                notButtonActionPerformed(evt);
            }
        });

        impliesButton.setText("→");
        impliesButton.setToolTipText("You can also type \"->\"");
        impliesButton.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                impliesButtonActionPerformed(evt);
            }
        });

        org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
        getContentPane().setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
            .add(layout.createSequentialGroup()
                .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                    .add(layout.createSequentialGroup()
                        .add(20, 20, 20)
                        .add(messageLabel))
                    .add(layout.createSequentialGroup()
                        .add(20, 20, 20)
                        .add(input, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 482, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
                    .add(layout.createSequentialGroup()
                        .addContainerGap()
                        .add(stileButton, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 40, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                        .add(notButton, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 40, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                        .add(andButton, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 40, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                        .add(orButton, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 40, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                        .add(impliesButton, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 40, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                        .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED, 200, Short.MAX_VALUE)
                        .add(submitButton)))
                .addContainerGap())
        );
        layout.setVerticalGroup(
            layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
            .add(layout.createSequentialGroup()
                .addContainerGap()
                .add(messageLabel)
                .add(8, 8, 8)
                .add(input, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                    .add(stileButton)
                    .add(notButton)
                    .add(andButton)
                    .add(orButton)
                    .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
                        .add(impliesButton)
                        .add(submitButton)))
                .addContainerGap())
        );

        pack();
    }// </editor-fold>                        

    private void stileButtonActionPerformed(java.awt.event.ActionEvent evt) {                                            

        addSymbol("⊢");

    }                                           

    private void andButtonActionPerformed(java.awt.event.ActionEvent evt) {                                          

        addSymbol("∧");

    }                                         

    private void orButtonActionPerformed(java.awt.event.ActionEvent evt) {                                         

        addSymbol("∨");

    }                                        

    private void submitButtonActionPerformed(java.awt.event.ActionEvent evt) {                                             

        dispose();

    }                                            

    private void notButtonActionPerformed(java.awt.event.ActionEvent evt) {                                          

        addSymbol("¬");

    }                                         

    private void impliesButtonActionPerformed(java.awt.event.ActionEvent evt) {                                              

        addSymbol("→");

    }                                             

    private void formWindowClosing(java.awt.event.WindowEvent evt) {                                   

        input.setText("");

    }                                  

    private void addSymbol(String symbol) {

        int pos = input.getCaretPosition();
        String currInput = input.getText();
        input.setText(currInput.subSequence(0, pos) + symbol
                + currInput.subSequence(pos, currInput.length()));
        input.requestFocus();
        input.setCaretPosition(pos+1);

    }

    public String getText() {
        return input.getText();
    }

    public javax.swing.JLabel getMessage() {
        return messageLabel;
    }

    /**
     * @param args the command line arguments
     */
    public static void main(String args[]) {
        /* Set the Nimbus look and feel */
        //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
        /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
         * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
         */
        try {
            for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
                if ("Nimbus".equals(info.getName())) {
                    javax.swing.UIManager.setLookAndFeel(info.getClassName());
                    break;
                }
            }
        } catch (ClassNotFoundException ex) {
            java.util.logging.Logger.getLogger(GetExpressionDialog.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (InstantiationException ex) {
            java.util.logging.Logger.getLogger(GetExpressionDialog.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (IllegalAccessException ex) {
            java.util.logging.Logger.getLogger(GetExpressionDialog.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (javax.swing.UnsupportedLookAndFeelException ex) {
            java.util.logging.Logger.getLogger(GetExpressionDialog.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        }
        //</editor-fold>

        /* Create and display the dialog */
        java.awt.EventQueue.invokeLater(new Runnable() {

            public void run() {
                GetExpressionDialog dialog = new GetExpressionDialog(new javax.swing.JFrame(), true);
                dialog.addWindowListener(new java.awt.event.WindowAdapter() {

                    @Override
                    public void windowClosing(java.awt.event.WindowEvent e) {
                        System.exit(0);
                    }
                });
                dialog.setVisible(true);
            }
        });
    }
    // Variables declaration - do not modify                     
    private javax.swing.JButton andButton;
    private javax.swing.JButton impliesButton;
    private javax.swing.JTextField input;
    private javax.swing.JLabel messageLabel;
    private javax.swing.JButton notButton;
    private javax.swing.JButton orButton;
    private javax.swing.JButton stileButton;
    private javax.swing.JButton submitButton;
    // End of variables declaration

test.java

package bepe;

public class test {

    public test(){}

    public static void main(String[] args) {

        GetExpressionDialog dialog = new GetExpressionDialog(null, true);
        dialog.setVisible(true);

        String input = dialog.getText();
        if (input.isEmpty()) return;

    }
}

1 Ответ

3 голосов
/ 16 февраля 2012

Ваш код для вставки специального символа не самый эффективный.Вам не нужно заменять весь текст.Просто используйте:

textField.replaceSelection( symbol );

Кроме того, в следующий раз отправьте SSCCE , который демонстрирует проблемуНет необходимости размещать 300 строк кода для простой задачи фокуса.Кроме того, размещение кода с классами, отличными от JDK, также не помогает нам запускать код.

...