PageRenderTime 55ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

/jEdit/tags/jedit-4-2-pre4/jars/QuickNotepad/changes42.txt

#
Plain Text | 26 lines | 16 code | 10 blank | 0 comment | 0 complexity | fde8aa9ae0f420825e30dfadefc54fc8 MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  1. $Id: changes42.txt 4665 2003-04-30 05:28:55Z spestov $
  2. Changes made to QuickNotepad plugin for jEdit 4.2:
  3. (1) The following property was added:
  4. plugin.QuickNotepadPlugin.activate=defer
  5. This informs jEdit the plugin is using the new API, and that it should only be
  6. loaded the first time it is accessed by the user.
  7. (2) The createMenuItems() method of the plugin core class has been removed. The
  8. plugin menu is now specified with the following property:
  9. plugin.QuickNotepadPlugin.menu=... list of menu items ...
  10. (3) The createOptionPanes() method of the plugin core class has been removed. The plugin option pane is now specified with the following property:
  11. plugin.QuickNotepadPlugin.option-pane=quicknotepad
  12. (4) The QuickNotepad class (the dockable window) implements the new DefaultFocusComponent interface, and the following method was added to this class:
  13. public void focusOnDefaultComponent()
  14. {
  15. textArea.requestFocus();
  16. }