home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / univspl / viewunit.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-02-02  |  1.2 KB  |  37 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef ViewUnitH
  3. #define ViewUnitH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\ExtCtrls.hpp>
  10. //---------------------------------------------------------------------------
  11. class TViewForm : public TForm
  12. {
  13. __published:    // IDE-managed Components
  14.     TPanel *Panel1;
  15.     TPanel *Panel2;
  16.     TPanel *Panel3;
  17.     TPaintBox *SigPB;
  18.     TPaintBox *FFTPB;
  19.     TLabel *Label1;
  20.     TLabel *BinLbl;
  21.     TLabel *Label3;
  22.     TLabel *FreqLbl;
  23.     void __fastcall SigPBPaint(TObject *Sender);
  24.     
  25.     void __fastcall FFTPBMouseMove(TObject *Sender, TShiftState Shift, int X,
  26.     int Y);
  27.     void __fastcall FFTPBPaint(TObject *Sender);
  28.     void __fastcall FormPaint(TObject *Sender);
  29. private:    // User declarations
  30. public:        // User declarations
  31.     __fastcall TViewForm(TComponent* Owner);
  32. };
  33. //---------------------------------------------------------------------------
  34. extern TViewForm *ViewForm;
  35. //---------------------------------------------------------------------------
  36. #endif
  37.