FRAME_VmsStateF.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. //---------------------------------------------------------------------------
  2. #ifndef FRAME_VmsStateFH
  3. #define FRAME_VmsStateFH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. #include <Menus.hpp>
  11. #include <ADODB.hpp>
  12. #include <DB.hpp>
  13. //---------------------------------------------------------------------------
  14. #include "CDSCodeF.h"
  15. #include "CDSVmsCtlrF.h"
  16. //---------------------------------------------------------------------------
  17. #include "cxButtons.hpp"
  18. #include "cxCalc.hpp"
  19. #include "cxCheckBox.hpp"
  20. #include "cxClasses.hpp"
  21. #include "cxContainer.hpp"
  22. #include "cxControls.hpp"
  23. #include "cxCustomData.hpp"
  24. #include "cxData.hpp"
  25. #include "cxDataStorage.hpp"
  26. #include "cxEdit.hpp"
  27. #include "cxFilter.hpp"
  28. #include "cxGraphics.hpp"
  29. #include "cxGrid.hpp"
  30. #include "cxGridCustomTableView.hpp"
  31. #include "cxGridCustomView.hpp"
  32. #include "cxGridLevel.hpp"
  33. #include "cxGridTableView.hpp"
  34. #include "cxLookAndFeelPainters.hpp"
  35. #include "cxLookAndFeels.hpp"
  36. #include "cxStyles.hpp"
  37. #include "cxTextEdit.hpp"
  38. #include "dxSkinBlack.hpp"
  39. #include "dxSkinBlue.hpp"
  40. #include "dxSkinCaramel.hpp"
  41. #include "dxSkinCoffee.hpp"
  42. #include "dxSkinDarkRoom.hpp"
  43. #include "dxSkinDarkSide.hpp"
  44. #include "dxSkinFoggy.hpp"
  45. #include "dxSkinGlassOceans.hpp"
  46. #include "dxSkiniMaginary.hpp"
  47. #include "dxSkinLilian.hpp"
  48. #include "dxSkinLiquidSky.hpp"
  49. #include "dxSkinLondonLiquidSky.hpp"
  50. #include "dxSkinMcSkin.hpp"
  51. #include "dxSkinMoneyTwins.hpp"
  52. #include "dxSkinOffice2007Black.hpp"
  53. #include "dxSkinOffice2007Blue.hpp"
  54. #include "dxSkinOffice2007Green.hpp"
  55. #include "dxSkinOffice2007Pink.hpp"
  56. #include "dxSkinOffice2007Silver.hpp"
  57. #include "dxSkinOffice2010Black.hpp"
  58. #include "dxSkinOffice2010Blue.hpp"
  59. #include "dxSkinOffice2010Silver.hpp"
  60. #include "dxSkinsCore.hpp"
  61. #include "dxSkinscxPCPainter.hpp"
  62. #include "dxSkinSeven.hpp"
  63. #include "dxSkinSharp.hpp"
  64. #include "dxSkinSilver.hpp"
  65. #include "dxSkinStardust.hpp"
  66. #include "cxGridBandedTableView.hpp"
  67. #include "cxGridCardView.hpp"
  68. #include "cxGridCustomLayoutView.hpp"
  69. #include "cxGroupBox.hpp"
  70. #include "cxRadioGroup.hpp"
  71. #include "cxLabel.hpp"
  72. //---------------------------------------------------------------------------
  73. class TFRAMEVmsState : public TFrame
  74. {
  75. __published: // IDE-managed Components
  76. TcxStyleRepository *cxStyleRepository1;
  77. TcxStyle *cxStyle1;
  78. TcxStyle *cxStyle2;
  79. TcxGrid *CxVmsInfo;
  80. TcxGridCardView *TvVmsInfo;
  81. TcxGridCardViewRow *ColVmsId;
  82. TcxGridCardViewRow *ColVmsType;
  83. TcxGridCardViewRow *ColVmsNm;
  84. TcxGridCardViewRow *ColVmsMode;
  85. TcxGridCardViewRow *ColVmsComm;
  86. TcxGridCardViewRow *ColCatModule;
  87. TcxGridCardViewRow *ColMod1;
  88. TcxGridCardViewRow *ColMod2;
  89. TcxGridCardViewRow *ColMod3;
  90. TcxGridCardViewRow *ColCatHamche;
  91. TcxGridCardViewRow *ColHam1;
  92. TcxGridCardViewRow *ColHam2;
  93. TcxGridCardViewRow *ColHam3;
  94. TcxGridCardViewRow *ColHam4;
  95. TcxGridLevel *GlVmsInfo;
  96. TPanel *PnlCmd;
  97. TcxButton *BtnControl0;
  98. TcxRadioButton *RdbOn;
  99. TcxRadioButton *RdbOff;
  100. TcxRadioButton *RdbReset;
  101. TPanel *Panel1;
  102. TcxLabel *lblTitle;
  103. TcxLabel *lblText1;
  104. TcxLabel *lblText2;
  105. TcxLabel *lblText3;
  106. TcxLabel *lblText6;
  107. TcxLabel *lblText5;
  108. TcxLabel *lblText4;
  109. TcxLabel *lblText7;
  110. TcxLabel *cxLabel9;
  111. void __fastcall ColVmsIdGetDataText(TcxCustomGridTableItem *Sender, int ARecordIndex,
  112. UnicodeString &AText);
  113. void __fastcall BtnControl0Click(TObject *Sender);
  114. private: // User declarations
  115. TVmsCtlr *FSelVmsObj;
  116. public:
  117. String FTitle;
  118. public: // User declarations
  119. __fastcall TFRAMEVmsState(TComponent* Owner);
  120. void __fastcall OnCloseQuery(bool &CanClose);
  121. void __fastcall UpdateList();
  122. void __fastcall RefreshStatus();
  123. void __fastcall SetVmsObject(TVmsCtlr *ASelVmsObj);
  124. __property TVmsCtlr* SelVmsObj = {read=FSelVmsObj, write=SetVmsObject };
  125. };
  126. //---------------------------------------------------------------------------
  127. //extern PACKAGE TFRAMEVmsStateList *FRAMEVmsStateList;
  128. //---------------------------------------------------------------------------
  129. #endif