bmpdlg.h
上传用户:lulishicai
上传日期:2010-03-01
资源大小:13202k
文件大小:1k
源码类别:

Delphi/CppBuilder

开发平台:

C++ Builder

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1998-2002 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. private:        // private user declarations
  26. public:         // public user declarations
  27.     virtual __fastcall TNewBMPForm(TComponent* Owner);
  28. };
  29. //---------------------------------------------------------------------------
  30. extern TNewBMPForm *NewBMPForm;
  31. //---------------------------------------------------------------------------
  32. #endif