/plugins/SVNPlugin/tags/0.9.1/src/ise/plugin/svn/gui/TagBranchDialog.java

# · Java · 296 lines · 213 code · 36 blank · 47 comment · 31 complexity · 8e20c9d6f1e030c4640dc0bfd12ec247 MD5 · raw file

  1. /*
  2. Copyright (c) 2007, Dale Anson
  3. All rights reserved.
  4. Redistribution and use in source and binary forms, with or without modification,
  5. are permitted provided that the following conditions are met:
  6. * Redistributions of source code must retain the above copyright notice,
  7. this list of conditions and the following disclaimer.
  8. * Redistributions in binary form must reproduce the above copyright notice,
  9. this list of conditions and the following disclaimer in the documentation
  10. and/or other materials provided with the distribution.
  11. * Neither the name of the author nor the names of its contributors
  12. may be used to endorse or promote products derived from this software without
  13. specific prior written permission.
  14. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  15. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  16. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  17. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
  18. ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  19. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  20. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  21. ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  22. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  23. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  24. */
  25. package ise.plugin.svn.gui;
  26. import java.awt.Color;
  27. import java.awt.Dimension;
  28. import java.awt.BorderLayout;
  29. import java.io.File;
  30. import java.util.*;
  31. import java.awt.event.*;
  32. import javax.swing.*;
  33. import javax.swing.table.*;
  34. import javax.swing.border.EmptyBorder;
  35. import org.gjt.sp.jedit.GUIUtilities;
  36. import org.gjt.sp.jedit.jEdit;
  37. import org.gjt.sp.jedit.View;
  38. import org.gjt.sp.util.*;
  39. import org.gjt.sp.jedit.browser.VFSBrowser;
  40. import ise.java.awt.*;
  41. import ise.plugin.svn.pv.SVNAction;
  42. import ise.plugin.svn.data.*;
  43. import ise.plugin.svn.command.*;
  44. import ise.plugin.svn.library.*;
  45. import org.tmatesoft.svn.core.SVNURL;
  46. import org.tmatesoft.svn.core.wc.SVNRevision;
  47. /**
  48. * Pretty much a clone of CopyDialog but with a few minor GUI changes. This
  49. * interface assumes the user wants to copy a remote url to a remote url, so
  50. * only allows a single source and destination.
  51. */
  52. public class TagBranchDialog extends JDialog {
  53. // instance fields
  54. private View view = null;
  55. private String toCopy = null;
  56. private JTextField path = null;
  57. private TableModel fileTableModel = null;
  58. private String defaultDestination = null;
  59. private JTextArea comment = null;
  60. private PropertyComboBox commentList = null;
  61. private SVNURL source = null;
  62. private SVNURL destination = null;
  63. private SVNRevision revision = SVNRevision.HEAD;
  64. public static final int TAG_DIALOG = 1;
  65. public static final int BRANCH_DIALOG = 2;
  66. private int type = TAG_DIALOG;
  67. public static String TAG = "Tag";
  68. public static String BRANCH = "Branch";
  69. private boolean canceled = false;
  70. /**
  71. * @param view the parent frame
  72. * @param type one of TAG_DIALOG or BRANCH_DIALOG
  73. * @param url remote repository url to copy from
  74. * @param defaultDestination a destination to use by default, can be null or empty
  75. */
  76. public TagBranchDialog( View view, int type, String url, String defaultDestination ) {
  77. super( ( JFrame ) view, type == TAG_DIALOG ? TAG : BRANCH, true );
  78. if ( url == null || url.length() == 0 ) {
  79. throw new IllegalArgumentException( "no source file(s) to copy" );
  80. }
  81. if ( type != TAG_DIALOG && type != BRANCH_DIALOG ) {
  82. throw new IllegalArgumentException( "invalid type value: " + type );
  83. }
  84. this.view = view;
  85. this.type = type;
  86. this.toCopy = url;
  87. this.defaultDestination = defaultDestination == null ? "" : defaultDestination;
  88. init();
  89. }
  90. protected void init() {
  91. KappaLayout layout = new KappaLayout();
  92. JPanel panel = new JPanel( layout );
  93. panel.setBorder( BorderFactory.createEmptyBorder( 6, 6, 6, 6 ) );
  94. // source for tag/branch
  95. JLabel to_copy_label = new JLabel( "Create " + ( type == TAG_DIALOG ? "tag" : "branch" ) + " from:" );
  96. JTextField source_file = new JTextField( toCopy );
  97. source_file.setEditable( false );
  98. source_file.setBackground( Color.WHITE );
  99. // revision selection panel
  100. final RevisionSelectionPanel tag_revision_panel = new RevisionSelectionPanel( "Create " + ( type == TAG_DIALOG ? "tag" : "branch" ) + " from this revision:" );
  101. tag_revision_panel.setLayout( SwingConstants.HORIZONTAL );
  102. JPanel source_panel = new JPanel( new LambdaLayout() );
  103. //source_panel.setBorder(BorderFactory.createEtchedBorder());
  104. source_panel.add( "0, 0, 1, 1, W, w, 3", to_copy_label );
  105. source_panel.add( "0, 1, 1, 1, W, w, 3", source_file );
  106. source_panel.add( "0, 2, 1, 1, 0, w, 3", tag_revision_panel );
  107. // destination
  108. JLabel path_label = new JLabel( "Create " + ( type == TAG_DIALOG ? "tag" : "branch" ) + " at this location:" );
  109. path = new JTextField( defaultDestination , 30 );
  110. JButton browse_remote_btn = new JButton( "Browse Remote..." );
  111. browse_remote_btn.addActionListener(
  112. new ActionListener() {
  113. public void actionPerformed( ActionEvent ae ) {
  114. final JDialog dialog = new JDialog( view, "Select Repository Destination" );
  115. dialog.setModal( true );
  116. JPanel panel = new JPanel( new LambdaLayout() );
  117. panel.setBorder( BorderFactory.createEmptyBorder( 6, 6, 6, 6 ) );
  118. final BrowseRepositoryPanel burp = new BrowseRepositoryPanel( view, defaultDestination, false );
  119. panel.add( "0, 0, 1, 1, 0, wh, 3", burp );
  120. KappaLayout btn_layout = new KappaLayout();
  121. JPanel button_panel = new JPanel( btn_layout );
  122. JButton ok_btn = new JButton( "OK" );
  123. ok_btn.addActionListener(
  124. new ActionListener() {
  125. public void actionPerformed( ActionEvent ae ) {
  126. String selection = burp.getSelectionPath();
  127. dialog.setVisible( false );
  128. dialog.dispose();
  129. if ( selection != null && selection.length() > 0 ) {
  130. path.setText( selection );
  131. }
  132. }
  133. }
  134. );
  135. JButton cancel_btn = new JButton( "Cancel" );
  136. cancel_btn.addActionListener(
  137. new ActionListener() {
  138. public void actionPerformed( ActionEvent ae ) {
  139. dialog.setVisible( false );
  140. dialog.dispose();
  141. }
  142. }
  143. );
  144. button_panel.add( "0, 0, 1, 1, 0, w, 3", ok_btn );
  145. button_panel.add( "1, 0, 1, 1, 0, w, 3", cancel_btn );
  146. btn_layout.makeColumnsSameWidth( 0, 1 );
  147. panel.add( "0, 1, 1, 1", KappaLayout.createStrut( 350, 11, false ) );
  148. panel.add( "0, 2, 1, 1, E, , 3", button_panel );
  149. dialog.setContentPane( panel );
  150. dialog.pack();
  151. GUIUtils.center( view, dialog );
  152. dialog.setVisible( true );
  153. }
  154. }
  155. );
  156. JLabel comment_label = new JLabel( "Enter comment for this " + ( type == TAG_DIALOG ? "tag:" : "branch:" ) );
  157. comment = new JTextArea( 3, 40 );
  158. comment.setLineWrap( true );
  159. comment.setWrapStyleWord( true );
  160. // list for previous comments
  161. final PropertyComboBox commentList = new PropertyComboBox( "ise.plugin.svn.comment." );
  162. commentList.setEditable( false );
  163. commentList.addItemListener( new ItemListener() {
  164. public void itemStateChanged( ItemEvent e ) {
  165. if ( PropertyComboBox.SELECT.equals( commentList.getSelectedItem().toString() ) ) {
  166. return ;
  167. }
  168. comment.setText( commentList.getSelectedItem().toString() );
  169. }
  170. }
  171. );
  172. // ok and cancel buttons
  173. KappaLayout kl = new KappaLayout();
  174. JPanel btn_panel = new JPanel( kl );
  175. JButton ok_btn = new JButton( "Ok" );
  176. JButton cancel_btn = new JButton( "Cancel" );
  177. btn_panel.add( "0, 0, 1, 1, 0, w, 3", ok_btn );
  178. btn_panel.add( "1, 0, 1, 1, 0, w, 3", cancel_btn );
  179. kl.makeColumnsSameWidth( 0, 1 );
  180. ok_btn.addActionListener( new ActionListener() {
  181. public void actionPerformed( ActionEvent ae ) {
  182. try {
  183. source = SVNURL.parseURIDecoded( toCopy );
  184. }
  185. catch ( Exception e ) {
  186. JOptionPane.showMessageDialog( TagBranchDialog.this, "Source URL is invalid.", "Error", JOptionPane.ERROR_MESSAGE );
  187. return ;
  188. }
  189. try {
  190. destination = SVNURL.parseURIDecoded( path.getText() );
  191. }
  192. catch ( Exception e ) {
  193. JOptionPane.showMessageDialog( TagBranchDialog.this, "Destination URL is invalid.", "Error", JOptionPane.ERROR_MESSAGE );
  194. return ;
  195. }
  196. revision = tag_revision_panel.getRevision();
  197. canceled = false;
  198. // save the comment
  199. String msg = comment.getText();
  200. if ( msg != null && msg.length() > 0 && commentList != null ) {
  201. commentList.addValue( msg );
  202. commentList.save();
  203. }
  204. TagBranchDialog.this.setVisible( false );
  205. TagBranchDialog.this.dispose();
  206. }
  207. }
  208. );
  209. cancel_btn.addActionListener( new ActionListener() {
  210. public void actionPerformed( ActionEvent ae ) {
  211. canceled = true;
  212. TagBranchDialog.this.setVisible( false );
  213. TagBranchDialog.this.dispose();
  214. }
  215. }
  216. );
  217. // add the components to the option panel
  218. panel.add( "0, 0, 8, 1, W, w, 0", source_panel );
  219. panel.add( "0, 4, 1, 1, 0, , 0", KappaLayout.createVerticalStrut( 11, true ) );
  220. panel.add( "0, 5, 1, 1, W, , 3", path_label );
  221. panel.add( "0, 6, 8, 1, 0, w, 3", path );
  222. panel.add( "0, 7, 1, 1, 0, w, 3", browse_remote_btn );
  223. panel.add( "0, 8, 1, 1, 0, , 0", KappaLayout.createVerticalStrut( 11, true ) );
  224. panel.add( "0, 9, 8, 1, W, , 3", comment_label );
  225. panel.add( "0, 10, 8, 1, W, wh, 3", new JScrollPane( comment ) );
  226. if ( commentList != null && commentList.getModel().getSize() > 0 ) {
  227. commentList.setPreferredSize( new Dimension( 500, commentList.getPreferredSize().height ) );
  228. panel.add( "0, 11, 8, 1, W, , 3", new JLabel( "Select a previous comment:" ) );
  229. panel.add( "0, 12, 8, 1, W, w, 3", commentList );
  230. }
  231. panel.add( "0, 13, 1, 1, 0, , 0", KappaLayout.createVerticalStrut( 11, true ) );
  232. panel.add( "0, 14, 8, 1, E, , 0", btn_panel );
  233. setContentPane( panel );
  234. pack();
  235. }
  236. public CopyData getData() {
  237. if ( canceled ) {
  238. return null;
  239. }
  240. CopyData cd = new CopyData();
  241. List<SVNURL> urls = new ArrayList<SVNURL>();
  242. urls.add( source );
  243. cd.setSourceURLs( urls );
  244. cd.setRevision( revision );
  245. cd.setDestinationURL( destination );
  246. String msg = comment.getText();
  247. if ( msg == null || msg.length() == 0 ) {
  248. msg = "no comment";
  249. }
  250. cd.setMessage( msg );
  251. return cd;
  252. }
  253. public static void main (String[] args) {
  254. TagBranchDialog d = new TagBranchDialog(null, TagBranchDialog.TAG_DIALOG, "http://somewhere.over/the/rainbow", null);
  255. d.setVisible(true);
  256. }
  257. }