alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *                 Sun Public License Notice
 *
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 *
 * The Original Code is NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun
 * Microsystems, Inc. All Rights Reserved.
 */

package org.netbeans.modules.vcscore.ui.views.types;


import java.io.*;
import java.util.*;
import javax.swing.*;
import java.awt.event.*;

import org.openide.util.*;
import org.openide.explorer.*;


import org.netbeans.modules.vcscore.ui.views.*;

/**
 *
 * @author  mkleint
 * @version
 */
public class LogTreeInfoPanel extends AbstractTreeInfoPanel implements ChildrenInfoFilter {
    
    private LogInfoPanel logPanel;
    private JTextField txFilter;
    private JLabel lblFilter;
    private JLabel lblTitle;
    private String filterString = null;
    private int totalCount = 0;
    private int selectedCount = 0;
    private javax.swing.JLabel lblCount;   

    /** Creates new form StatusTreeInfoPanel */
    public LogTreeInfoPanel() {
        super();
//        initPanelComponents();
        postInit();
 //       recreateModel();
    }
    
    
    protected boolean hasFilter() {
        return true;
    }
    
    protected JComponent createFilterComponent() {
        JPanel panel = new javax.swing.JPanel();
        lblTitle = new javax.swing.JLabel();
        lblFilter = new javax.swing.JLabel();
        txFilter = new javax.swing.JTextField();
        lblCount = new javax.swing.JLabel();
        panel.setLayout(new java.awt.GridBagLayout());
        java.awt.GridBagConstraints gridBagConstraints1;
        
        lblTitle.setText(NbBundle.getBundle(LogTreeInfoPanel.class).getString("LogTreeInfoPanel.lblTitle.text")); // NOI18N
        gridBagConstraints1 = new java.awt.GridBagConstraints();
        gridBagConstraints1.gridwidth = java.awt.GridBagConstraints.REMAINDER;
        gridBagConstraints1.weightx = 1.0;
        gridBagConstraints1.anchor = java.awt.GridBagConstraints.WEST;
        gridBagConstraints1.insets = new java.awt.Insets (12, 12, 0, 11);
        panel.add(lblTitle, gridBagConstraints1);
        
        lblFilter.setText(NbBundle.getBundle(LogTreeInfoPanel.class).getString("LogTreeInfoPanel.filterLog")); // NOI18N
        lblFilter.setDisplayedMnemonic(NbBundle.getBundle(LogTreeInfoPanel.class).getString("LogTreeInfoPanel.filterLog.mnemonic").charAt(0)); // NOI18N
        lblFilter.setLabelFor(txFilter);
        gridBagConstraints1 = new java.awt.GridBagConstraints();
        gridBagConstraints1.gridx = 0;
        gridBagConstraints1.gridy = 1;
        gridBagConstraints1.anchor = java.awt.GridBagConstraints.WEST;
        gridBagConstraints1.insets = new java.awt.Insets(5, 24, 11, 0);
        panel.add(lblFilter, gridBagConstraints1);
        
        //txFilter.setPreferredSize(new java.awt.Dimension(100, 20));
        txFilter.setText(""); // NOI18N
        txFilter.setMinimumSize(new java.awt.Dimension(100, 20));
        gridBagConstraints1 = new java.awt.GridBagConstraints();
        gridBagConstraints1.gridx = 1;
        gridBagConstraints1.gridy = 1;
        gridBagConstraints1.anchor = java.awt.GridBagConstraints.WEST;
        gridBagConstraints1.fill = java.awt.GridBagConstraints.HORIZONTAL;
        gridBagConstraints1.insets = new java.awt.Insets(5, 12, 11, 11);
        panel.add(txFilter, gridBagConstraints1);
        
        lblCount.setText(NbBundle.getBundle(LogTreeInfoPanel.class).getString("LogTreeInfoPanel.lblCount")); // NOI18N
        gridBagConstraints1 = new java.awt.GridBagConstraints();
        gridBagConstraints1.gridwidth = java.awt.GridBagConstraints.REMAINDER;
        gridBagConstraints1.gridx = 0;
        gridBagConstraints1.gridy = 2;
        gridBagConstraints1.anchor = java.awt.GridBagConstraints.WEST;
        gridBagConstraints1.insets = new java.awt.Insets(5, 12, 2, 11);
        panel.add(lblCount, gridBagConstraints1);
 

//---- ENDO OF COPIED STUFF --- ===================================================
// =========================================================================
        txFilter.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent evt) {
                filterLogMessages();
            }    
        });      
        return panel;
    }    
    
  protected JComponent initPanel() {
//      initClearInfo();
      logPanel = new LogInfoPanel();
//      setClearPanel();
      return logPanel;
  }
  
  public void addNotify() {
      super.addNotify();
      // run under mutex
      
      ExplorerManager em = ExplorerManager.find(this);
      
      if (em != null) {
          FileVcsInfo info = (FileVcsInfo)em.getRootContext().getCookie(FileVcsInfo.class);
          totalCount = 0;
          selectedCount = 0;
          totalCount = computeChildren(info, true);
          selectedCount = computeChildren(info, false);
          showCounts(totalCount, selectedCount);
      }
  }

  
  private void filterLogMessages() {
      String filter = txFilter.getText(); 
      if (filter.trim().equals("")) filterString = null; // NOI18N
      else filterString = filter;

      ExplorerManager em = ExplorerManager.find (this);
      if (em != null) {
          FileVcsInfo info = (FileVcsInfo)em.getRootContext().getCookie(FileVcsInfo.class);
          totalCount = 0;
          selectedCount = 0;
          info.setChildrenFilter(this);
          totalCount = computeChildren(info, true);
          selectedCount = computeChildren(info, false);
      }
      showCounts(totalCount, selectedCount);
  }    
  
  private void showCounts(int total, int selected) {
      Integer selCount = new Integer(selected);
      Integer totCount = new Integer(total);
      String txt = NbBundle.getMessage(LogTreeInfoPanel.class, "LogTreeInfoPanel.lblCount", // NOI18N
                                selCount.toString(), totCount.toString());
      lblCount.setText(txt);
  }
  
  private int computeChildren(FileVcsInfo parent, boolean total) {
      int count = 0;
      if (parent.getChildren() instanceof FileVcsInfoChildren) {
          FileVcsInfoChildren childs = (FileVcsInfoChildren)parent.getChildren();
          Iterator it;
          if (total) {
              it = childs.getAllKeys();
          } else {
              it = childs.getFilteredKeys();
          }
          while (it.hasNext()) {
              FileVcsInfo info = (FileVcsInfo)it.next();
              if (info.getType().equals(LogInfoPanel.TYPE)) {
                  count = count + 1;
              } else {
                  count = count + computeChildren(info, total);
              }
          }
      }
      return count;
  }
  
  /** the filtering method that tells wheather the info should be included in
   * the set. For unwanted infos returns false.
   */
  public boolean checkFileInfo(FileVcsInfo info) {
      if (filterString == null) {
          return true;
      }
      if (!info.getType().equals(LogInfoPanel.TYPE)) {
          if (info.getType().startsWith(FileVcsInfo.BLANK)) {
              if (((FileVcsInfoChildren)info.getChildren()).getFilteredKeyCount() == 0) {
                  return false;
              }
          }
          return true;
      }
      FileVcsInfo.Composite composite = (FileVcsInfo.Composite)info.getAttribute(LogInfoPanel.REVISIONS_LIST);
      if (composite != null) {
          for (int i = 0; i < composite.getCount(); i++) {
              FileVcsInfo.CompositeItem item = (FileVcsInfo.CompositeItem)composite.getRow(i);
              if (item.getAttributeNonNull(LogInfoPanel.REVISION_MESSAGE).indexOf(filterString) >= 0) {
                  return true;
              }
          }
      }
      return false;
  }
  
}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.