/plugins/SVNPlugin/branches/1.2.0_svn1.4/src/ise/plugin/svn/gui/component/BlamePane.java

# · Java · 192 lines · 138 code · 21 blank · 33 comment · 24 complexity · bd8db79fdf2573b130ea7e4a3044fbf8 MD5 · raw file

  1. /*
  2. * Copyright (c) 2008, Dale Anson
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation; either version 2
  7. * of the License, or any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  17. */
  18. package ise.plugin.svn.gui.component;
  19. import java.util.*;
  20. import java.awt.FlowLayout;
  21. import java.awt.event.ActionEvent;
  22. import java.awt.event.ActionListener;
  23. import javax.swing.*;
  24. import javax.swing.event.CaretEvent;
  25. import javax.swing.event.CaretListener;
  26. import javax.swing.event.ChangeEvent;
  27. import javax.swing.event.ChangeListener;
  28. import org.gjt.sp.jedit.EditBus;
  29. import org.gjt.sp.jedit.EBComponent;
  30. import org.gjt.sp.jedit.EBMessage;
  31. import org.gjt.sp.jedit.GUIUtilities;
  32. import org.gjt.sp.jedit.View;
  33. import org.gjt.sp.jedit.textarea.JEditTextArea;
  34. import org.gjt.sp.jedit.msg.EditPaneUpdate;
  35. import org.gjt.sp.jedit.msg.BufferChanging;
  36. import org.gjt.sp.jedit.buffer.JEditBuffer;
  37. import org.gjt.sp.jedit.jEdit;
  38. public class BlamePane extends JComponent implements CaretListener, EBComponent {
  39. private static final String uiClassID = "BlamePaneUI";
  40. private Set<ChangeListener> changeListeners = new HashSet<ChangeListener>();
  41. private BlameModel model = null;
  42. public BlamePane() {
  43. this( null );
  44. }
  45. public BlamePane( BlameModel model ) {
  46. this.model = model;
  47. updateUI();
  48. EditBus.addToBus( this );
  49. }
  50. public void updateUI() {
  51. if ( UIManager.get( getUIClassID() ) != null ) {
  52. setUI( ( BlamePaneUI ) UIManager.getUI( this ) );
  53. }
  54. else {
  55. setUI( new BasicBlamePaneUI() );
  56. }
  57. }
  58. public BlamePaneUI getUI() {
  59. return ( BlamePaneUI ) ui;
  60. }
  61. public String getUIClassID() {
  62. return uiClassID;
  63. }
  64. public void caretUpdate( final CaretEvent e ) {
  65. if ( e.getSource() instanceof JEditTextArea ) {
  66. fireStateChanged();
  67. }
  68. }
  69. public void addChangeListener( ChangeListener cl ) {
  70. if ( cl != null ) {
  71. changeListeners.add( cl );
  72. }
  73. }
  74. public void removeChangeListener( ChangeListener cl ) {
  75. if ( cl != null ) {
  76. changeListeners.remove( cl );
  77. }
  78. }
  79. public void fireStateChanged() {
  80. if ( changeListeners.size() > 0 ) {
  81. ChangeEvent event = new ChangeEvent( this );
  82. for ( ChangeListener cl : changeListeners ) {
  83. cl.stateChanged( event );
  84. }
  85. }
  86. }
  87. /**
  88. * Model is a list of strings, one per line in the source file. Each string
  89. * in the model provides the blame information about that line, probably just
  90. * author and revision. This list is provided by the i.p.s.command.Blame command.
  91. */
  92. public void setModel( BlameModel model ) {
  93. this.model = model;
  94. updateUI();
  95. }
  96. /**
  97. * @return the model
  98. */
  99. public BlameModel getModel() {
  100. return model;
  101. }
  102. /**
  103. * A panel with a button to close out this blame pane.
  104. */
  105. public JPanel getCloser( final View view ) {
  106. final JPanel panel = new JPanel( new FlowLayout( FlowLayout.RIGHT, 16, 0 ) );
  107. JButton button = new JButton( jEdit.getProperty( "ips.Close_blame", "Close blame" ), GUIUtilities.loadIcon( "10x10/actions/close.png" ) );
  108. button.setBorder( null );
  109. panel.add( button );
  110. button.addActionListener(
  111. new ActionListener() {
  112. public void actionPerformed( ActionEvent ae ) {
  113. Runnable runner = new Runnable(){
  114. public void run() {
  115. // clean up the text area by removing the closer and blame pane,
  116. // remove the stored props from the buffer, refresh the view.
  117. getUI().uninstallUI( BlamePane.this );
  118. JEditTextArea textarea = view.getEditPane().getTextArea();
  119. textarea.removeCaretListener( BlamePane.this );
  120. textarea.removeTopComponent( panel );
  121. textarea.removeLeftOfScrollBar( BlamePane.this );
  122. textarea.getBuffer().unsetProperty( "_old_blame_" );
  123. textarea.getBuffer().unsetProperty( "_old_closer_" );
  124. view.invalidate();
  125. view.validate();
  126. }
  127. };
  128. SwingUtilities.invokeLater(runner);
  129. }
  130. }
  131. );
  132. return panel;
  133. }
  134. public void handleMessage( EBMessage msg ) {
  135. if ( msg instanceof EditPaneUpdate ) {
  136. EditPaneUpdate epu = ( EditPaneUpdate ) msg;
  137. if ( EditPaneUpdate.BUFFER_CHANGING.equals( epu.getWhat() ) ) {
  138. // remove the blame components from the text area
  139. JEditTextArea textArea = epu.getEditPane().getTextArea();
  140. JEditBuffer buffer = textArea.getBuffer();
  141. if ( epu instanceof BufferChanging && buffer.equals( ( ( BufferChanging ) epu ).getBuffer() ) ) {
  142. return ; // same buffer, nothing to do
  143. }
  144. Object old_blame = buffer.getProperty( "_old_blame_" );
  145. if ( old_blame != null ) {
  146. textArea.removeLeftOfScrollBar( ( JComponent ) old_blame );
  147. }
  148. Object old_closer = buffer.getProperty( "_old_closer_" );
  149. if ( old_closer != null ) {
  150. textArea.removeTopComponent( ( JComponent ) old_closer );
  151. }
  152. epu.getEditPane().getView().invalidate();
  153. epu.getEditPane().getView().validate();
  154. }
  155. else if ( EditPaneUpdate.BUFFER_CHANGED.equals( epu.getWhat() ) ) {
  156. // check if the new buffer has stored blame parts, if so, add
  157. // them to the text area
  158. JEditTextArea textArea = epu.getEditPane().getTextArea();
  159. JEditBuffer buffer = textArea.getBuffer();
  160. Object old_blame = buffer.getProperty( "_old_blame_" );
  161. Object old_closer = buffer.getProperty( "_old_closer_" );
  162. if ( old_blame != null && old_closer != null ) {
  163. textArea.addLeftOfScrollBar( ( JComponent ) old_blame );
  164. textArea.addTopComponent( ( JComponent ) old_closer );
  165. epu.getEditPane().getView().invalidate();
  166. epu.getEditPane().getView().validate();
  167. }
  168. }
  169. }
  170. }
  171. }