/plugins/SVNPlugin/trunk/src/ise/plugin/svn/gui/SwitchDialog.java

# · Java · 253 lines · 185 code · 28 blank · 40 comment · 11 complexity · 598b85a70cef9e08e6e3140bad3070ba 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.io.File;
  27. import java.util.*;
  28. import java.awt.event.*;
  29. import javax.swing.*;
  30. import javax.swing.table.*;
  31. import org.gjt.sp.jedit.View;
  32. import org.gjt.sp.jedit.jEdit;
  33. import org.gjt.sp.util.*;
  34. import org.gjt.sp.jedit.gui.HistoryTextField;
  35. import ise.java.awt.*;
  36. import ise.plugin.svn.data.*;
  37. import ise.plugin.svn.command.*;
  38. import ise.plugin.svn.library.*;
  39. import static ise.plugin.svn.gui.HistoryModelNames.*;
  40. import ise.plugin.svn.gui.component.*;
  41. import org.tmatesoft.svn.core.SVNURL;
  42. import org.tmatesoft.svn.core.wc.SVNRevision;
  43. public class SwitchDialog extends JDialog {
  44. // instance fields
  45. private View view = null;
  46. private String path = null;
  47. private HistoryTextField from = null;
  48. private SVNURL from_url = null;
  49. private SVNRevision revision = SVNRevision.HEAD;
  50. private boolean canceled = false;
  51. private UpdateData data = null;
  52. /**
  53. * @param view the parent frame
  54. * @param files the files to replace
  55. */
  56. public SwitchDialog( View view, UpdateData data ) {
  57. super( ( JFrame ) view, jEdit.getProperty( "ips.Switch", "Switch" ), true );
  58. if ( data == null ) {
  59. throw new IllegalArgumentException( "no source file(s)" );
  60. }
  61. List<String> paths = data.getPaths();
  62. if ( paths.size() != 1 ) {
  63. String msg = jEdit.getProperty( "ips.Switch_can_only_be_applied_to_one_file_or_directory_at_a_time.", "Switch can only be applied to one file or directory at a time." );
  64. JOptionPane.showMessageDialog( view, msg, jEdit.getProperty( "ips.Switch_Error", "Switch Error" ), JOptionPane.ERROR_MESSAGE );
  65. throw new IllegalArgumentException( msg );
  66. }
  67. this.view = view;
  68. this.data = data;
  69. path = paths.get( 0 );
  70. if ( path == null ) {
  71. throw new IllegalArgumentException( "no source file" );
  72. }
  73. init();
  74. }
  75. protected void init() {
  76. KappaLayout layout = new KappaLayout();
  77. JPanel panel = new JPanel( layout );
  78. panel.setBorder( BorderFactory.createEmptyBorder( 6, 6, 6, 6 ) );
  79. // set recursive value, if any of the nodes are a directory, set
  80. // recursive to true. While we're at it, make a list of strings of
  81. // the node paths.
  82. boolean recursive = false;
  83. File file = new File( path );
  84. if ( file.isDirectory() ) {
  85. recursive = true;
  86. }
  87. List<String> paths = new ArrayList<String>();
  88. paths.add( path );
  89. data.setPaths( paths );
  90. data.setRecursive( recursive );
  91. // source for switch
  92. JLabel to_replace_label = new JLabel( jEdit.getProperty( "ips.Replace", "Replace" ) + " " + ( recursive ? jEdit.getProperty( "ips.the_files_in_this_directory>", "the files in this directory:" ) : jEdit.getProperty( "ips.this_file>", "this file:" ) ) );
  93. HistoryTextField to_replace_file = new HistoryTextField( PATH );
  94. to_replace_file.setText( path );
  95. to_replace_file.setEditable( false );
  96. final JCheckBox recursive_cb = new JCheckBox( jEdit.getProperty( "ips.Recursively_switch?", "Recursively switch?" ) );
  97. recursive_cb.setSelected( recursive );
  98. recursive_cb.addActionListener( new ActionListener() {
  99. public void actionPerformed( ActionEvent ae ) {
  100. data.setRecursive( recursive_cb.isSelected() );
  101. }
  102. }
  103. );
  104. // revision selection panel
  105. final RevisionSelectionPanel revision_panel = new RevisionSelectionPanel( jEdit.getProperty( "ips.At_this_revision>", "At this revision:" ), SwingConstants.HORIZONTAL, false );
  106. // destination
  107. JLabel path_label = new JLabel( jEdit.getProperty( "ips.With_file(s)_from_this_location>", "With file(s) from this location:" ) );
  108. from = new HistoryTextField( COPY_PATH );
  109. from.setText( "" );
  110. from.setColumns( 30 );
  111. JButton browse_remote_btn = new JButton( jEdit.getProperty( "ips.Browse_Remote...", "Browse Remote..." ) );
  112. browse_remote_btn.setMnemonic( KeyEvent.VK_R );
  113. browse_remote_btn.addActionListener(
  114. new ActionListener() {
  115. public void actionPerformed( ActionEvent ae ) {
  116. final JDialog dialog = new JDialog( view, jEdit.getProperty( "ips.Select_Repository_Destination", "Select Repository Destination" ) );
  117. dialog.setModal( true );
  118. JPanel panel = new JPanel( new LambdaLayout() );
  119. panel.setBorder( BorderFactory.createEmptyBorder( 6, 6, 6, 6 ) );
  120. final BrowseRepositoryPanel burp = new BrowseRepositoryPanel( view, false );
  121. panel.add( "0, 0, 1, 1, 0, wh, 3", burp );
  122. KappaLayout btn_layout = new KappaLayout();
  123. JPanel button_panel = new JPanel( btn_layout );
  124. JButton ok_btn = new JButton( jEdit.getProperty( "ips.Ok", "Ok" ) );
  125. ok_btn.setMnemonic( KeyEvent.VK_O );
  126. ok_btn.addActionListener(
  127. new ActionListener() {
  128. public void actionPerformed( ActionEvent ae ) {
  129. String selection = burp.getSelectionPath();
  130. dialog.setVisible( false );
  131. dialog.dispose();
  132. if ( selection != null && selection.length() > 0 ) {
  133. from.setText( selection );
  134. }
  135. }
  136. }
  137. );
  138. JButton cancel_btn = new JButton( jEdit.getProperty( "ips.Cancel", "Cancel" ) );
  139. cancel_btn.setMnemonic( KeyEvent.VK_C );
  140. cancel_btn.addActionListener(
  141. new ActionListener() {
  142. public void actionPerformed( ActionEvent ae ) {
  143. dialog.setVisible( false );
  144. dialog.dispose();
  145. }
  146. }
  147. );
  148. button_panel.add( "0, 0, 1, 1, 0, w, 3", ok_btn );
  149. button_panel.add( "1, 0, 1, 1, 0, w, 3", cancel_btn );
  150. btn_layout.makeColumnsSameWidth( 0, 1 );
  151. panel.add( "0, 1, 1, 1", KappaLayout.createStrut( 350, 11, false ) );
  152. panel.add( "0, 2, 1, 1, E, , 3", button_panel );
  153. dialog.setContentPane( panel );
  154. dialog.pack();
  155. GUIUtils.center( view, dialog );
  156. dialog.getRootPane().setDefaultButton( ok_btn );
  157. ok_btn.requestFocus();
  158. dialog.setVisible( true );
  159. }
  160. }
  161. );
  162. // ok and cancel buttons
  163. KappaLayout kl = new KappaLayout();
  164. JPanel btn_panel = new JPanel( kl );
  165. JButton ok_btn = new JButton( jEdit.getProperty( "ips.Ok", "Ok" ) );
  166. ok_btn.setMnemonic(KeyEvent.VK_O);
  167. JButton cancel_btn = new JButton( jEdit.getProperty( "ips.Cancel", "Cancel" ) );
  168. cancel_btn.setMnemonic(KeyEvent.VK_C);
  169. btn_panel.add( "0, 0, 1, 1, 0, w, 3", ok_btn );
  170. btn_panel.add( "1, 0, 1, 1, 0, w, 3", cancel_btn );
  171. kl.makeColumnsSameWidth( 0, 1 );
  172. ok_btn.addActionListener( new ActionListener() {
  173. public void actionPerformed( ActionEvent ae ) {
  174. try {
  175. from_url = SVNURL.parseURIDecoded( from.getText() );
  176. }
  177. catch ( Exception e ) {
  178. JOptionPane.showMessageDialog( SwitchDialog.this, jEdit.getProperty( "ips.Destination_URL_is_invalid.", "Destination URL is invalid." ), jEdit.getProperty( "ips.Error", "Error" ), JOptionPane.ERROR_MESSAGE );
  179. return ;
  180. }
  181. revision = revision_panel.getRevision();
  182. canceled = false;
  183. SwitchDialog.this.setVisible( false );
  184. SwitchDialog.this.dispose();
  185. from.addCurrentToHistory();
  186. }
  187. }
  188. );
  189. cancel_btn.addActionListener( new ActionListener() {
  190. public void actionPerformed( ActionEvent ae ) {
  191. canceled = true;
  192. SwitchDialog.this.setVisible( false );
  193. SwitchDialog.this.dispose();
  194. }
  195. }
  196. );
  197. // add the components to the option panel
  198. panel.add( "0, 0, 8, 1, W, w, 3", to_replace_label );
  199. panel.add( "0, 1, 8, 1, W, w, 3", to_replace_file );
  200. panel.add( "0, 2, 8, 1, W, w, 3", recursive_cb );
  201. panel.add( "0, 3, 1, 1, 0, , 0", KappaLayout.createVerticalStrut( 11, true ) );
  202. panel.add( "0, 4, 1, 1, W, , 3", path_label );
  203. panel.add( "0, 5, 8, 1, 0, w, 3", from );
  204. panel.add( "0, 6, 1, 1, 0, w, 3", browse_remote_btn );
  205. panel.add( "0, 7, 1, 1, 0, , 0", KappaLayout.createVerticalStrut( 11, true ) );
  206. panel.add( "0, 8, 8, 1, 0, w, 3", revision_panel );
  207. panel.add( "0, 9, 1, 1, 0, , 0", KappaLayout.createVerticalStrut( 11, true ) );
  208. panel.add( "0, 10, 8, 1, E, , 0", btn_panel );
  209. setContentPane( panel );
  210. pack();
  211. getRootPane().setDefaultButton(ok_btn);
  212. ok_btn.requestFocus();
  213. }
  214. public UpdateData getData() {
  215. if ( canceled ) {
  216. return null;
  217. }
  218. data.setSVNRevision( revision );
  219. data.setURL( from_url );
  220. return data;
  221. }
  222. }