ChangeLog 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  1. 2005-09-04 Peter Dennis Bartok <[email protected]>
  2. * Charcode.cs: Created; provides StandardCharCode <-> character
  3. translation
  4. * Charset.cs: Created; provides two standard charsets, AnsiGeneral
  5. and AnsiSymbol
  6. * CharsetFlags.cs: Created
  7. * CharsetType.cs: Created
  8. * ClassDelegate.cs: Created; allows consumer to register a callback
  9. for RTF command classes
  10. * Color.cs: Created; provides access to RTF-defined RGB color sets
  11. * DestinationDelegate.cs: Created; allows consumer to register a
  12. callback for Destination class types
  13. * Font.cs: Created; provides access to RTF-defined font descriptions
  14. * KeysInit.cs: Created; provides translation table from RTF keyword
  15. to Major/Minor classes
  16. * KeyStruct.cs: Created
  17. * Major.cs: Created; describes available RTF command groups
  18. * Minor.cs: Created; describes available 'arguments' for command groups
  19. * README: Created
  20. * RTF.cs: Created; contains main RTF parser code
  21. * rtf.csproj: Created; provides Visual Studio project that allows to
  22. use test this assembly via the included test.cs
  23. to provide
  24. * RTFException.cs: Created; provides custom RTF exception class
  25. * StandardCharCode.cs: Created
  26. * StandardCharName.cs: Created
  27. * Style.cs: Created; provides access to RTF-define styles
  28. * StyleElement.cs: Created; provides support class to allow parsing
  29. recursive styles
  30. * StyleType.cs: Created
  31. * test.cs: Test code showing use of RTF class (also acts as Main for
  32. the included Visual Studio project)
  33. * TextMap.cs: Created; allows to create simple translation table for
  34. converting parsed RTF document to text; table-based
  35. * TokenClass.cs: Created; describes all available RTF command classes