FRAME_VmsStatusF.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. //---------------------------------------------------------------------------
  2. #ifndef FRAME_VmsStatusFH
  3. #define FRAME_VmsStatusFH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. #include "CDSVmsCtlrF.h"
  11. //---------------------------------------------------------------------------
  12. class TFRAME_VmsStatus : public TFrame
  13. {
  14. __published: // IDE-managed Components
  15. TPanel *PnlPower;
  16. TPanel *PnlDoor;
  17. TPanel *PnlFan;
  18. TPanel *PnlHeater;
  19. TPanel *PnlTemp;
  20. TPanel *PnlModule;
  21. TPanel *PnlOprMode;
  22. TPanel *PnlCmnc;
  23. private: // User declarations
  24. public: // User declarations
  25. __fastcall TFRAME_VmsStatus(TComponent* Owner);
  26. void __fastcall LoadLocalSkin();
  27. void __fastcall RefreshStatus(TVmsCtlr *AObj);
  28. };
  29. //---------------------------------------------------------------------------
  30. extern PACKAGE TFRAME_VmsStatus *FRAME_VmsStatus;
  31. //---------------------------------------------------------------------------
  32. #endif