home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 May / Chip_2002-05_cd1.bin / chplus / cpp / 3 / GrEdit.exe / bmpdlg.h < prev    next >
C/C++ Source or Header  |  1998-02-09  |  1KB  |  34 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef BmpdlgH
  7. #define BmpdlgH
  8. //---------------------------------------------------------------------------
  9. #include <Forms.hpp>
  10. #include <ExtCtrls.hpp>
  11. #include <Controls.hpp>
  12. #include <Classes.hpp>
  13. #include <StdCtrls.hpp>
  14. //---------------------------------------------------------------------------
  15. class TNewBMPForm : public TForm
  16. {
  17. __published:
  18.         TButton *OKBtn;
  19.         TButton *CancelBtn;
  20.         TBevel *Bevel1;
  21.         TLabel *Label1;
  22.         TEdit *WidthEdit;
  23.         TLabel *Label2;
  24.         TEdit *HeightEdit;
  25.  
  26. private:        // private user declarations
  27. public:         // public user declarations
  28.     virtual __fastcall TNewBMPForm(TComponent* Owner);
  29. };
  30. //---------------------------------------------------------------------------
  31. extern TNewBMPForm *NewBMPForm;
  32. //---------------------------------------------------------------------------
  33. #endif
  34.