FrmCctvImgF.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. //---------------------------------------------------------------------------
  2. #ifndef FrmCctvImgFH
  3. #define FrmCctvImgFH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. #include <ADODB.hpp>
  11. #include <DB.hpp>
  12. #include "CDSFacilityF.h"
  13. #include "cxContainer.hpp"
  14. #include "cxControls.hpp"
  15. #include "cxEdit.hpp"
  16. #include "cxGraphics.hpp"
  17. #include "cxLabel.hpp"
  18. #include "cxLookAndFeelPainters.hpp"
  19. #include "cxLookAndFeels.hpp"
  20. #include "dxSkinBlack.hpp"
  21. #include "dxSkinBlue.hpp"
  22. #include "dxSkinsCore.hpp"
  23. //---------------------------------------------------------------------------
  24. class TFrmCctvImg : public TForm
  25. {
  26. __published: // IDE-managed Components
  27. TTimer *TmrShow;
  28. TPanel *PnlBack;
  29. TImage *ImgStop;
  30. TADOQuery *pADO;
  31. TcxLabel *lblErr1;
  32. TcxLabel *lblErr2;
  33. TcxLabel *lblErr3;
  34. TcxLabel *lblErr4;
  35. TcxLabel *lblErr6;
  36. TcxLabel *lblErr5;
  37. void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  38. void __fastcall FormShow(TObject *Sender);
  39. void __fastcall TmrShowTimer(TObject *Sender);
  40. private: // User declarations
  41. public: // User declarations
  42. TCctvCtlr *FObj;
  43. void __fastcall LoadStopImage();
  44. bool __fastcall LoadDbImage();
  45. public: // User declarations
  46. __fastcall TFrmCctvImg(TComponent* Owner);
  47. };
  48. //---------------------------------------------------------------------------
  49. extern PACKAGE TFrmCctvImg *FrmCctvImg;
  50. //---------------------------------------------------------------------------
  51. #endif