1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package examples.texteditor;
/** Finder dialog is used to allow the user to search for given string.
*/
public class Finder extends javax.swing.JDialog {
/** Finder constructor.
* It creates modal dialog and displays it.
*/
public Finder(java.awt.Frame parent, javax.swing.JTextArea textEditor) {
super(parent, true);
this.textEditor = textEditor;
initComponents();
pack();
setLocationRelativeTo(parent);
findField.requestFocus();
}
/** 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 FormEditor.
*/
private void initComponents() {//GEN-BEGIN:initComponents
java.awt.GridBagConstraints gridBagConstraints;
findPanel = new javax.swing.JPanel();
findLabel = new javax.swing.JLabel();
findField = new javax.swing.JTextField();
buttonPanel = new javax.swing.JPanel();
findButton = new javax.swing.JButton();
closeButton = new javax.swing.JButton();
getContentPane().setLayout(new java.awt.GridBagLayout());
setTitle("Find");
addWindowListener(new java.awt.event.WindowAdapter() {
public void windowClosing(java.awt.event.WindowEvent evt) {
closeDialog(evt);
}
});
getAccessibleContext().setAccessibleName("Find Dialog");
getAccessibleContext().setAccessibleDescription("Find dialog.");
findPanel.setLayout(new java.awt.GridBagLayout());
findLabel.setLabelFor(findField);
findLabel.setText("Find text:");
findPanel.add(findLabel, new java.awt.GridBagConstraints());
findLabel.getAccessibleContext().setAccessibleDescription("Find text.");
findField.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
findFieldActionPerformed(evt);
}
});
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
gridBagConstraints.weightx = 1.0;
gridBagConstraints.insets = new java.awt.Insets(0, 5, 0, 0);
findPanel.add(findField, gridBagConstraints);
findField.getAccessibleContext().setAccessibleName("Find Field");
findField.getAccessibleContext().setAccessibleDescription("Find field.");
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
gridBagConstraints.insets = new java.awt.Insets(11, 12, 0, 11);
getContentPane().add(findPanel, gridBagConstraints);
buttonPanel.setLayout(new java.awt.GridBagLayout());
findButton.setMnemonic('f');
findButton.setText("Find");
findButton.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
findButtonActionPerformed(evt);
}
});
buttonPanel.add(findButton, new java.awt.GridBagConstraints());
closeButton.setMnemonic('c');
closeButton.setText("Close");
closeButton.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
closeButtonActionPerformed(evt);
}
});
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.insets = new java.awt.Insets(0, 5, 0, 0);
buttonPanel.add(closeButton, gridBagConstraints);
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridx = 0;
gridBagConstraints.gridy = 1;
gridBagConstraints.anchor = java.awt.GridBagConstraints.SOUTHEAST;
gridBagConstraints.insets = new java.awt.Insets(17, 12, 11, 11);
getContentPane().add(buttonPanel, gridBagConstraints);
}//GEN-END:initComponents
/** This method is called when ENTER is pressed in Find text field.
* If the field contains some text, it invokes Find button action, otherwise does nothing.
* @param evt ActionEvent instance passed from actionPerformed event.
*/
private void findFieldActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_findFieldActionPerformed
if (findField.getText().trim().length() > 0)
findButton.doClick();
}//GEN-LAST:event_findFieldActionPerformed
/** This method is called when Find button is pressed.
* If the field contains some text, it sets the caret position to the searched word, otherwise does nothing.
* @param evt ActionEvent instance passed from actionPerformed event.
*/
private void findButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_findButtonActionPerformed
// Add your handling code here:
String text = textEditor.getText();
String textToFind = findField.getText();
if (!"".equals(textToFind)) {
int index = text.indexOf(textToFind);
if (index != -1) {
textEditor.setCaretPosition(index);
closeDialog(null);
} else {
java.awt.Toolkit.getDefaultToolkit().beep();
}
}
}//GEN-LAST:event_findButtonActionPerformed
/** This method is called when Close button is pressed.
* It closes the Finder dialog.
* @param evt ActionEvent instance passed from actionPerformed event.
*/
private void closeButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_closeButtonActionPerformed
closeDialog(null);
}//GEN-LAST:event_closeButtonActionPerformed
/** This method is called when the dialog is closed.
* @param evt WindowEvent instance passed from windowClosing event.
*/
private void closeDialog(java.awt.event.WindowEvent evt) {//GEN-FIRST:event_closeDialog
setVisible(false);
dispose();
}//GEN-LAST:event_closeDialog
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JPanel buttonPanel;
private javax.swing.JButton closeButton;
private javax.swing.JButton findButton;
private javax.swing.JTextField findField;
private javax.swing.JLabel findLabel;
private javax.swing.JPanel findPanel;
// End of variables declaration//GEN-END:variables
private javax.swing.JTextArea textEditor;
}
|