home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #ifndef ViewUnitH
- #define ViewUnitH
- //---------------------------------------------------------------------------
- #include <vcl\Classes.hpp>
- #include <vcl\Controls.hpp>
- #include <vcl\StdCtrls.hpp>
- #include <vcl\Forms.hpp>
- #include <vcl\ExtCtrls.hpp>
- //---------------------------------------------------------------------------
- class TViewForm : public TForm
- {
- __published: // IDE-managed Components
- TPanel *Panel1;
- TPanel *Panel2;
- TPanel *Panel3;
- TPaintBox *SigPB;
- TPaintBox *FFTPB;
- TLabel *Label1;
- TLabel *BinLbl;
- TLabel *Label3;
- TLabel *FreqLbl;
- void __fastcall SigPBPaint(TObject *Sender);
-
- void __fastcall FFTPBMouseMove(TObject *Sender, TShiftState Shift, int X,
- int Y);
- void __fastcall FFTPBPaint(TObject *Sender);
- void __fastcall FormPaint(TObject *Sender);
- private: // User declarations
- public: // User declarations
- __fastcall TViewForm(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern TViewForm *ViewForm;
- //---------------------------------------------------------------------------
- #endif
-