/* * Copyright 2008 Ayman Al-Sairafi ayman.alsairafi@gmail.com * * Licensed 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 jsyntaxpane.actions; import javax.swing.JOptionPane; import javax.swing.text.JTextComponent; /** * A simple dialog to prompt for a line number and go to it * @author Ayman Al-Sairafi */ public class GotoLineDialog extends javax.swing.JDialog { private JTextComponent text; /** * Creates new form GotoLineDialog * @param text */ public GotoLineDialog(JTextComponent text) { super(ActionUtils.getFrameFor(text), false); initComponents(); this.text = text; setLocationRelativeTo(text.getRootPane()); } /** 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">//GEN-BEGIN:initComponents private void initComponents() { jCmbLineNumbers = new javax.swing.JComboBox(); jBtnOk = new javax.swing.JButton(); setTitle("Goto Line"); setModal(true); setName(""); // NOI18N setResizable(false); jCmbLineNumbers.setEditable(true); jCmbLineNumbers.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jCmbLineNumbersActionPerformed(evt); } }); jBtnOk.setText("Go"); jBtnOk.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jBtnOkActionPerformed(evt); } }); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addContainerGap() .addComponent(jCmbLineNumbers, javax.swing.GroupLayout.PREFERRED_SIZE, 104, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(jBtnOk, javax.swing.GroupLayout.DEFAULT_SIZE, 47, Short.MAX_VALUE) .addContainerGap()) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addContainerGap() .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(jCmbLineNumbers, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jBtnOk)) .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) ); pack(); }// </editor-fold>//GEN-END:initComponents private void jBtnOkActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jBtnOkActionPerformed setTextPos(); }//GEN-LAST:event_jBtnOkActionPerformed private void setTextPos() { Object line = jCmbLineNumbers.getSelectedItem(); if (line != null) { try { int lineNr = Integer.parseInt(line.toString()); int pos = ActionUtils.getDocumentPosition(text, lineNr, 0); ActionUtils.insertIntoCombo(jCmbLineNumbers, line); text.setCaretPosition(pos); setVisible(false); } catch (NumberFormatException ex) { JOptionPane.showMessageDialog(this, "Invalid Number: " + line, "Number Error", JOptionPane.ERROR_MESSAGE); } } } private void jCmbLineNumbersActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jCmbLineNumbersActionPerformed // FIXME: this is called twice by the action, skip it setTextPos(); // FIXME: Add ESC key listener to hide the dialog }//GEN-LAST:event_jCmbLineNumbersActionPerformed // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JButton jBtnOk; private javax.swing.JComboBox jCmbLineNumbers; // End of variables declaration//GEN-END:variables }