ScintInt.InnoSetup.pas 664 B

123456789101112131415161718192021222324252627282930
  1. unit ScintInt.InnoSetup;
  2. {
  3. Inno Setup
  4. Copyright (C) 1997-2024 Jordan Russell
  5. Portions by Martijn Laan
  6. For conditions of distribution and use, see LICENSE.TXT.
  7. Constants added in Inno Setup's Scintilla build
  8. }
  9. interface
  10. const
  11. SC_MARK_BACKFORE = 34;
  12. SC_CMDKEYS_DEFAULT = 0;
  13. SC_CMDKEYS_VSCODE_WINDOWS = 1;
  14. SCI_RESETALLCMDKEYS = 3000;
  15. SC_AUTOCOMPLETE_DARK_MODE = 4;
  16. SCI_AUTOCSETMINWIDTH = 3010;
  17. SCI_AUTOCGETMINWIDTH = 3011;
  18. SCI_CALLTIPSETFOREBORDER = 3020;
  19. SC_MOUSEMAPPING_DEFAULT = 0;
  20. SC_MOUSEMAPPING_VSCODE_WINDOWS = 1;
  21. SCI_SETMOUSEMAPPING = 3030;
  22. SCI_GETMOUSEMAPPING = 3031;
  23. implementation
  24. end.