/plugins/JCompiler/tags/jcompiler_1_1_2/jcompiler/options/JCompilerOptionPaneCompiler.java

# · Java · 233 lines · 150 code · 44 blank · 39 comment · 20 complexity · fb2fc6588d7b775d90f192917f545146 MD5 · raw file

  1. /*
  2. * JCompilerOptionPaneCompiler.java - plugin options pane for JCompiler - compiler options
  3. * (c) 1999, 2000 Kevin A. Burton and Aziz Sharif
  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. package jcompiler.options;
  19. import javax.swing.*;
  20. import java.awt.*;
  21. import java.awt.event.*;
  22. import java.io.File;
  23. import java.io.IOException;
  24. import java.net.URL;
  25. import org.gjt.sp.jedit.*;
  26. import org.gjt.sp.util.Log;
  27. /**
  28. * This is the option pane that jEdit displays for JCompiler's
  29. * compiler plugin options.
  30. */
  31. public class JCompilerOptionPaneCompiler
  32. extends AbstractOptionPane
  33. implements ActionListener
  34. {
  35. public JCompilerOptionPaneCompiler() {
  36. super("jcompiler.compiler");
  37. }
  38. public void _init() {
  39. // "Generate debug info (-g)"
  40. genDebug = new JCheckBox(jEdit.getProperty("options.jcompiler.gendebug"));
  41. genDebug.setSelected(jEdit.getBooleanProperty("jcompiler.gendebug", true));
  42. addComponent(genDebug);
  43. // "Generate optimized code (-O)"
  44. genOptimized = new JCheckBox(jEdit.getProperty("options.jcompiler.genoptimized"));
  45. genOptimized.setSelected(jEdit.getBooleanProperty("jcompiler.genoptimized", false));
  46. addComponent(genOptimized);
  47. // "Warn about use of deprecated API (-deprecation)"
  48. showDeprecation = new JCheckBox(jEdit.getProperty("options.jcompiler.showdeprecated"));
  49. showDeprecation.setSelected(jEdit.getBooleanProperty("jcompiler.showdeprecated", true));
  50. addComponent(showDeprecation);
  51. addComponent(Box.createVerticalStrut(20));
  52. // "Set the base directory of your current project here (or leave it empty)"
  53. addComponent(new JLabel(jEdit.getProperty("options.jcompiler.basepath.description1")));
  54. // "$basepath"
  55. basePath = new JTextField();
  56. String basePathValue = jEdit.getProperty("jcompiler.basepath");
  57. basePath.setText(basePathValue == null ? "" : basePathValue);
  58. pickBasePathButton = new JButton(pickIcon);
  59. pickBasePathButton.setMargin(new Insets(0,0,0,0));
  60. pickBasePathButton.setToolTipText(jEdit.getProperty("options.jcompiler.pick.tooltip"));
  61. pickBasePathButton.addActionListener(this);
  62. JPanel basePathPanel = new JPanel(new BorderLayout());
  63. basePathPanel.add(basePath, BorderLayout.CENTER);
  64. basePathPanel.add(pickBasePathButton, BorderLayout.EAST);
  65. addComponent(jEdit.getProperty("options.jcompiler.basepath"), basePathPanel);
  66. addComponent(Box.createVerticalStrut(10));
  67. // "You may use the $basepath variable in the following paths:"
  68. addComponent(new JLabel(jEdit.getProperty("options.jcompiler.basepath.description2")));
  69. // "Source path" (only on JDK 1.2 or higher)
  70. if (!isOldJDK) {
  71. srcPath = new JTextField();
  72. String srcPathValue = jEdit.getProperty("jcompiler.sourcepath");
  73. srcPath.setText(srcPathValue == null ? "" : srcPathValue);
  74. srcPath.setPreferredSize(new Dimension(270, srcPath.getPreferredSize().height));
  75. addComponent(jEdit.getProperty("options.jcompiler.sourcepath"), srcPath);
  76. }
  77. // "Required library path"
  78. libPath = new JTextField();
  79. String libPathValue = jEdit.getProperty("jcompiler.libpath");
  80. libPath.setText(libPathValue == null ? "" : libPathValue);
  81. libPath.setPreferredSize(new Dimension(270, libPath.getPreferredSize().height));
  82. addComponent(jEdit.getProperty("options.jcompiler.libpath"), libPath);
  83. // "Class path"
  84. classPath = new JTextField();
  85. String classPathValue = jEdit.getProperty("jcompiler.classpath");
  86. classPath.setText(classPathValue == null ? "" : classPathValue);
  87. classPath.setPreferredSize(new Dimension(270, classPath.getPreferredSize().height));
  88. addComponent(jEdit.getProperty("options.jcompiler.classpath"), classPath);
  89. // Output directory text field (+ select button)
  90. String output = null;
  91. if (jEdit.getBooleanProperty("jcompiler.specifyoutputdirectory"))
  92. output = jEdit.getProperty("jcompiler.outputdirectory");
  93. outputDirectory = new JTextField();
  94. outputDirectory.setText(output == null ? "" : output);
  95. pickDirectory = new JButton(pickIcon);
  96. pickDirectory.setMargin(new Insets(0,0,0,0));
  97. pickDirectory.setToolTipText(jEdit.getProperty("options.jcompiler.pick.tooltip"));
  98. pickDirectory.addActionListener(this);
  99. JPanel outputPanel = new JPanel(new BorderLayout());
  100. outputPanel.add(outputDirectory, BorderLayout.CENTER);
  101. outputPanel.add(pickDirectory, BorderLayout.EAST);
  102. addComponent(jEdit.getProperty("options.jcompiler.outputDirectory"), outputPanel);
  103. // "Add package of current sourcefile to CLASSPATH"
  104. addPkg2CP = new JCheckBox(jEdit.getProperty("options.jcompiler.addpkg2cp"));
  105. addPkg2CP.setSelected(jEdit.getBooleanProperty("jcompiler.addpkg2cp", true));
  106. addComponent("", addPkg2CP);
  107. addComponent(Box.createVerticalStrut(20));
  108. // "Other options:"
  109. otherOptions = new JTextField();
  110. String options = jEdit.getProperty("jcompiler.otheroptions");
  111. otherOptions.setText(options == null ? "" : options);
  112. addComponent(jEdit.getProperty("options.jcompiler.otheroptions"), otherOptions);
  113. }
  114. public void _save() {
  115. jEdit.setBooleanProperty("jcompiler.genDebug", genDebug.isSelected());
  116. jEdit.setBooleanProperty("jcompiler.genOptimized", genOptimized.isSelected());
  117. jEdit.setBooleanProperty("jcompiler.showdeprecated", showDeprecation.isSelected());
  118. jEdit.setBooleanProperty("jcompiler.addpkg2cp", addPkg2CP.isSelected());
  119. jEdit.setProperty("jcompiler.basepath", basePath.getText().trim());
  120. jEdit.setProperty("jcompiler.libpath", libPath.getText().trim());
  121. jEdit.setProperty("jcompiler.classpath", classPath.getText().trim());
  122. jEdit.setProperty("jcompiler.otheroptions", otherOptions.getText().trim());
  123. if (!isOldJDK)
  124. jEdit.setProperty("jcompiler.sourcepath", srcPath.getText().trim());
  125. String outputDir = outputDirectory.getText().trim();
  126. jEdit.setBooleanProperty("jcompiler.specifyoutputdirectory", outputDir.length() > 0);
  127. jEdit.setProperty("jcompiler.outputdirectory", outputDir);
  128. }
  129. public void actionPerformed(ActionEvent e) {
  130. if (e.getSource() == pickDirectory) {
  131. File file = chooseDirectory();
  132. setDirectoryText(file, outputDirectory);
  133. }
  134. else if (e.getSource() == pickBasePathButton) {
  135. File file = chooseDirectory();
  136. setDirectoryText(file, basePath);
  137. }
  138. }
  139. /**
  140. * Display a file chooser dialog for directories only.
  141. *
  142. * @return the File if one was selected, or null if user clicked cancel.
  143. */
  144. private File chooseDirectory() {
  145. JFileChooser chooser = new JFileChooser();
  146. chooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
  147. chooser.setDialogTitle(jEdit.getProperty("options.jcompiler.pick.tooltip"));
  148. int retVal = chooser.showOpenDialog(this);
  149. if (retVal == JFileChooser.APPROVE_OPTION)
  150. return chooser.getSelectedFile();
  151. else
  152. return null;
  153. }
  154. private void setDirectoryText(File file, JTextField textField) {
  155. if (file != null) {
  156. try {
  157. String dirName = file.getCanonicalPath();
  158. textField.setText(dirName);
  159. }
  160. catch(IOException e) {
  161. Log.log(Log.ERROR, this, "Something went wrong getting the canonical path for directory " + file);
  162. Log.log(Log.ERROR, this, e);
  163. }
  164. }
  165. }
  166. private JCheckBox genDebug;
  167. private JCheckBox genOptimized;
  168. private JCheckBox showDeprecation;
  169. private JCheckBox addPkg2CP;
  170. private JLabel cpLabel;
  171. private JTextField outputDirectory;
  172. private JTextField otherOptions;
  173. private JButton pickDirectory;
  174. private JButton pickBasePathButton;
  175. private JTextField basePath;
  176. private JTextField srcPath;
  177. private JTextField libPath;
  178. private JTextField classPath;
  179. /** true, if JDK version is less than 1.2. */
  180. private final static boolean isOldJDK = (MiscUtilities.compareVersions(System.getProperty("java.version"), "1.2") < 0);
  181. private static Icon pickIcon = null;
  182. static {
  183. URL url = JCompilerOptionPaneCompiler.class.getResource("DirOpen.gif");
  184. if (url != null)
  185. pickIcon = new ImageIcon(url);
  186. else
  187. Log.log(Log.ERROR, JCompilerOptionPaneCompiler.class, "Error fetching image DirOpen.gif");
  188. }
  189. }