123456789101112131415161718192021222324252627282930313233 |
- //---------------------------------------------------------------------------
- #ifndef FRAME_VmsStatusFH
- #define FRAME_VmsStatusFH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include <ExtCtrls.hpp>
- #include "CDSVmsCtlrF.h"
- //---------------------------------------------------------------------------
- class TFRAME_VmsStatus : public TFrame
- {
- __published: // IDE-managed Components
- TPanel *PnlPower;
- TPanel *PnlDoor;
- TPanel *PnlFan;
- TPanel *PnlHeater;
- TPanel *PnlTemp;
- TPanel *PnlModule;
- TPanel *PnlOprMode;
- private: // User declarations
- public: // User declarations
- __fastcall TFRAME_VmsStatus(TComponent* Owner);
- void __fastcall LoadLocalSkin();
- void __fastcall RefreshStatus(TVmsCtlr *AObj);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TFRAME_VmsStatus *FRAME_VmsStatus;
- //---------------------------------------------------------------------------
- #endif
|