ReadMe.txt
上传用户:daoqigc
上传日期:2021-04-20
资源大小:2795k
文件大小:4k
源码类别:

RichEdit

开发平台:

Delphi

  1. ================================================================
  2. ========================= Demo projects ========================
  3.                           For C++Builder 1-6
  4. ================================================================
  5. See also Tutorial.txt
  6. EditorEditor 1
  7.    TRichViewEdit-based editors. Demonstrates editor with fixed
  8.    set of styles, saving and loading, inserting items of different 
  9.    types, tables, list styles.
  10. EditorEditor 2
  11.    How to implement RichEdit-style editing operations
  12.    (make bold, apply font, etc.)
  13. MultiDemo
  14.    Several demos in one application
  15. DB Demo
  16.    2 demo projects
  17.    - using TDBRichViewEdit
  18.    - using TDBRichView and TRichViewEdit
  19. OfficeConverters
  20.    Demo for TRVOfficeConverter.
  21.    Sample HTML file is included.
  22.    It's recommended to use it with free Anders Melander's TGifImage,
  23.    http://www.torry.net/vcl/graphics/gif/gifimage.exe
  24.    See comments in the source code.
  25. ================================================================
  26. ============== Demos in ASSORTED subdirectory ==================
  27. ================================================================
  28. Load RVF
  29.    How to load file created in editor demo (EditorEditor 1)
  30. Save HTML (CB3+)
  31.    Loading RVF files (created in editor demo) and saving
  32.    them in HTML using advanced features.
  33.    (uses free Anders Melander's TGifImage,
  34.    http://www.torry.net/vcl/graphics/gif/gifimage.exe,
  35.    but can be modified to work with other GIF implementations
  36.    supporting assignment from other graphic formats)
  37. Search and Replace
  38.   Using search and replace dialogs with TRichViewEdit
  39. PlanetQuiz
  40.   Using tables, OnMouseMove and GetItemAt
  41. ========= Printing ========= 
  42. PrintingPrinting
  43.    How to print document. OnPagePrepaint event is used
  44.    to draw page numbers
  45. PrintingHeaders
  46.    Printing documents with headers and footers. Loading
  47.    RTF files with headers and footers.
  48. PrintingReportHelper
  49.    Printing using TRVReportHelper. Printing with one and
  50.    two columns.
  51. ========= IMAGES ========= 
  52. GraphicsToImage
  53.    Draws RichView document onto metafile canvas
  54. GraphicsEmoticons
  55.    Replaces :) :( :| with images
  56. GraphicsDragImg
  57.    Inserts dropped image in editor
  58. GraphicsSharedImages
  59.    Storing graphics outside of RVF files.
  60. ========= CUSTOM DRAWING =========
  61. Custom DrawCustomDraw
  62.    Custom drawing in RichView.
  63.    (C++Builder 3+ is required, since
  64.     TBitmap.ScanLines property was used)
  65. Custom DrawMathematics
  66.    One more example of custom drawing (math-style)
  67. ========= HYPERTEXT FEATURES =========
  68. HypertextURLs
  69.   Demo scans for URLs in text and makes them hypertext links.
  70. HypertextCreateHyperlink
  71.   Converts selected text to hyperlinks
  72. HypertextPhoneBook
  73.   Simple phonebook example: listbox-like selection using
  74.   hypertext.  
  75. ========= INTERNATIONAL FEATURES =========
  76. InternationalRTL
  77.   Using BiDiMode - displaying Hebrew and Arabic text (CB3+)
  78. InternationalAccents
  79.   Shows processing of combined Unicode characters 
  80.   (D3+, best viewed on WinNT/2000/XP)
  81. ========= DEMONSTRATION OF FIELDS =========
  82. FieldsLiveLink
  83.   Changes in RichViewEdit are reflected in edit box and vice versa
  84. FieldsFillInGaps
  85.   Allows to type text only in special fields in the document
  86. FieldsMailMerge
  87.   Two projects. The first one allows editing template with fields, 
  88.   the second projects fills this template with values
  89. FieldsMailMerge2
  90.   Advanced version. Instead of changing text of text items
  91.   representing fields, this demo replaces fields with
  92.   arbitrary RVF contents.
  93. FieldsSpreadsheet
  94.   Field values are calculated automatically
  95. ========= BULLETS AND NUMBERING =========
  96. ListStylesBullets
  97.   How to apply paragraph bullets and numbering
  98. ListStylesImageListBullets
  99.   Shows bullets with image list.