/* * Copyright 2014 Igor Maznitsa (http://www.igormaznitsa.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 com.igormaznitsa.prol.easygui; import com.igormaznitsa.prol.utils.Utils; import java.awt.Color; import java.awt.event.*; import java.io.*; import java.util.regex.*; import javax.swing.AbstractAction; import javax.swing.JComponent; import javax.swing.JFrame; import javax.swing.KeyStroke; import javax.swing.text.*; /** * The class implements the dialog window shows the help information about prol * libraries because it is a very specialized auxiliary class, it is not * described very precisely * * @author Igor Maznitsa (igor.maznitsa@igormaznitsa.com) */ public final class LibraryInfoDialog extends javax.swing.JDialog { private static final long serialVersionUID = 8821096803790541482L; private static final DefaultHighlighter.DefaultHighlightPainter HIGHLIGHT_PAINTER = new DefaultHighlighter.DefaultHighlightPainter(new Color(0x00CED1)); /** * Creates new form LibraryInfoDialog */ public LibraryInfoDialog(final JFrame parent, final String[] libraries) throws Exception { super(parent, true); initComponents(); textPaneLibText.setText(fillTextInfoFromLibraries(libraries)); textPaneLibText.setCaretPosition(0); textFieldTextToSearch.requestFocus(); this.ButtonClose.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put(KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0), "CloseForm"); this.ButtonClose.getActionMap().put("CloseForm", new AbstractAction() { private static final long serialVersionUID = -5644390861803492172L; @Override public void actionPerformed(final ActionEvent e) { ButtonClose.doClick(); } }); } private String getDocText() { final Document doc = textPaneLibText.getDocument(); try { return doc.getText(0, doc.getLength()); } catch (BadLocationException ex) { return ""; } } private boolean searchTextFromPosition(final Matcher matcher, final int startPos) { textPaneLibText.getHighlighter().removeAllHighlights(); if (matcher.find(startPos)) { final int foundStart = matcher.start(); final int foundEnd = matcher.end(); textFieldTextToSearch.setForeground(Color.green.darker()); // find caret position // textPaneLibText.setCaretPosition(0); // textPaneLibText.setCaretPosition(foundStart); try{ textPaneLibText.getHighlighter().addHighlight(foundStart, foundEnd, HIGHLIGHT_PAINTER); }catch(BadLocationException ex){ } textPaneLibText.select(foundStart,foundEnd); return true; } else { textFieldTextToSearch.setForeground(Color.red); } return false; } private void searchCurrentTextFromPosition(final boolean fromStart) { try { String textToSearch = textFieldTextToSearch.getText().trim(); if (textToSearch.isEmpty()) { return; } final Pattern patternToFindText = UIUtils.makePattern(textToSearch); int curIndex = textPaneLibText.getCaretPosition(); final Matcher matcher = patternToFindText.matcher(getDocText()); if (!searchTextFromPosition(matcher, curIndex)) { searchTextFromPosition(matcher, 0); } } catch (Exception exx) { //exx.printStackTrace(); } } public String fillTextInfoFromLibraries(final String[] libraries) throws Exception { final ByteArrayOutputStream baos = new ByteArrayOutputStream(16384); final PrintStream out = new PrintStream(baos); for (int li = 0; li < libraries.length; li++) { final Class<?> libraryClass = Class.forName(libraries[li]); Utils.printPredicatesForLibrary(out, libraryClass); if (li < libraries.length) { out.println(":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::\r\n\r\n"); } } out.close(); return new String(baos.toByteArray(), "UTF-8"); } /** * 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() { java.awt.GridBagConstraints gridBagConstraints; jScrollPane1 = new javax.swing.JScrollPane(); textPaneLibText = new javax.swing.JTextPane(); ButtonClose = new javax.swing.JButton(); textFieldTextToSearch = new javax.swing.JTextField(); labelTextToSearch = new javax.swing.JLabel(); setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE); setTitle("Information about libraries"); setLocationByPlatform(true); getContentPane().setLayout(new java.awt.GridBagLayout()); textPaneLibText.setEditable(false); textPaneLibText.setForeground(new java.awt.Color(0, 0, 0)); textPaneLibText.setCaretColor(new java.awt.Color(153, 153, 255)); jScrollPane1.setViewportView(textPaneLibText); gridBagConstraints = new java.awt.GridBagConstraints(); gridBagConstraints.gridx = 0; gridBagConstraints.gridy = 0; gridBagConstraints.gridwidth = 3; gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH; gridBagConstraints.weightx = 1000.0; gridBagConstraints.weighty = 1000.0; getContentPane().add(jScrollPane1, gridBagConstraints); ButtonClose.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/igormaznitsa/prol/easygui/icons/cross.png"))); // NOI18N ButtonClose.setText("Close"); ButtonClose.setToolTipText("Close the dialog"); ButtonClose.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { ButtonCloseActionPerformed(evt); } }); gridBagConstraints = new java.awt.GridBagConstraints(); gridBagConstraints.gridx = 2; gridBagConstraints.gridy = 1; gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH; gridBagConstraints.anchor = java.awt.GridBagConstraints.NORTHWEST; gridBagConstraints.insets = new java.awt.Insets(0, 8, 0, 0); getContentPane().add(ButtonClose, gridBagConstraints); textFieldTextToSearch.setFont(new java.awt.Font("Dialog", 1, 12)); // NOI18N textFieldTextToSearch.setToolTipText("Enter word to find and press enter (? and * wildcard characters are supported)"); textFieldTextToSearch.addKeyListener(new java.awt.event.KeyAdapter() { public void keyReleased(java.awt.event.KeyEvent evt) { textFieldTextToSearchKeyReleased(evt); } }); gridBagConstraints = new java.awt.GridBagConstraints(); gridBagConstraints.gridx = 1; gridBagConstraints.gridy = 1; gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH; gridBagConstraints.anchor = java.awt.GridBagConstraints.NORTHWEST; gridBagConstraints.weightx = 1000.0; getContentPane().add(textFieldTextToSearch, gridBagConstraints); labelTextToSearch.setText("Text to search:"); gridBagConstraints = new java.awt.GridBagConstraints(); gridBagConstraints.gridx = 0; gridBagConstraints.gridy = 1; gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH; gridBagConstraints.anchor = java.awt.GridBagConstraints.NORTHWEST; gridBagConstraints.insets = new java.awt.Insets(0, 8, 0, 8); getContentPane().add(labelTextToSearch, gridBagConstraints); pack(); }// </editor-fold>//GEN-END:initComponents private void ButtonCloseActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_ButtonCloseActionPerformed setVisible(false); }//GEN-LAST:event_ButtonCloseActionPerformed private void textFieldTextToSearchKeyReleased(java.awt.event.KeyEvent evt) {//GEN-FIRST:event_textFieldTextToSearchKeyReleased if (evt.getKeyCode() == KeyEvent.VK_ENTER) { searchCurrentTextFromPosition(false); } }//GEN-LAST:event_textFieldTextToSearchKeyReleased // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JButton ButtonClose; private javax.swing.JScrollPane jScrollPane1; private javax.swing.JLabel labelTextToSearch; private javax.swing.JTextField textFieldTextToSearch; private javax.swing.JTextPane textPaneLibText; // End of variables declaration//GEN-END:variables }