* Initial check-in of RTF parser required for RichTextBox control
authorPeter Dennis Bartok <pbartok@mono-cvs.ximian.com>
Tue, 6 Sep 2005 01:38:50 +0000 (01:38 -0000)
committerPeter Dennis Bartok <pbartok@mono-cvs.ximian.com>
Tue, 6 Sep 2005 01:38:50 +0000 (01:38 -0000)
commitb46e9a536aed98b9d624fad8c7fc17528cba460a
tree2d211413c74e9f8b1ef65250b19b42f776c60e8a
parentcd4fe9debe85b9ead92626d361c0242e8259cf7b
* Initial check-in of RTF parser required for RichTextBox control

2005-09-04  Peter Dennis Bartok  <pbartok@novell.com>

* System.Windows.Forms.dll.sources: Added System.Windows.Forms.RTF
  subdirectory to build
* SWF.csproj: Updated

2005-09-04  Peter Dennis Bartok  <pbartok@novell.com>

* Charcode.cs: Created; provides StandardCharCode <-> character
  translation
* Charset.cs: Created; provides two standard charsets, AnsiGeneral
  and AnsiSymbol
* CharsetFlags.cs: Created
* CharsetType.cs: Created
* ClassDelegate.cs: Created; allows consumer to register a callback
  for RTF command classes
* Color.cs: Created; provides access to RTF-defined RGB color sets
* DestinationDelegate.cs: Created; allows consumer to register a
  callback for Destination class types
* Font.cs: Created; provides access to RTF-defined font descriptions
* KeysInit.cs: Created; provides translation table from RTF keyword
  to Major/Minor classes
* KeyStruct.cs: Created
* Major.cs: Created; describes available RTF command groups
* Minor.cs: Created; describes available 'arguments' for command groups
* README: Created
* RTF.cs: Created; contains main RTF parser code
* rtf.csproj: Created; provides Visual Studio project that allows to
  use test this assembly via the included test.cs
  to provide
* RTFException.cs: Created; provides custom RTF exception class
* StandardCharCode.cs: Created
* StandardCharName.cs: Created
* Style.cs: Created; provides access to RTF-define styles
* StyleElement.cs: Created; provides support class to allow parsing
  recursive styles
* StyleType.cs: Created
* test.cs: Test code showing use of RTF class (also acts as Main for
  the included Visual Studio project)
* TextMap.cs: Created; allows to create simple translation table for
  converting parsed RTF document to text; table-based
* TokenClass.cs: Created; describes all available RTF command classes

svn path=/trunk/mcs/; revision=49518
28 files changed:
mcs/class/Managed.Windows.Forms/ChangeLog
mcs/class/Managed.Windows.Forms/System.Windows.Forms.RTF/ChangeLog [new file with mode: 0644]
mcs/class/Managed.Windows.Forms/System.Windows.Forms.RTF/Charcode.cs [new file with mode: 0644]
mcs/class/Managed.Windows.Forms/System.Windows.Forms.RTF/Charset.cs [new file with mode: 0644]
mcs/class/Managed.Windows.Forms/System.Windows.Forms.RTF/CharsetFlags.cs [new file with mode: 0644]
mcs/class/Managed.Windows.Forms/System.Windows.Forms.RTF/CharsetType.cs [new file with mode: 0644]
mcs/class/Managed.Windows.Forms/System.Windows.Forms.RTF/ClassDelegate.cs [new file with mode: 0644]
mcs/class/Managed.Windows.Forms/System.Windows.Forms.RTF/Color.cs [new file with mode: 0644]
mcs/class/Managed.Windows.Forms/System.Windows.Forms.RTF/DestinationDelegate.cs [new file with mode: 0644]
mcs/class/Managed.Windows.Forms/System.Windows.Forms.RTF/Font.cs [new file with mode: 0644]
mcs/class/Managed.Windows.Forms/System.Windows.Forms.RTF/KeyStruct.cs [new file with mode: 0644]
mcs/class/Managed.Windows.Forms/System.Windows.Forms.RTF/KeysInit.cs [new file with mode: 0644]
mcs/class/Managed.Windows.Forms/System.Windows.Forms.RTF/Major.cs [new file with mode: 0644]
mcs/class/Managed.Windows.Forms/System.Windows.Forms.RTF/Minor.cs [new file with mode: 0644]
mcs/class/Managed.Windows.Forms/System.Windows.Forms.RTF/README [new file with mode: 0644]
mcs/class/Managed.Windows.Forms/System.Windows.Forms.RTF/RTF.cs [new file with mode: 0644]
mcs/class/Managed.Windows.Forms/System.Windows.Forms.RTF/RTFException.cs [new file with mode: 0644]
mcs/class/Managed.Windows.Forms/System.Windows.Forms.RTF/StandardCharCode.cs [new file with mode: 0644]
mcs/class/Managed.Windows.Forms/System.Windows.Forms.RTF/StandardCharName.cs [new file with mode: 0644]
mcs/class/Managed.Windows.Forms/System.Windows.Forms.RTF/Style.cs [new file with mode: 0644]
mcs/class/Managed.Windows.Forms/System.Windows.Forms.RTF/StyleElement.cs [new file with mode: 0644]
mcs/class/Managed.Windows.Forms/System.Windows.Forms.RTF/StyleType.cs [new file with mode: 0644]
mcs/class/Managed.Windows.Forms/System.Windows.Forms.RTF/TextMap.cs [new file with mode: 0644]
mcs/class/Managed.Windows.Forms/System.Windows.Forms.RTF/TokenClass.cs [new file with mode: 0644]
mcs/class/Managed.Windows.Forms/System.Windows.Forms.RTF/rtf.csproj [new file with mode: 0644]
mcs/class/Managed.Windows.Forms/System.Windows.Forms.RTF/rtf.csproj.user [new file with mode: 0644]
mcs/class/Managed.Windows.Forms/System.Windows.Forms.RTF/test.cs [new file with mode: 0644]
mcs/class/Managed.Windows.Forms/System.Windows.Forms.dll.sources