FRAME_VmsStatusF.h 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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. private: // User declarations
  23. public: // User declarations
  24. __fastcall TFRAME_VmsStatus(TComponent* Owner);
  25. void __fastcall LoadLocalSkin();
  26. void __fastcall RefreshStatus(TVmsCtlr *AObj);
  27. };
  28. //---------------------------------------------------------------------------
  29. extern PACKAGE TFRAME_VmsStatus *FRAME_VmsStatus;
  30. //---------------------------------------------------------------------------
  31. #endif