main.h
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. //---------------------------------------------------------------------------
  2. #ifndef mainH
  3. #define mainH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include "DSPack.hpp"
  10. #include <Menus.hpp>
  11. //---------------------------------------------------------------------------
  12. class TMainForm : public TForm
  13. {
  14. __published: // IDE-managed Components
  15.         TVideoWindow *VideoWindow;
  16.         TMainMenu *MainMenu;
  17.         TMenuItem *Devices;
  18.         TFilterGraph *FilterGraph;
  19.         TFilter *Filter;
  20.         void __fastcall FormCreate(TObject *Sender);
  21.         void __fastcall DevicesClick(TObject *Sender);
  22.         void __fastcall FormDestroy(TObject *Sender);
  23.         void __fastcall FormCloseQuery(TObject *Sender, bool &CanClose);
  24. private: // User declarations
  25. public: // User declarations
  26.         __fastcall TMainForm(TComponent* Owner);
  27. };
  28. //---------------------------------------------------------------------------
  29. extern PACKAGE TMainForm *MainForm;
  30. //---------------------------------------------------------------------------
  31. #endif