1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- //---------------------------------------------------------------------------
- #ifndef FrmMainFH
- #define FrmMainFH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include <ExtCtrls.hpp>
- #include "FFBaseComponent.hpp"
- #include "FFBasePlay.hpp"
- #include "FFPlay.hpp"
- //---------------------------------------------------------------------------
- #define MAX_STREAM 16
- class TForm1 : public TForm
- {
- __published: // IDE-managed Components
- TFFPlayer *FFPlayer1;
- TFFPlayer *FFPlayer2;
- TFFPlayer *FFPlayer3;
- TFFPlayer *FFPlayer4;
- TFFPlayer *FFPlayer5;
- TFFPlayer *FFPlayer6;
- TFFPlayer *FFPlayer7;
- TFFPlayer *FFPlayer8;
- TFFPlayer *FFPlayer9;
- TFFPlayer *FFPlayer10;
- TFFPlayer *FFPlayer11;
- TFFPlayer *FFPlayer12;
- TFFPlayer *FFPlayer13;
- TFFPlayer *FFPlayer14;
- TFFPlayer *FFPlayer15;
- TFFPlayer *FFPlayer16;
- TPanel *PnlMenu;
- TPanel *PnlBack;
- TPanel *Panel1;
- TPanel *Panel2;
- TPanel *Panel3;
- TPanel *Panel4;
- TPanel *Panel8;
- TPanel *Panel7;
- TPanel *Panel6;
- TPanel *Panel5;
- TPanel *Panel9;
- TPanel *Panel10;
- TPanel *Panel11;
- TPanel *Panel12;
- TPanel *Panel16;
- TPanel *Panel15;
- TPanel *Panel14;
- TPanel *Panel13;
- TButton *Button1;
- TButton *Button2;
- void __fastcall Button1Click(TObject *Sender);
- void __fastcall Button2Click(TObject *Sender);
- private: // User declarations
- public:
- String FStrmUrl[MAX_STREAM];
- TPanel *FStrmPnl[MAX_STREAM];
- TFFPlayer *FFPlayer[MAX_STREAM];
- public: // User declarations
- __fastcall TForm1(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TForm1 *Form1;
- //---------------------------------------------------------------------------
- #endif
|