/jEdit/tags/jedit-4-3-pre5/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
3Changes made to QuickNotepad plugin for jEdit 4.2:
4
5(1) The following property was added:
6
7 plugin.QuickNotepadPlugin.activate=defer
8
9This informs jEdit the plugin is using the new API, and that it should only be
10loaded the first time it is accessed by the user.
11
12(2) The createMenuItems() method of the plugin core class has been removed. The
13plugin menu is now specified with the following property:
14
15 plugin.QuickNotepadPlugin.menu=... list of menu items ...
16
17(3) The createOptionPanes() method of the plugin core class has been removed. The plugin option pane is now specified with the following property:
18
19 plugin.QuickNotepadPlugin.option-pane=quicknotepad
20
21(4) The QuickNotepad class (the dockable window) implements the new DefaultFocusComponent interface, and the following method was added to this class:
22
23 public void focusOnDefaultComponent()
24 {
25 textArea.requestFocus();
26 }