12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- // NPP plugin platform for .Net v0.94.00 by Kasper B. Graversen etc.
- using System;
- namespace NppChnConvPlugin.NppPluginInfrastructure
- {
- public class PluginBase
- {
- public static NppData nppData;
- public static FuncItems _funcItems = new FuncItems();
- public static void SetCommand(int index, string commandName, NppFuncItemDelegate functionPointer)
- {
- SetCommand(index, commandName, functionPointer, new ShortcutKey(), false);
- }
- public static void SetCommand(int index, string commandName, NppFuncItemDelegate functionPointer, ShortcutKey shortcut)
- {
- SetCommand(index, commandName, functionPointer, shortcut, false);
- }
- public static void SetCommand(int index, string commandName, NppFuncItemDelegate functionPointer, bool checkOnInit)
- {
- SetCommand(index, commandName, functionPointer, new ShortcutKey(), checkOnInit);
- }
- public static void SetCommand(int index, string commandName, NppFuncItemDelegate functionPointer, ShortcutKey shortcut, bool checkOnInit)
- {
- FuncItem funcItem = new FuncItem();
- funcItem._cmdID = index;
- funcItem._itemName = commandName;
- if (functionPointer != null) funcItem._pFunc = new NppFuncItemDelegate(functionPointer);
- if (shortcut._key != 0) funcItem._pShKey = shortcut;
- funcItem._init2Check = checkOnInit;
- _funcItems.Add(funcItem);
- }
- public static IntPtr GetCurrentScintilla()
- {
- int curScintilla;
- Win32.SendMessage(nppData._nppHandle, (uint)NppMsg.NPPM_GETCURRENTSCINTILLA, 0, out curScintilla);
- return (curScintilla == 0) ? nppData._scintillaMainHandle : nppData._scintillaSecondHandle;
- }
- private static readonly Func<IScintillaGateway> gatewayFactory = () => new ScintillaGateway(GetCurrentScintilla());
- public static Func<IScintillaGateway> GetGatewayFactory()
- {
- return gatewayFactory;
- }
- }
- }
|