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

RichEdit

开发平台:

Delphi

  1. /*=============================================================================}
  2. { Demo of basic using of hypertext                                             }
  3. { In this demo were modified styles: RVStyle1->TextStyles>[4] and              }
  4. { RVStyle->TextStyles->Items[5]                                                }
  5. { Setting RVStyle->TextStyles->Items[i].Jump to True turns this text style into}
  6. { hypertext style.                                                             }
  7. { Properties of text styles affecting hypertext appearance:                    }
  8. { - HoverColor (color of hypertext under mouse (clNone for not changing)       }
  9. { - HoverBackColor (color of hypertext background under mouse (clNone for      }
  10. {   transparent)                                                               }
  11. { - JumpCursor                                                                 }
  12. {------------------------------------------------------------------------------}
  13. { Key events and properties:                                                   }
  14. { - OnJump, OnRVMouseMove                                                      }
  15. { - FirstJumpNo                                                                }
  16. {=============================================================================*/
  17. #include <vclvcl.h>
  18. #pragma hdrstop
  19. #include "Unit1.h"
  20. //---------------------------------------------------------------------------
  21. #pragma link "RichView"
  22. #pragma link "RVScroll"
  23. #pragma link "RVStyle"
  24. #pragma resource "*.dfm"
  25. TForm1 *Form1;
  26. //---------------------------------------------------------------------------
  27. __fastcall TForm1::TForm1(TComponent* Owner)
  28.     : TForm(Owner)
  29. {
  30. }
  31. //---------------------------------------------------------------------------
  32. void __fastcall TForm1::FormCreate(TObject *Sender)
  33. {
  34.   // RVStyle1->TextStyles->Items[4].Jump == RVStyle1->TextStyles->Items[5].Jump == True
  35.   // This causes these styles to represent hypertext
  36.   RichView1->AddNL("Hypertext",1,1);
  37.   RichView1->AddNL("Some text styles can be chosen as hypertext styles. ",0,0);
  38.   RichView1->AddNL("Like this one.",4,-1);
  39.   RichView1->AddNL(" You can have as many hypertext styles as you want.  ",0,-1);
  40.   RichView1->AddNL("Here is one more.",5,-1);
  41.   RichView1->Format();
  42.   /*
  43.     The basic method to use hypertext is "hypertext IDs".
  44.     All hypertext jumps are numbered sequentially (0,1,...) from top of
  45.     document to bottom. These numbers are called "hypertext IDs".
  46.     Hypertext id is passed in OnJump and OnRVMouseMove events.
  47.     More correct, jumps are numbered as FirstJumpNo, FirstJumpNo+1,
  48.     FirstJumpNo+2,...
  49.     FirstJumpNo is a property of RichView, 0 by default
  50.   */
  51. }
  52. //---------------------------------------------------------------------------
  53. void __fastcall TForm1::RichView1Jump(TObject *Sender, int id)
  54. {
  55.   Panel1->Caption = AnsiString("Clicked: ")+IntToStr(id);    
  56. }
  57. //---------------------------------------------------------------------------
  58. void __fastcall TForm1::RichView1RVMouseMove(TObject *Sender, int id)
  59. {
  60.   // id==-1 when mouse leaves hypertext jump area
  61.   if (id!=-1)
  62.     Label1->Caption = IntToStr(id);
  63.   else
  64.     Label1->Caption = "---";
  65. }
  66. //---------------------------------------------------------------------------