FrameStreamingAcesF.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. //---------------------------------------------------------------------------
  2. #ifndef FrameStreamingAcesFH
  3. #define FrameStreamingAcesFH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include "cxButtons.hpp"
  10. #include "cxGraphics.hpp"
  11. #include "cxLookAndFeelPainters.hpp"
  12. #include "cxLookAndFeels.hpp"
  13. #include "dxSkinBlack.hpp"
  14. #include "dxSkinMcSkin.hpp"
  15. #include "dxSkinsCore.hpp"
  16. #include "ImageBtn.h"
  17. #include <ComCtrls.hpp>
  18. #include <ExtCtrls.hpp>
  19. #include <Graphics.hpp>
  20. #include <Menus.hpp>
  21. #include "cxContainer.hpp"
  22. #include "cxControls.hpp"
  23. #include "cxEdit.hpp"
  24. #include "cxLabel.hpp"
  25. #include "AcesTechXPlayer2Lib_OCX.h"
  26. #include <OleCtrls.hpp>
  27. #include "IdBaseComponent.hpp"
  28. #include "IdComponent.hpp"
  29. #include "IdHTTP.hpp"
  30. #include "IdTCPClient.hpp"
  31. #include "IdTCPConnection.hpp"
  32. #include "IdAuthenticationDigest.hpp"
  33. #include "cxTextEdit.hpp" /* idhttp ±ÇÇÑ ¼³Á¤À» À§ÇØ ÇÊ¿äÇÔ */
  34. //---------------------------------------------------------------------------
  35. class TFrameStreamingAces : public TFrame
  36. {
  37. __published: // IDE-managed Components
  38. TPanel *PnlBack;
  39. TPanel *PnlStreamInfo;
  40. TPanel *PnlCameraBack;
  41. TcxLabel *cxLabel1;
  42. TcxButton *BtnCameraConDisconn;
  43. TPanel *PnlCamera;
  44. TcxLabel *LblErrMsg;
  45. TAcesTechXPlayer2 *AcesTechXPlayer21;
  46. TcxTextEdit *EdStreamUrl;
  47. void __fastcall BtnCameraConDisconnClick(TObject *Sender);
  48. private: // User declarations
  49. bool FStrmPlay;
  50. String FStrmUser;
  51. String FStrmPswd;
  52. String FStrmUrl;
  53. String FStrmHttp;
  54. String FStrmAddr;
  55. long FStrmHandle;
  56. public:
  57. void __fastcall OpenStream();
  58. void __fastcall CloseStream();
  59. public: // User declarations
  60. __fastcall TFrameStreamingAces(TComponent* Owner);
  61. };
  62. //---------------------------------------------------------------------------
  63. extern PACKAGE TFrameStreamingAces *FrameStreamingAces;
  64. //---------------------------------------------------------------------------
  65. #endif