/plugins/JavaSideKick/tags/javasidekick-2-3-4/src/sidekick/java/options/PathBuilder.java

# · Java · 357 lines · 236 code · 35 blank · 86 comment · 29 complexity · 8308007d47ef9cf71876c8479a2f271d MD5 · raw file

  1. /*
  2. * $Source$
  3. * Copyright (C) 2003 Robert Fletcher
  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 sidekick.java.options;
  20. // imports
  21. import java.awt.BorderLayout;
  22. import java.awt.event.ActionEvent;
  23. import java.awt.event.ActionListener;
  24. import java.io.File;
  25. import java.io.IOException;
  26. import java.util.StringTokenizer;
  27. import javax.swing.Box;
  28. import javax.swing.BoxLayout;
  29. import javax.swing.DefaultListModel;
  30. import javax.swing.JButton;
  31. import javax.swing.JFileChooser;
  32. import javax.swing.JLabel;
  33. import javax.swing.JList;
  34. import javax.swing.JPanel;
  35. import javax.swing.JScrollPane;
  36. import javax.swing.ListSelectionModel;
  37. import javax.swing.border.EmptyBorder;
  38. import javax.swing.event.ListSelectionEvent;
  39. import javax.swing.event.ListSelectionListener;
  40. import javax.swing.filechooser.FileFilter;
  41. import org.gjt.sp.jedit.GUIUtilities;
  42. import org.gjt.sp.jedit.gui.RolloverButton;
  43. import org.gjt.sp.jedit.jEdit;
  44. import org.gjt.sp.util.Log;
  45. /**
  46. * danson: borrowed directly from JavaCore by Robert Fletcher.
  47. *
  48. * This is an updated version of the <code>common.gui.PathBuilder</code>
  49. * component from the Common Controls plugin. It has a number of advantages over
  50. * the Common Controls version.
  51. * <ul>
  52. * <li>Doesn't hard code the caption above the table.
  53. * <li>Fixes some of the geometry problems that the Common Controls version has
  54. * and can more easily be used in an option pane.
  55. * <li>Can be enabled/disabled with the state of all contained components being
  56. * updated accordingly.
  57. * <li>The look and feel is more in line with current jEdit core components.
  58. * </ul><p>
  59. * In order to use with a jEdit option pane it is recommended that your option
  60. * pane class should override the <code>addComponent</code> method with
  61. * something like:
  62. * <pre>public void addComponent(PathBuilder comp)
  63. * {
  64. * GridBagConstraints cons = new GridBagConstraints();
  65. * cons.gridy = y++; // y is a protected member of AbstractOptionPane
  66. * cons.gridheight = 1;
  67. * cons.gridwidth = GridBagConstraints.REMAINDER;
  68. * cons.fill = GridBagConstraints.BOTH;
  69. * cons.anchor = GridBagConstraints.WEST;
  70. * cons.weightx = 1.0f;
  71. * cons.weighty = 1.0f; // the vital difference from the super method
  72. * cons.insets = new Insets(1,0,1,0);
  73. * gridBag.setConstraints(comp, cons);
  74. * add(comp);
  75. * }</pre>
  76. * Just using the default <code>AbstractOptionPane.addComponent()</code> method
  77. * can result in odd things happening when the option pane is resized.
  78. *
  79. * @author <a href="mailto:rfletch6@yahoo.co.uk">Robert Fletcher</a>
  80. * @version $Revision: 997 $ $Date: 2006-06-17 06:48:01 +0200 (Sat, 17 Jun 2006) $
  81. */
  82. public class PathBuilder extends JPanel {
  83. // instance fields
  84. private JLabel caption;
  85. private DefaultListModel listModel;
  86. private JList list;
  87. private JButton add;
  88. private JButton remove;
  89. private JButton moveUp;
  90. private JButton moveDown;
  91. private String startDirectory;
  92. private int fileSelectionMode;
  93. private boolean multiSelectionEnabled;
  94. private FileFilter fileFilter;
  95. private String fileDialogTitle;
  96. private boolean enabled;
  97. // +PathBuilder() : <init>
  98. /**
  99. * Constructs a <code>PathBuilder</code> object. Equivalent to calling
  100. * <code>new PathBuilder(null, true)</code>.
  101. */
  102. public PathBuilder() {
  103. this( null, true );
  104. }
  105. // +PathBuilder(String) : <init>
  106. /**
  107. * Constructs a <code>PathBuilder</code> object. Equivalent to calling
  108. * <code>new PathBuilder(captionText, true)</code>.
  109. *
  110. * @param captionText text to appear above the path list, may be <code>null</code>
  111. */
  112. public PathBuilder( String captionText ) {
  113. this( captionText, true );
  114. }
  115. // +PathBuilder(String, boolean) : <init>
  116. /**
  117. * Constructs a <code>PathBuilder</code> object.
  118. *
  119. * @param captionText text to appear above the path list, may be <code>null</code>
  120. * @param moveButtons if <code>true</code> buttons allowing list elements
  121. * to be moved up &amp; down will be included
  122. */
  123. public PathBuilder( String captionText, boolean moveButtons ) {
  124. super( new BorderLayout() );
  125. // defaults
  126. fileSelectionMode = JFileChooser.FILES_AND_DIRECTORIES;
  127. multiSelectionEnabled = true;
  128. fileFilter = null;
  129. fileDialogTitle = jEdit.getProperty( "vfs.browser.title" );
  130. if ( captionText != null ) {
  131. caption = new JLabel( captionText );
  132. add( BorderLayout.NORTH, caption );
  133. }
  134. listModel = new DefaultListModel();
  135. list = new JList( listModel );
  136. list.setSelectionMode( ListSelectionModel.SINGLE_SELECTION );
  137. list.addListSelectionListener(
  138. new ListSelectionListener() {
  139. // +valueChanged(ListSelectionEvent) : void
  140. public void valueChanged( ListSelectionEvent event ) {
  141. updateButtons();
  142. }
  143. }
  144. );
  145. add( BorderLayout.CENTER, new JScrollPane( list ) );
  146. JPanel buttons = new JPanel();
  147. buttons.setBorder( new EmptyBorder( 3, 0, 0, 0 ) );
  148. buttons.setLayout( new BoxLayout( buttons, BoxLayout.X_AXIS ) );
  149. add = new RolloverButton( GUIUtilities.loadIcon( "Plus.png" ) );
  150. add.setToolTipText( jEdit.getProperty( "common.add" ) );
  151. add.addActionListener(
  152. new ActionListener() {
  153. // +actionPerformed(ActionEvent) : void
  154. public void actionPerformed( ActionEvent event ) {
  155. JFileChooser chooser;
  156. if ( startDirectory == null ) {
  157. chooser = new JFileChooser();
  158. }
  159. else {
  160. chooser = new JFileChooser( startDirectory );
  161. }
  162. chooser.setFileSelectionMode( fileSelectionMode );
  163. chooser.setMultiSelectionEnabled( multiSelectionEnabled );
  164. if ( fileFilter != null ) {
  165. chooser.addChoosableFileFilter( fileFilter );
  166. }
  167. chooser.setDialogTitle( fileDialogTitle );
  168. chooser.setApproveButtonText( jEdit.getProperty( "common.ok" ) );
  169. int returnVal = chooser.showDialog(
  170. PathBuilder.this.getRootPane(),
  171. null
  172. );
  173. if ( returnVal == JFileChooser.APPROVE_OPTION ) {
  174. try {
  175. if ( multiSelectionEnabled ) {
  176. File[] files = chooser.getSelectedFiles();
  177. for ( int i = 0; i < files.length; i++ ) {
  178. listModel.addElement(
  179. files[ i ].getCanonicalPath()
  180. );
  181. }
  182. }
  183. else {
  184. listModel.addElement(
  185. chooser.getSelectedFile().getCanonicalPath()
  186. );
  187. }
  188. }
  189. catch ( IOException e ) {
  190. Log.log( Log.WARNING, this.getClass(), e );
  191. }
  192. }
  193. }
  194. }
  195. );
  196. buttons.add( add );
  197. buttons.add( Box.createHorizontalStrut( 6 ) );
  198. remove = new RolloverButton( GUIUtilities.loadIcon( "Minus.png" ) );
  199. remove.setToolTipText( jEdit.getProperty( "common.remove" ) );
  200. remove.addActionListener(
  201. new ActionListener() {
  202. // +actionPerformed(ActionEvent) : void
  203. public void actionPerformed( ActionEvent event ) {
  204. int[] rows = list.getSelectedIndices();
  205. for ( int i = rows.length - 1; i >= 0; i-- ) {
  206. listModel.remove( rows[ i ] );
  207. }
  208. }
  209. }
  210. );
  211. buttons.add( remove );
  212. if ( moveButtons ) {
  213. buttons.add( Box.createHorizontalStrut( 6 ) );
  214. moveUp = new RolloverButton( GUIUtilities.loadIcon( "ArrowU.png" ) );
  215. moveUp.setToolTipText( jEdit.getProperty( "common.moveUp" ) );
  216. moveUp.addActionListener(
  217. new ActionListener() {
  218. // +actionPerformed(ActionEvent) : void
  219. public void actionPerformed( ActionEvent event ) {
  220. int index = list.getSelectedIndex();
  221. Object selected = list.getSelectedValue();
  222. listModel.removeElementAt( index );
  223. listModel.insertElementAt( selected, index - 1 );
  224. list.setSelectedIndex( index - 1 );
  225. list.ensureIndexIsVisible( index - 1 );
  226. }
  227. }
  228. );
  229. buttons.add( moveUp );
  230. buttons.add( Box.createHorizontalStrut( 6 ) );
  231. moveDown = new RolloverButton( GUIUtilities.loadIcon( "ArrowD.png" ) );
  232. moveDown.setToolTipText( jEdit.getProperty( "common.moveDown" ) );
  233. moveDown.addActionListener(
  234. new ActionListener() {
  235. // +actionPerformed(ActionEvent) : void
  236. public void actionPerformed( ActionEvent event ) {
  237. int index = list.getSelectedIndex();
  238. Object selected = list.getSelectedValue();
  239. listModel.removeElementAt( index );
  240. listModel.insertElementAt( selected, index + 1 );
  241. list.setSelectedIndex( index + 1 );
  242. list.ensureIndexIsVisible( index + 1 );
  243. }
  244. }
  245. );
  246. buttons.add( moveDown );
  247. }
  248. buttons.add( Box.createGlue() );
  249. updateButtons();
  250. add( BorderLayout.SOUTH, buttons );
  251. }
  252. // +getPath() : String
  253. public String getPath() {
  254. StringBuffer buf = new StringBuffer();
  255. for ( int i = 0; i < listModel.getSize(); i++ ) {
  256. if ( i != 0 ) {
  257. buf.append( File.pathSeparator );
  258. }
  259. buf.append( ( String ) listModel.get( i ) );
  260. }
  261. return buf.toString();
  262. }
  263. // +getPathArray() : String[]
  264. public String[] getPathArray() {
  265. String[] pathArray = new String[ listModel.getSize() ];
  266. for ( int i = 0; i < listModel.getSize(); i++ ) {
  267. pathArray[ i ] = ( String ) listModel.get( i );
  268. }
  269. return pathArray;
  270. }
  271. // +setEnabled(boolean) : void
  272. public void setEnabled( boolean enabled ) {
  273. this.enabled = enabled;
  274. super.setEnabled( enabled );
  275. if ( caption != null ) {
  276. caption.setEnabled( enabled );
  277. }
  278. list.clearSelection();
  279. list.setEnabled( enabled );
  280. updateButtons();
  281. }
  282. public void setFileSelectionMode( int fileSelectionMode ) {
  283. this.fileSelectionMode = fileSelectionMode;
  284. }
  285. public void setFileDialogTitle( String fileDialogTitle ) {
  286. this.fileDialogTitle = fileDialogTitle;
  287. }
  288. public void setFileFilter( FileFilter fileFilter ) {
  289. this.fileFilter = fileFilter;
  290. }
  291. public void setMultiSelectionEnabled( boolean multiSelectionEnabled ) {
  292. this.multiSelectionEnabled = multiSelectionEnabled;
  293. }
  294. public void setPath( String path ) {
  295. StringTokenizer strtok = new StringTokenizer( path, File.pathSeparator );
  296. while ( strtok.hasMoreTokens() ) {
  297. listModel.addElement( strtok.nextToken() );
  298. }
  299. }
  300. public void setPathArray( String[] pathArray ) {
  301. for ( int i = 0; i < pathArray.length; i++ ) {
  302. listModel.addElement( pathArray[ i ] );
  303. }
  304. }
  305. public void setSelectionMode( int selectionMode ) {
  306. list.setSelectionMode( selectionMode );
  307. }
  308. public void setStartDirectory( String startDirectory ) {
  309. this.startDirectory = startDirectory;
  310. }
  311. private void updateButtons() {
  312. int index = list.getSelectedIndex();
  313. add.setEnabled( enabled );
  314. remove.setEnabled( enabled && index >= 0 && listModel.getSize() > 0 );
  315. if ( moveUp != null ) {
  316. moveUp.setEnabled( enabled && index > 0 );
  317. moveDown.setEnabled(
  318. enabled && index >= 0 && index < listModel.getSize() - 1
  319. );
  320. }
  321. }
  322. }