/plugins/ProjectViewer/branches/projectviewer_2_0/projectviewer/vpt/VPTSelectionListener.java

# · Java · 219 lines · 112 code · 36 blank · 71 comment · 32 complexity · f3d48da824e00934328d683254203ec0 MD5 · raw file

  1. /*
  2. * :tabSize=4:indentSize=4:noTabs=false:
  3. * :folding=explicit:collapseFolds=1:
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License
  7. * as published by the Free Software Foundation; either version 2
  8. * of the License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. */
  19. package projectviewer.vpt;
  20. //{{{ Imports
  21. import java.io.IOException;
  22. import java.awt.event.MouseEvent;
  23. import java.awt.event.MouseListener;
  24. import javax.swing.JTree;
  25. import javax.swing.tree.TreePath;
  26. import javax.swing.event.TreeSelectionEvent;
  27. import javax.swing.event.TreeSelectionListener;
  28. import org.gjt.sp.util.Log;
  29. import org.gjt.sp.jedit.jEdit;
  30. import org.gjt.sp.jedit.Buffer;
  31. import projectviewer.ProjectViewer;
  32. import projectviewer.ProjectManager;
  33. //}}}
  34. /**
  35. * Listens to the project JTree and responds to file selections.
  36. *
  37. * @author <A HREF="mailto:burton@relativity.yi.org">Kevin A. Burton</A>
  38. * @version $Id: VPTSelectionListener.java 6020 2003-01-21 20:35:48Z vanza $
  39. */
  40. public final class VPTSelectionListener implements TreeSelectionListener, MouseListener {
  41. //{{{ Instance Variables
  42. private ProjectViewer viewer;
  43. private int lastClickButton;
  44. private long lastClickTime;
  45. private Object lastClickTarget;
  46. private boolean reportsClickCountCorrectly;
  47. //}}}
  48. //{{{ Constructor
  49. /**
  50. * Create a new <code>ProjectTreeSelectionListener
  51. *
  52. * @param aViewer Description of Parameter
  53. * @param aLauncher Description of Parameter
  54. */
  55. public VPTSelectionListener(ProjectViewer aViewer) {
  56. viewer = aViewer;
  57. lastClickTime = 0L;
  58. reportsClickCountCorrectly = false;
  59. } //}}}
  60. //{{{ MouseListener interfaces
  61. /**
  62. * Determines when the user clicks on the JTree.
  63. *
  64. * @param evt Description of Parameter
  65. */
  66. public void mouseClicked(MouseEvent evt) {
  67. if(isDoubleClick(evt) && isNodeClicked(evt)) {
  68. VPTNode node = viewer.getSelectedNode();
  69. if(node.canOpen()) {
  70. if(node.isOpened()) {
  71. if (node.getNodePath().equals(viewer.getView().getBuffer().getPath())) {
  72. node.close();
  73. } else {
  74. // try to set the selected node's buffer as the active
  75. // buffer. Since "open" does not necessarily mean "open
  76. // in jEdit", this falls back to "node.close()" if no
  77. // buffer is found.
  78. String path = null;
  79. if (node.isFile()) {
  80. try {
  81. path = ((VPTFile)node).getFile().getCanonicalPath();
  82. } catch (IOException ioe) {
  83. //shouldn't happen
  84. Log.log(Log.ERROR, this, ioe);
  85. }
  86. } else {
  87. path = node.getNodePath();
  88. }
  89. Buffer b = jEdit.getBuffer(path);
  90. if (b != null) {
  91. viewer.getView().setBuffer(b);
  92. } else {
  93. node.close();
  94. }
  95. }
  96. } else {
  97. node.open();
  98. }
  99. }
  100. }
  101. }
  102. public void mousePressed(MouseEvent evt) {
  103. if (viewer.getRoot().isRoot()) {
  104. JTree tree = (JTree) evt.getSource();
  105. TreePath path = tree.getClosestPathForLocation(evt.getX(), evt.getY());
  106. VPTNode node = (VPTNode) path.getLastPathComponent();
  107. if (node != null && node.isProject()) {
  108. if (!ProjectManager.getInstance().isLoaded(node.getName())) {
  109. viewer.setStatus("Loading project \"" + node.getName() + "\"");
  110. ProjectManager.getInstance().getProject(node.getName());
  111. ProjectViewer.nodeStructureChanged(node);
  112. }
  113. }
  114. }
  115. }
  116. public void mouseReleased(MouseEvent evt) { }
  117. public void mouseEntered(MouseEvent evt) { }
  118. public void mouseExited(MouseEvent evt) { }
  119. //}}}
  120. //{{{ TreeSelectionListener interface
  121. /**
  122. * Receive notification that the tree selection has changed.
  123. *
  124. * @param e Description of Parameter
  125. */
  126. public void valueChanged(TreeSelectionEvent e) {
  127. lastClickTarget = null;
  128. VPTNode node = viewer.getSelectedNode();
  129. if(node == null) return;
  130. //viewer.enableButtonsForNode(node);
  131. viewer.setStatus(node.toString());
  132. }
  133. //}}}
  134. //{{{ isDoubleClick(MouseEvent) method
  135. /**
  136. * Because IBM's JDK doesn't support <code>getClickCount()</code> for <code>JTree</code>
  137. * properly, we have to do this.
  138. *
  139. * @param evt Description of Parameter
  140. * @return The doubleClick value
  141. */
  142. private boolean isDoubleClick(MouseEvent evt) {
  143. if(reportsClickCountCorrectly)
  144. return evt.getClickCount() == 2;
  145. if(evt.getClickCount() == 2) {
  146. reportsClickCountCorrectly = true;
  147. return true;
  148. }
  149. TreePath path = viewer.getCurrentTree().getPathForLocation(evt.getX(), evt.getY());
  150. if(path == null) {
  151. lastClickTarget = null;
  152. return false;
  153. }
  154. Object target = path.getLastPathComponent();
  155. if(target == lastClickTarget &&
  156. target == viewer.getSelectedNode() &&
  157. lastClickButton == evt.getModifiers() &&
  158. (System.currentTimeMillis() - lastClickTime < 500L)) {
  159. lastClickTarget = null;
  160. return true;
  161. }
  162. lastClickButton = evt.getModifiers();
  163. lastClickTarget = target;
  164. lastClickTime = System.currentTimeMillis();
  165. return false;
  166. } //}}}
  167. //{{{ isNodeClicked(MouseEvent) method
  168. /**
  169. * Returns <code>true</code> if a node is selected and the given
  170. * mouse event points to the specified node.
  171. *
  172. * @param evt Description of Parameter
  173. * @return The fileClicked value
  174. */
  175. private boolean isNodeClicked(MouseEvent evt) {
  176. VPTNode selectedNode = viewer.getSelectedNode();
  177. TreePath path = viewer.getCurrentTree().getPathForLocation(evt.getX(), evt.getY());
  178. if(path == null)
  179. return false;
  180. Object clickedNode = path.getLastPathComponent();
  181. return (selectedNode == clickedNode);
  182. } //}}}
  183. }