/plugins/ProjectViewer/tags/pv_2_1_3_2/projectviewer/action/Action.java

# · Java · 171 lines · 71 code · 20 blank · 80 comment · 11 complexity · 5107629c2f7710e52e3d1a4c5f221e3b 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.action;
  20. //{{{ Imports
  21. import java.awt.event.ActionListener;
  22. import javax.swing.AbstractButton;
  23. import javax.swing.Icon;
  24. import javax.swing.JMenuItem;
  25. import javax.swing.JComponent;
  26. import javax.swing.JTree;
  27. import org.gjt.sp.util.Log;
  28. import org.gjt.sp.jedit.GUIUtilities;
  29. import org.gjt.sp.jedit.gui.RolloverButton;
  30. import projectviewer.ProjectViewer;
  31. import projectviewer.vpt.VPTNode;
  32. //}}}
  33. /**
  34. * An action defines an action to be taken when the user presses some menu
  35. * item in the tree's context menu or a button on the toolbar.
  36. *
  37. * @author Marcelo Vanzin
  38. * @version $Id: Action.java 6353 2005-09-21 00:03:11Z ezust $
  39. */
  40. public abstract class Action implements ActionListener, Cloneable {
  41. //{{{ Instance variables
  42. protected ProjectViewer viewer;
  43. protected RolloverButton tbButton;
  44. protected JComponent cmItem;
  45. protected String action;
  46. //}}}
  47. //{{{ #Action() : <init>
  48. /** Creates a regular action. */
  49. protected Action() {
  50. this(null);
  51. } //}}}
  52. //{{{ #Action(String) : <init>
  53. /**
  54. * Creates an action tied to an action name. If the action name is not
  55. * null, the default menu item created will be a jEdit EnhancedMenuItem
  56. * tied to the action name; this will allow the item to show the
  57. * currently assigned shortcut of the action, if any. The action
  58. * listeners are removed from the menu item so that only the
  59. * actionPerformed() method on this instance is called, avoiding
  60. * using the jEdit action mechanism for this instance.
  61. */
  62. protected Action(String action) {
  63. this.action = action;
  64. } //}}}
  65. //{{{ +*getText()* : String
  66. /**
  67. * Returns a String that will be shown as the text of the menu item or
  68. * the tooltip of the toolbar button.
  69. */
  70. public abstract String getText(); //}}}
  71. //{{{ +prepareForNode(VPTNode) : void
  72. /**
  73. * When a node is selected (for the toolbar button) or when the context
  74. * menu is shown (for the menu item), this method is called and the
  75. * selected node is passed, so the action can choose whether the action
  76. * will be available or not for that node. A common action would be
  77. * disable the button or hide the menu item.
  78. *
  79. * <p>By default, does nothing.</p>
  80. *
  81. * @param node The selected node, or "null" if multiple nodes are
  82. * selected.
  83. */
  84. public void prepareForNode(VPTNode node) {
  85. }//}}}
  86. //{{{ +getIcon() : Icon
  87. /**
  88. * Returns the icon to be shown on the toolbar button. The default
  89. * implementation returns "null" so that actions that will only be
  90. * used in the context menu don't need to implement this.
  91. */
  92. public Icon getIcon() {
  93. return null;
  94. } //}}}
  95. //{{{ +getMenuItem() : JComponent
  96. /**
  97. * Returns the menu item that triggers this action. This returns a
  98. * JComponent, which makes it possible to add virtually anything to
  99. * the menu. For example, it's possible to return a sub-menu instead
  100. * of a simple menu item. The default implementation returns a menu
  101. * item, which is stored in the "cmItem" variable.
  102. */
  103. public JComponent getMenuItem() {
  104. if (cmItem == null) {
  105. if (action == null) {
  106. cmItem = new JMenuItem(getText());
  107. } else {
  108. cmItem = GUIUtilities.loadMenuItem(action);
  109. ActionListener[] l = ((AbstractButton)cmItem).getActionListeners();
  110. for (int i = 0; i < l.length; i++) {
  111. ((AbstractButton)cmItem).removeActionListener(l[i]);
  112. }
  113. ((AbstractButton)cmItem).setText(getText());
  114. }
  115. ((JMenuItem)cmItem).addActionListener(this);
  116. }
  117. return cmItem;
  118. } //}}}
  119. //{{{ +getButton() : RolloverButton
  120. /** Returns the toolbar button that triggers this action. */
  121. public RolloverButton getButton() {
  122. if (tbButton == null) {
  123. Icon i = getIcon();
  124. if (i != null) {
  125. tbButton = new RolloverButton(getIcon());
  126. } else {
  127. tbButton = new RolloverButton();
  128. tbButton.setText(getText());
  129. }
  130. tbButton.setToolTipText(getText());
  131. tbButton.addActionListener(this);
  132. }
  133. return tbButton;
  134. } //}}}
  135. //{{{ +clone() : Object
  136. /** Clones the current action, returning a copy of it. */
  137. public Object clone() {
  138. try {
  139. return super.clone();
  140. } catch (CloneNotSupportedException cnse) {
  141. // should not happen
  142. Log.log(Log.ERROR,this,cnse);
  143. return null;
  144. }
  145. } //}}}
  146. //{{{ +setViewer(ProjectViewer) : void
  147. /** Sets the viewer where this action is being used. */
  148. public void setViewer(ProjectViewer viewer) {
  149. this.viewer = viewer;
  150. } //}}}
  151. }