PluginBridge.cs 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. using System.Drawing;
  2. using System.Runtime.InteropServices;
  3. using System.Threading.Tasks;
  4. using System.Windows.Forms;
  5. using Microsoft.International.Converters.TraditionalChineseToSimplifiedConverter;
  6. using NppChnConvPlugin.NppPluginInfrastructure;
  7. namespace NppChnConvPlugin
  8. {
  9. internal static class PluginBridge
  10. {
  11. private static readonly IScintillaGateway CurrentEditor = new ScintillaGateway(PluginBase.GetCurrentScintilla());
  12. // for get current editing file info
  13. private static readonly INotepadPPGateway Notepad = new NotepadPPGateway();
  14. public static bool Enable { get; private set; }
  15. public static void SetupPluginMenu()
  16. {
  17. PluginBase.SetCommand(0, "Convert To CHS", ConvertToChs);
  18. PluginBase.SetCommand(1, "Convert To CHT", ConvertToCht);
  19. }
  20. public static void SetupToolBarIcon()
  21. {
  22. var toolbarIcons = new toolbarIcons { hToolbarBmp = Properties.Resources.Bitmap1.GetHbitmap() };
  23. var pTbIcons = Marshal.AllocHGlobal(Marshal.SizeOf(toolbarIcons));
  24. Marshal.StructureToPtr(toolbarIcons, pTbIcons, false);
  25. Win32.SendMessage(PluginBase.nppData._nppHandle, (uint)NppMsg.NPPM_ADDTOOLBARICON, PluginBase._funcItems.Items[0]._cmdID, pTbIcons);
  26. Marshal.FreeHGlobal(pTbIcons);
  27. toolbarIcons = new toolbarIcons { hToolbarBmp = Properties.Resources.Bitmap2.GetHbitmap() };
  28. pTbIcons = Marshal.AllocHGlobal(Marshal.SizeOf(toolbarIcons));
  29. Marshal.StructureToPtr(toolbarIcons, pTbIcons, false);
  30. Win32.SendMessage(PluginBase.nppData._nppHandle, (uint)NppMsg.NPPM_ADDTOOLBARICON, PluginBase._funcItems.Items[1]._cmdID, pTbIcons);
  31. Marshal.FreeHGlobal(pTbIcons);
  32. }
  33. private static void ConvertToChs() => DoConvertSelect(ChineseConversionDirection.TraditionalToSimplified);
  34. private static void ConvertToCht() => DoConvertSelect(ChineseConversionDirection.SimplifiedToTraditional);
  35. private static void DoConvertSelect(ChineseConversionDirection chineseConversionDirection)
  36. {
  37. CurrentEditor.BeginUndoAction();
  38. var selections = CurrentEditor.GetSelections();
  39. for (int i = selections - 1; i >= 0; i--)
  40. {
  41. var start = CurrentEditor.GetSelectionNStart(i);
  42. var end = CurrentEditor.GetSelectionNEnd(i);
  43. if (end.Value - start.Value < 1) continue;
  44. CurrentEditor.SetTargetStart(start);
  45. CurrentEditor.SetTargetEnd(end);
  46. var text = CurrentEditor.GetTargetText();
  47. var convert = ChineseConverter.Convert(text, chineseConversionDirection);
  48. var len = CurrentEditor.EncodedFromUTF8Len(convert);
  49. CurrentEditor.ReplaceTarget(len, convert);
  50. }
  51. CurrentEditor.EndUndoAction();
  52. }
  53. public static void FlushState()
  54. {
  55. CurrentEditor.SetScintillaHandle(PluginBase.GetCurrentScintilla());
  56. }
  57. public static void UpdateText()
  58. {
  59. }
  60. public static void UpdateScroll()
  61. {
  62. }
  63. public static void Exit()
  64. {
  65. }
  66. }
  67. }