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

RichEdit

开发平台:

Delphi

  1. //---------------------------------------------------------------------------
  2. #ifndef Unit1H
  3. #define Unit1H
  4. //---------------------------------------------------------------------------
  5. #include <vclClasses.hpp>
  6. #include <vclControls.hpp>
  7. #include <vclStdCtrls.hpp>
  8. #include <vclForms.hpp>
  9. #include <vclExtCtrls.hpp>
  10. #include "RichView.hpp"
  11. #include "RVScroll.hpp"
  12. #include "RVStyle.hpp"
  13. //---------------------------------------------------------------------------
  14. class TForm1 : public TForm
  15. {
  16. __published: // IDE-managed Components
  17.     TImage *Image1;
  18.     TLabel *Label1;
  19.     TLabel *Label2;
  20.     TLabel *Label3;
  21.     TRichView *RichView1;
  22.     TPanel *panMouseDown;
  23.     TPanel *panMouseUp;
  24.     TPanel *panRightClick;
  25.     TPanel *panDblClick;
  26.     TRVStyle *RVStyle1;
  27.     void __fastcall RichView1RVDblClick(TCustomRichView *Sender,
  28.     AnsiString ClickedWord, int Style);
  29.     void __fastcall FormCreate(TObject *Sender);
  30.     void __fastcall RichView1RVMouseDown(TCustomRichView *Sender,
  31.     TMouseButton Button, TShiftState Shift, int ItemNo, int X, int Y);
  32.     void __fastcall RichView1RVMouseUp(TCustomRichView *Sender,
  33.     TMouseButton Button, TShiftState Shift, int ItemNo, int X, int Y);
  34.     void __fastcall RichView1RVRightClick(TCustomRichView *Sender,
  35.     AnsiString ClickedWord, int Style, int X, int Y);
  36. private: // User declarations
  37.     AnsiString MouseInfo(TMouseButton Button, TShiftState Shift, int ItemNo, int X, int Y);
  38. public: // User declarations
  39.     __fastcall TForm1(TComponent* Owner);
  40. };
  41. //---------------------------------------------------------------------------
  42. extern TForm1 *Form1;
  43. //---------------------------------------------------------------------------
  44. #endif