FrmOptionF.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. //---------------------------------------------------------------------------
  2. #ifndef FrmOptionFH
  3. #define FrmOptionFH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. #include <Graphics.hpp>
  11. //---------------------------------------------------------------------------
  12. class TFrmOption : public TForm
  13. {
  14. __published: // IDE-managed Components
  15. TButton *btnClose;
  16. TPanel *pnlLeft;
  17. TPanel *plServerInfo;
  18. TImage *Image3;
  19. TPanel *Panel1;
  20. TPanel *Panel10;
  21. TLabel *Label2;
  22. TPanel *plIpAddress;
  23. TPanel *Panel26;
  24. TLabel *Label4;
  25. TPanel *plCenterPort;
  26. TPanel *Panel2;
  27. TLabel *Label11;
  28. TPanel *Panel13;
  29. TLabel *Label10;
  30. TPanel *plSystemId;
  31. TPanel *Panel5;
  32. TPanel *Panel19;
  33. TLabel *Label15;
  34. TPanel *Panel20;
  35. TLabel *Label16;
  36. TPanel *plTot;
  37. TPanel *Panel22;
  38. TLabel *Label17;
  39. TPanel *plNor;
  40. TPanel *Panel25;
  41. TLabel *Label18;
  42. TPanel *plErr;
  43. TPanel *Panel4;
  44. TPanel *Panel6;
  45. TImage *Image1;
  46. TCheckBox *chkInfo;
  47. TCheckBox *chkData;
  48. TCheckBox *chkDetail;
  49. TCheckBox *chkError;
  50. TCheckBox *chkWarning;
  51. TCheckBox *chkDebug;
  52. TButton *btnSetLog;
  53. TPanel *Panel7;
  54. TPanel *Panel3;
  55. TLabel *Label1;
  56. TPanel *plProcessId;
  57. TPanel *Panel24;
  58. TLabel *Label3;
  59. TPanel *plVmsPort;
  60. TPanel *Panel9;
  61. TLabel *Label9;
  62. TPanel *plVmsConPort;
  63. void __fastcall btnCloseClick(TObject *Sender);
  64. void __fastcall btnSetLogClick(TObject *Sender);
  65. void __fastcall FormShow(TObject *Sender);
  66. private: // User declarations
  67. public: // User declarations
  68. bool FUpdate;
  69. __fastcall TFrmOption(TComponent* Owner);
  70. };
  71. //---------------------------------------------------------------------------
  72. extern PACKAGE TFrmOption *FrmOption;
  73. //---------------------------------------------------------------------------
  74. #endif