main.h 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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