/plugins/JCompiler/tags/jcompiler_1_1_3/jcompiler/JCompilerPane.java

# · Java · 293 lines · 221 code · 44 blank · 28 comment · 29 complexity · a0b05e7dd6f3c3b2fbd7c4c1612ef7dd MD5 · raw file

  1. /*
  2. * JCompilerPane.java - plugin options pane for JCompiler
  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;
  19. import javax.swing.*;
  20. import javax.swing.event.*;
  21. import java.awt.*;
  22. import java.awt.event.*;
  23. import java.io.*;
  24. import java.util.*;
  25. import org.gjt.sp.jedit.*;
  26. import org.gjt.sp.jedit.gui.*;
  27. /**
  28. * This is the option pane that jEdit displays for Plugin Options.
  29. */
  30. public class JCompilerPane
  31. extends AbstractOptionPane
  32. implements ActionListener, ChangeListener
  33. {
  34. private JRadioButton saveOnCompile;
  35. private JRadioButton saveNotOnCompile;
  36. private JRadioButton saveAllOnCompile;
  37. private JRadioButton saveOnPkgCompile;
  38. private JRadioButton saveNotOnPkgCompile;
  39. private JRadioButton saveAllOnPkgCompile;
  40. private JCheckBox specifyOutputDirectory;
  41. private JCheckBox showDeprecation;
  42. private JCheckBox useJavaCP;
  43. private JCheckBox addPkg2CP;
  44. private JTextArea newCP;
  45. private JLabel cpLabel;
  46. private JTextField outputDirectory;
  47. private JTextField regexp;
  48. private JTextField regexpFilename;
  49. private JTextField regexpLineNo;
  50. private JTextField regexpMessage;
  51. private JButton pickDirectory;
  52. public JCompilerPane() {
  53. super("jcompiler");
  54. }
  55. public void _init() {
  56. // ========== General options ==========
  57. addSeparator("options.jcompiler.sep.general");
  58. saveOnCompile = new JRadioButton(jEdit.getProperty(
  59. "options.jcompiler.autosave.current"));
  60. saveAllOnCompile = new JRadioButton(jEdit.getProperty(
  61. "options.jcompiler.autosave.all"));
  62. saveNotOnCompile = new JRadioButton(jEdit.getProperty(
  63. "options.jcompiler.autosave.not"));
  64. saveOnPkgCompile = new JRadioButton(jEdit.getProperty(
  65. "options.jcompiler.autosave.current"));
  66. saveAllOnPkgCompile = new JRadioButton(jEdit.getProperty(
  67. "options.jcompiler.autosave.all"));
  68. saveNotOnPkgCompile = new JRadioButton(jEdit.getProperty(
  69. "options.jcompiler.autosave.not"));
  70. ButtonGroup group1 = new ButtonGroup();
  71. group1.add(saveOnCompile);
  72. group1.add(saveAllOnCompile);
  73. group1.add(saveNotOnCompile);
  74. ButtonGroup group2 = new ButtonGroup();
  75. group2.add(saveOnPkgCompile);
  76. group2.add(saveAllOnPkgCompile);
  77. group2.add(saveNotOnPkgCompile);
  78. addComponent(new JLabel(jEdit.getProperty(
  79. "options.jcompiler.autosave.compile")));
  80. addComponent(saveOnCompile);
  81. addComponent(saveAllOnCompile);
  82. addComponent(saveNotOnCompile);
  83. addComponent(new JLabel(jEdit.getProperty(
  84. "options.jcompiler.autosave.compilepkg")));
  85. addComponent(saveOnPkgCompile);
  86. addComponent(saveAllOnPkgCompile);
  87. addComponent(saveNotOnPkgCompile);
  88. // ========== Compiler options ==========
  89. addSeparator("options.jcompiler.sep.compiler");
  90. showDeprecation = new JCheckBox(jEdit.getProperty(
  91. "options.jcompiler.showdeprecated"));
  92. showDeprecation.setSelected(jEdit.getBooleanProperty(
  93. "jcompiler.showdeprecated", true));
  94. addComponent(showDeprecation);
  95. specifyOutputDirectory = new JCheckBox(jEdit.getProperty(
  96. "options.jcompiler.specifyoutputdirectory"));
  97. specifyOutputDirectory.setSelected(jEdit.getBooleanProperty(
  98. "jcompiler.specifyoutputdirectory", false));
  99. specifyOutputDirectory.addChangeListener(this);
  100. addComponent(specifyOutputDirectory);
  101. outputDirectory = new JTextField();
  102. String output = jEdit.getProperty("jcompiler.outputdirectory");
  103. outputDirectory.setText(output == null ? "" : output);
  104. pickDirectory = new JButton(GUIUtilities.loadIcon("Open24.gif"));
  105. pickDirectory.addActionListener(this);
  106. JPanel outputPanel = new JPanel(new BorderLayout());
  107. outputPanel.add(outputDirectory, BorderLayout.CENTER);
  108. outputPanel.add(pickDirectory, BorderLayout.EAST);
  109. addComponent(jEdit.getProperty("options.jcompiler.outputDirectory"),
  110. outputPanel);
  111. // ========== Classpath options ==========
  112. addSeparator("options.jcompiler.sep.classpath");
  113. addPkg2CP = new JCheckBox(jEdit.getProperty(
  114. "options.jcompiler.addpkg2cp"));
  115. addPkg2CP.setSelected(jEdit.getBooleanProperty(
  116. "jcompiler.addpkg2cp", true));
  117. addComponent(addPkg2CP);
  118. useJavaCP = new JCheckBox(jEdit.getProperty(
  119. "options.jcompiler.usejavacp"));
  120. useJavaCP.setSelected(jEdit.getBooleanProperty(
  121. "jcompiler.usejavacp", true));
  122. useJavaCP.addActionListener(this);
  123. addComponent(useJavaCP);
  124. cpLabel = new JLabel(); // set text later in enableVisibility()
  125. addComponent(cpLabel);
  126. newCP = new JTextArea(2, 40);
  127. newCP.setLineWrap(true);
  128. newCP.setMinimumSize(new Dimension(300, 20));
  129. addComponent(new JScrollPane(newCP));
  130. // ========== Error parsing options ==========
  131. addSeparator("options.jcompiler.sep.errorparsing");
  132. regexp = new JTextField(jEdit.getProperty("jcompiler.regexp"));
  133. addComponent(jEdit.getProperty("options.jcompiler.regexp"), regexp);
  134. regexpFilename = new JTextField(jEdit.getProperty(
  135. "jcompiler.regexp.filename"));
  136. addComponent(jEdit.getProperty("options.jcompiler.regexp.filename"),
  137. regexpFilename);
  138. regexpLineNo = new JTextField(jEdit.getProperty(
  139. "jcompiler.regexp.lineno"));
  140. addComponent(jEdit.getProperty("options.jcompiler.regexp.lineno"),
  141. regexpLineNo);
  142. regexpMessage = new JTextField(jEdit.getProperty(
  143. "jcompiler.regexp.message"));
  144. addComponent(jEdit.getProperty("options.jcompiler.regexp.message"),
  145. regexpMessage);
  146. // ========== misc setup ==========
  147. enableAutosave();
  148. enableOutputDirectory(jEdit.getBooleanProperty(
  149. "jcompiler.specifyoutputdirectory", false));
  150. enableVisibility();
  151. }
  152. public void actionPerformed(ActionEvent e) {
  153. if (e.getSource() == pickDirectory) {
  154. // the "choose dir" button was pressed:
  155. JFileChooser chooser = new JFileChooser();
  156. chooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
  157. //chooser.setTitle("Select output directory");
  158. int retVal = chooser.showOpenDialog(this);
  159. if (retVal == JFileChooser.APPROVE_OPTION) {
  160. File file = chooser.getSelectedFile();
  161. if (file != null) {
  162. try {
  163. String dirName = file.getCanonicalPath();
  164. outputDirectory.setText(dirName);
  165. }
  166. catch(IOException donothing) {
  167. // shouldn't happen
  168. }
  169. }
  170. }
  171. } else {
  172. enableVisibility();
  173. }
  174. }
  175. public void stateChanged(ChangeEvent e) {
  176. if (specifyOutputDirectory.isSelected()) {
  177. enableOutputDirectory(true);
  178. } else {
  179. enableOutputDirectory(false);
  180. }
  181. }
  182. public void _save() {
  183. jEdit.setBooleanProperty("jcompiler.javacompile.autosave", saveOnCompile.isSelected());
  184. jEdit.setBooleanProperty("jcompiler.javacompile.autosaveall", saveAllOnCompile.isSelected());
  185. jEdit.setBooleanProperty("jcompiler.javapkgcompile.autosave", saveOnPkgCompile.isSelected());
  186. jEdit.setBooleanProperty("jcompiler.javapkgcompile.autosaveall", saveAllOnPkgCompile.isSelected());
  187. jEdit.setBooleanProperty("jcompiler.showdeprecated", showDeprecation.isSelected());
  188. jEdit.setBooleanProperty("jcompiler.specifyoutputdirectory", specifyOutputDirectory.isSelected());
  189. jEdit.setBooleanProperty("jcompiler.usejavacp", useJavaCP.isSelected());
  190. jEdit.setBooleanProperty("jcompiler.addpkg2cp", addPkg2CP.isSelected());
  191. jEdit.setProperty("jcompiler.outputdirectory", outputDirectory.getText());
  192. jEdit.setProperty("jcompiler.regexp", regexp.getText());
  193. jEdit.setProperty("jcompiler.regexp.filename", regexpFilename.getText());
  194. jEdit.setProperty("jcompiler.regexp.lineno", regexpLineNo.getText());
  195. jEdit.setProperty("jcompiler.regexp.message", regexpMessage.getText());
  196. if (!useJavaCP.isSelected()) {
  197. jEdit.setProperty("jcompiler.classpath", newCP.getText());
  198. }
  199. if (saveOnCompile.isSelected()) {
  200. jEdit.setProperty("jcompiler.javacompile.autosave", "current");
  201. } else if (saveAllOnCompile.isSelected()) {
  202. jEdit.setProperty("jcompiler.javacompile.autosave", "all");
  203. } else {
  204. jEdit.setProperty("jcompiler.javacompile.autosave", "no");
  205. }
  206. if (saveOnPkgCompile.isSelected()) {
  207. jEdit.setProperty("jcompiler.javapkgcompile.autosave", "current");
  208. } else if (saveAllOnPkgCompile.isSelected()) {
  209. jEdit.setProperty("jcompiler.javapkgcompile.autosave", "all");
  210. } else {
  211. jEdit.setProperty("jcompiler.javapkgcompile.autosave", "no");
  212. }
  213. }
  214. private void enableOutputDirectory(boolean enable) {
  215. outputDirectory.setEnabled(enable);
  216. pickDirectory.setEnabled(enable);
  217. }
  218. private void enableAutosave() {
  219. String s = jEdit.getProperty("jcompiler.javacompile.autosave", "no");
  220. if ("current".equals(s)) {
  221. saveOnCompile.setSelected(true);
  222. } else if ("all".equals(s)) {
  223. saveAllOnCompile.setSelected(true);
  224. } else {
  225. saveNotOnCompile.setSelected(true);
  226. }
  227. s = jEdit.getProperty("jcompiler.javapkgcompile.autosave", "no");
  228. if ("current".equals(s)) {
  229. saveOnPkgCompile.setSelected(true);
  230. } else if ("all".equals(s)) {
  231. saveAllOnPkgCompile.setSelected(true);
  232. } else {
  233. saveNotOnPkgCompile.setSelected(true);
  234. }
  235. }
  236. private void enableVisibility() {
  237. if (useJavaCP.isSelected()) {
  238. cpLabel.setText(jEdit.getProperty(
  239. "options.jcompiler.usejavacp.true"));
  240. newCP.setText(System.getProperty("java.class.path"));
  241. newCP.setEnabled(false);
  242. } else {
  243. cpLabel.setText(jEdit.getProperty(
  244. "options.jcompiler.usejavacp.false"));
  245. newCP.setText(jEdit.getProperty("jcompiler.classpath"));
  246. newCP.setEnabled(true);
  247. }
  248. }
  249. }