/plugins/JDiffPlugin/tags/jdiffplugin-2_2_0/jdiff/options/JDiffHighlightOptionPane.java

# · Java · 95 lines · 55 code · 21 blank · 19 comment · 0 complexity · f3d9759b19e47306542a25f68e3a2ce2 MD5 · raw file

  1. /*
  2. * JDiffHighlightOptionPane.java
  3. * Copyright (c) 2000, 2001, 2002 Andre Kaplan
  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 jdiff.options;
  20. import javax.swing.JLabel;
  21. import org.gjt.sp.jedit.AbstractOptionPane;
  22. import org.gjt.sp.jedit.gui.ColorWellButton;
  23. import org.gjt.sp.jedit.jEdit;
  24. public class JDiffHighlightOptionPane extends AbstractOptionPane
  25. {
  26. private ColorWellButton highlightChangedLineColor;
  27. private ColorWellButton highlightDeletedLineColor;
  28. private ColorWellButton highlightInsertedLineColor;
  29. private ColorWellButton highlightInvalidLineColor;
  30. public JDiffHighlightOptionPane() {
  31. super("jdiff-highlight");
  32. }
  33. public void _init() {
  34. this.highlightChangedLineColor = new ColorWellButton(jEdit.getColorProperty("jdiff.highlight-changed-color"));
  35. this.highlightDeletedLineColor = new ColorWellButton(jEdit.getColorProperty("jdiff.highlight-deleted-color"));
  36. this.highlightInsertedLineColor = new ColorWellButton(jEdit.getColorProperty("jdiff.highlight-inserted-color"));
  37. this.highlightInvalidLineColor = new ColorWellButton(jEdit.getColorProperty("jdiff.highlight-invalid-color"));
  38. // Highlight colors
  39. addComponent(this.createLabel("options.jdiff.highlight"));
  40. addComponent(
  41. jEdit.getProperty("options.jdiff.highlight-changed-color"),
  42. this.highlightChangedLineColor
  43. );
  44. addComponent(
  45. jEdit.getProperty("options.jdiff.highlight-deleted-color"),
  46. this.highlightDeletedLineColor
  47. );
  48. addComponent(
  49. jEdit.getProperty("options.jdiff.highlight-inserted-color"),
  50. this.highlightInsertedLineColor
  51. );
  52. addComponent(
  53. jEdit.getProperty("options.jdiff.highlight-invalid-color"),
  54. this.highlightInvalidLineColor
  55. );
  56. }
  57. public void _save() {
  58. jEdit.setColorProperty("jdiff.highlight-changed-color",
  59. this.highlightChangedLineColor.getSelectedColor()
  60. );
  61. jEdit.setColorProperty("jdiff.highlight-deleted-color",
  62. this.highlightDeletedLineColor.getSelectedColor()
  63. );
  64. jEdit.setColorProperty("jdiff.highlight-inserted-color",
  65. this.highlightInsertedLineColor.getSelectedColor()
  66. );
  67. jEdit.setColorProperty("jdiff.highlight-invalid-color",
  68. this.highlightInvalidLineColor.getSelectedColor()
  69. );
  70. }
  71. private JLabel createLabel(String property) {
  72. return new JLabel(jEdit.getProperty(property));
  73. }
  74. }