com.scudata.ide.common.control.JWindowList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esproc Show documentation
Show all versions of esproc Show documentation
SPL(Structured Process Language) A programming language specially for structured data computing.
package com.scudata.ide.common.control;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.event.KeyAdapter;
import java.awt.event.KeyEvent;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.io.File;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Vector;
import javax.swing.JInternalFrame;
import javax.swing.JLabel;
import javax.swing.JList;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextField;
import javax.swing.JWindow;
import javax.swing.ListCellRenderer;
import com.scudata.ide.common.GC;
import com.scudata.ide.common.GM;
import com.scudata.ide.common.GV;
import com.scudata.ide.common.IPrjxSheet;
import com.scudata.ide.common.swing.JListEx;
/**
* ?????б????????ڰ?ť??ʾ????ʱ????????ര?ڻ???ʾ?˴???
*
*/
public abstract class JWindowList extends JWindow {
private static final long serialVersionUID = 1L;
/**
* ?????ı???
*/
private JTextField textFilter = new JTextField();
/**
* ?????б??ؼ?
*/
private JListEx listWindow = new JListEx();
/**
* ?ļ?·???б?
*/
private Vector paths = new Vector();
/**
* ?ļ??????б?
*/
private Vector names = new Vector();
/**
* ???˺???ļ?·???б?
*/
private Vector filterPaths = new Vector();
/**
* ???˺???ļ??????б?
*/
private Vector filterNames = new Vector();
/**
* ?Ѿ???ʾ?ڴ??ڹ??????ϵ?·??????
*/
private HashSet existPaths = new HashSet();
private Map typeMap = new HashMap();
private final Color BACK_COLOR = new Color(255, 255, 214);
/**
* ȱʡ?ı???ɫ
*/
private final Color DEFAULT_BACK_COLOR = new JList
© 2015 - 2024 Weber Informatics LLC | Privacy Policy