/plugins/Tags/tags/Tags-3.1.0/tags/ChooseTagListDockable.java

# · Java · 177 lines · 140 code · 13 blank · 24 comment · 19 complexity · c551f038c770f4719d829062227b977d MD5 · raw file

  1. /*
  2. * TagsPlugin.java
  3. * Copyright (c) 2001, 2002 Kenrick Drew (kdrew@earthlink.net)
  4. * Copyright (c) 2003, 2004 Ollie Rutherfurd (oliver@jedit.org)
  5. * Copyright (c) 2007 Shlomy Reinstein (shlomy@users.sourceforge.net)
  6. *
  7. * This file is part of the Tags plugin.
  8. *
  9. * TagsPlugin is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version 2
  12. * of the License, or any later version.
  13. *
  14. * TagsPlugin is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  22. *
  23. * $Id: TagsPlugin.java 10867 2007-10-10 13:01:00Z shlomy $
  24. */
  25. package tags;
  26. import java.awt.BorderLayout;
  27. import java.awt.event.ActionEvent;
  28. import java.awt.event.ActionListener;
  29. import java.awt.event.KeyAdapter;
  30. import java.awt.event.KeyEvent;
  31. import java.awt.event.MouseAdapter;
  32. import java.awt.event.MouseEvent;
  33. import java.util.HashMap;
  34. import java.util.HashSet;
  35. import java.util.Iterator;
  36. import java.util.Map;
  37. import java.util.Vector;
  38. import javax.swing.JMenu;
  39. import javax.swing.JMenuBar;
  40. import javax.swing.JMenuItem;
  41. import javax.swing.JPanel;
  42. import javax.swing.JScrollPane;
  43. import org.gjt.sp.jedit.View;
  44. import org.gjt.sp.jedit.gui.DefaultFocusComponent;
  45. @SuppressWarnings("serial")
  46. public class ChooseTagListDockable extends JPanel
  47. implements DefaultFocusComponent {
  48. private View view;
  49. private ChooseTagList chooseTagList = null;
  50. private JScrollPane scroller = null;
  51. private JMenu filterMenu = null;
  52. private Vector<TagLine> origTagLines = null;
  53. public ChooseTagListDockable(View view) {
  54. super(new BorderLayout());
  55. this.view = view;
  56. JMenuBar menuBar = new JMenuBar();
  57. add(menuBar, BorderLayout.NORTH);
  58. filterMenu = new JMenu("Filter");
  59. menuBar.add(filterMenu);
  60. setTagLines(new Vector<TagLine>());
  61. }
  62. public void setTagLines(Vector<TagLine> tagLines) {
  63. origTagLines = tagLines;
  64. updateTagLines(tagLines);
  65. Map<String, HashSet<String>> attributes =
  66. new HashMap<String, HashSet<String>>();
  67. for (int i = 0; i < tagLines.size(); i++) {
  68. TagLine l = (TagLine) tagLines.get(i);
  69. Vector<ExuberantInfoItem> items = l.getExuberantInfoItems();
  70. for (int j = 0; j < items.size(); j++) {
  71. ExuberantInfoItem item = (ExuberantInfoItem) items.get(j);
  72. String [] parts = item.toString().split(":", 2);
  73. if (parts.length < 2)
  74. continue;
  75. HashSet<String> set = attributes.get(parts[0]);
  76. if (set == null) {
  77. set = new HashSet<String>();
  78. attributes.put(parts[0], set);
  79. }
  80. set.add(parts[1]);
  81. }
  82. }
  83. filterMenu.removeAll();
  84. Iterator<String> it = attributes.keySet().iterator();
  85. while (it.hasNext()) {
  86. String att = it.next();
  87. HashSet<String> valueSet = attributes.get(att);
  88. if (valueSet.size() > 1 && valueSet.size() <= 20) {
  89. JMenu attrMenu = new JMenu(att);
  90. filterMenu.add(attrMenu);
  91. Iterator<String> valueIt = valueSet.iterator();
  92. while (valueIt.hasNext()) {
  93. String val = valueIt.next();
  94. JMenuItem valItem = new JMenuItem(val);
  95. attrMenu.add(valItem);
  96. valItem.addActionListener(new FilterHandler(att, val));
  97. }
  98. }
  99. }
  100. revalidate();
  101. }
  102. private void updateTagLines(Vector<TagLine> tagLines) {
  103. if (scroller != null)
  104. remove(scroller);
  105. chooseTagList = new ChooseTagList(tagLines);
  106. scroller = new JScrollPane(chooseTagList,
  107. JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
  108. JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
  109. add(scroller, BorderLayout.CENTER);
  110. chooseTagList.addMouseListener(new MouseAdapter() {
  111. @Override
  112. public void mouseClicked(MouseEvent e) {
  113. selected();
  114. }
  115. });
  116. chooseTagList.addKeyListener(new KeyAdapter() {
  117. @Override
  118. public void keyTyped(KeyEvent e) {
  119. if (e.getKeyChar() >= '1' && e.getKeyChar() <= '9') {
  120. int selected = Character.getNumericValue(e.getKeyChar()) - 1;
  121. if (selected >= 0 &&
  122. selected < chooseTagList.getModel().getSize())
  123. {
  124. chooseTagList.setSelectedIndex(selected);
  125. selected();
  126. e.consume();
  127. }
  128. }
  129. }
  130. });
  131. }
  132. private void selected()
  133. {
  134. TagLine tagLine = (TagLine)chooseTagList.getSelectedValue();
  135. TagsPlugin.goToTagLine(view, tagLine, false, tagLine.getTag());
  136. }
  137. public void focusOnDefaultComponent() {
  138. if (chooseTagList != null)
  139. chooseTagList.requestFocus();
  140. }
  141. private class FilterHandler implements ActionListener {
  142. private String att;
  143. private String val;
  144. public FilterHandler(String attr, String value) {
  145. att = attr;
  146. val = value;
  147. }
  148. public void actionPerformed(ActionEvent e) {
  149. filter(att, val);
  150. }
  151. }
  152. public void filter(String att, String val) {
  153. AttributeValueFilter filter = new AttributeValueFilter(att, val);
  154. Vector<TagLine> tagLines = origTagLines;
  155. Vector<TagLine> filtered = new Vector<TagLine>();
  156. for (int i = 0; i < tagLines.size(); i++) {
  157. TagLine l = (TagLine) tagLines.get(i);
  158. if (filter.pass(l))
  159. filtered.add(l);
  160. }
  161. updateTagLines(filtered);
  162. revalidate();
  163. }
  164. }