FrmOptionF.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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 *Panel3;
  21. TLabel *Label1;
  22. TPanel *plProcessId;
  23. TPanel *Panel10;
  24. TLabel *Label2;
  25. TPanel *plIpAddress;
  26. TPanel *Panel24;
  27. TLabel *Label3;
  28. TPanel *plVmsPort;
  29. TPanel *Panel26;
  30. TLabel *Label4;
  31. TPanel *plCenterPort;
  32. TPanel *Panel2;
  33. TLabel *Label11;
  34. TPanel *Panel9;
  35. TLabel *Label9;
  36. TPanel *plVmsConPort;
  37. TPanel *Panel13;
  38. TLabel *Label10;
  39. TPanel *plSystemId;
  40. TPanel *Panel5;
  41. TPanel *Panel19;
  42. TLabel *Label15;
  43. TPanel *Panel20;
  44. TLabel *Label16;
  45. TPanel *plTot;
  46. TPanel *Panel22;
  47. TLabel *Label17;
  48. TPanel *plNor;
  49. TPanel *Panel25;
  50. TLabel *Label18;
  51. TPanel *plErr;
  52. TPanel *Panel4;
  53. TPanel *Panel6;
  54. TImage *Image1;
  55. TCheckBox *chkInfo;
  56. TCheckBox *chkData;
  57. TCheckBox *chkDetail;
  58. TCheckBox *chkError;
  59. TCheckBox *chkWarning;
  60. TCheckBox *chkDebug;
  61. TButton *btnSetLog;
  62. void __fastcall btnCloseClick(TObject *Sender);
  63. void __fastcall btnSetLogClick(TObject *Sender);
  64. void __fastcall FormShow(TObject *Sender);
  65. private: // User declarations
  66. public: // User declarations
  67. bool FUpdate;
  68. __fastcall TFrmOption(TComponent* Owner);
  69. };
  70. //---------------------------------------------------------------------------
  71. extern PACKAGE TFrmOption *FrmOption;
  72. //---------------------------------------------------------------------------
  73. #endif