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

RichEdit

开发平台:

Delphi

  1. //---------------------------------------------------------------------------
  2. #ifndef OptionsFrmH
  3. #define OptionsFrmH
  4. //---------------------------------------------------------------------------
  5. #include <vclClasses.hpp>
  6. #include <vclControls.hpp>
  7. #include <vclStdCtrls.hpp>
  8. #include <vclForms.hpp>
  9. #include <vclComCtrls.hpp>
  10. #include <RVStyle.hpp>
  11. //---------------------------------------------------------------------------
  12. class TfrmOptions : public TForm
  13. {
  14. __published: // IDE-managed Components
  15. TButton *btnOk;
  16. TButton *btnCancel;
  17. TPageControl *PageControl1;
  18. TTabSheet *TabSheet1;
  19. TGroupBox *GroupBox1;
  20. TCheckBox *cbRVFSaveBackground;
  21. TCheckBox *cbRVFSaveLayout;
  22. TCheckBox *cbRVFBinary;
  23. TCheckBox *cbRVFSavePictures;
  24. TCheckBox *cbRVFSaveControls;
  25. TCheckBox *cbRVFSaveTextStyles;
  26. TCheckBox *cbRVFSaveParaStyles;
  27. TTabSheet *TabSheet2;
  28. TGroupBox *GroupBox2;
  29. TCheckBox *cbRVFLoadBackground;
  30. TCheckBox *cbRVFLoadLayout;
  31. TCheckBox *cbRVFIgnoreUnknownPictures;
  32. TCheckBox *cbRVFIgnoreUnknownControls;
  33. TCheckBox *cbRVFInvStyles;
  34. TCheckBox *cbRVFInvImageIndices;
  35. TTabSheet *TabSheet3;
  36. TLabel *Label1;
  37. TGroupBox *GroupBox3;
  38. TCheckBox *cbHTMLOverrideImages;
  39. TCheckBox *cbHTMLListAsTest;
  40. TCheckBox *cbHTMLForceNonTextCSS;
  41. TCheckBox *cbHTMLDefault0Style;
  42. TCheckBox *cbHTMLSaveImageSizes;
  43. TCheckBox *cbHTMLNoHypertextImageBorders;
  44. TCheckBox *cbHTMLUseCheckpointsNames;
  45. TEdit *txtHTMLTitle;
  46. private: // User declarations
  47. public: // User declarations
  48. __fastcall TfrmOptions(TComponent* Owner);
  49.     void SetOptions(TRVFOptions RVFOptions, TRVSaveOptions HTMLOptions,
  50.       const AnsiString HTMLTitle);
  51.     void GetOptions(TRVFOptions& RVFOptions, TRVSaveOptions& HTMLOptions,
  52.       AnsiString& HTMLTitle);
  53. };
  54. //---------------------------------------------------------------------------
  55. extern TfrmOptions *frmOptions;
  56. //---------------------------------------------------------------------------
  57. #endif