FrmWebCamF.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //---------------------------------------------------------------------------
  2. #ifndef FrmWebCamFH
  3. #define FrmWebCamFH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <OleCtrls.hpp>
  10. #include "CDSFacilityF.h"
  11. #include <ExtCtrls.hpp>
  12. #include <ComCtrls.hpp>
  13. //---------------------------------------------------------------------------
  14. class TFrmWebCam : public TForm
  15. {
  16. __published: // IDE-managed Components
  17. TPanel *PnlBack;
  18. TTimer *TmrShow;
  19. void __fastcall FormShow(TObject *Sender);
  20. void __fastcall TmrShowTimer(TObject *Sender);
  21. void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  22. void __fastcall FormDestroy(TObject *Sender);
  23. private: // User declarations
  24. public:
  25. TItsWebCam *FObj;
  26. TForm *FPalyerForm;
  27. public: // User declarations
  28. __fastcall TFrmWebCam(TComponent* Owner, TItsWebCam *AObj);
  29. void __fastcall CommClose();
  30. void __fastcall WebCamPlay();
  31. void __fastcall WebCamStop();
  32. };
  33. //---------------------------------------------------------------------------
  34. //extern PACKAGE TFrmWebCam *FrmWebCam;
  35. //---------------------------------------------------------------------------
  36. #endif