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 "RVEdit.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. TLabel *Label1;
  18. TLabel *Label2;
  19. TLabel *Label3;
  20. TRichViewEdit *RichViewEdit1;
  21. TButton *Button1;
  22. TButton *Button2;
  23. TEdit *Edit1;
  24. TEdit *Edit2;
  25. TButton *Button3;
  26. TRVStyle *RVStyle1;
  27. void __fastcall FormCreate(TObject *Sender);
  28. void __fastcall Button1Click(TObject *Sender);
  29. void __fastcall Button2Click(TObject *Sender);
  30. void __fastcall Button3Click(TObject *Sender);
  31. void __fastcall Edit1Change(TObject *Sender);
  32. void __fastcall Edit2Change(TObject *Sender);
  33. void __fastcall RichViewEdit1Change(TObject *Sender);
  34. private: // User declarations
  35.     // cached values (storing LastItem no is not necessary, but increases efficiency)
  36.     int LastNameItemNo, LastDateItemNo;
  37.     bool Freeze;
  38.     void InsertField(const AnsiString field, const AnsiString value,
  39.       int & LastItemNo);
  40. public: // User declarations
  41. __fastcall TForm1(TComponent* Owner);
  42. };
  43. //---------------------------------------------------------------------------
  44. extern TForm1 *Form1;
  45. //---------------------------------------------------------------------------
  46. #endif
  47.