home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 March / pcp161b.iso / handson / archive / Issue159 / files / copycpp.exe / CalcUnit.h < prev   
Encoding:
C/C++ Source or Header  |  1999-10-08  |  1.0 KB  |  28 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef CalcUnitH
  3. #define CalcUnitH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TForm1 : public TForm
  11. {
  12. __published:    // IDE-managed Components
  13.     TEdit *Display;
  14.     TButton *Button1;
  15.     void __fastcall FormCreate(TObject *Sender);
  16.     void __fastcall FormKeyPress(TObject *Sender, char &Key);
  17.     void __fastcall DisplayEnter(TObject *Sender);
  18. private:    // User declarations
  19. public:        // User declarations
  20.     __fastcall TForm1(TComponent* Owner);
  21.     TLabel *HexDecMode;
  22.     void __fastcall ShowHexDecMode (void);
  23. };
  24. //---------------------------------------------------------------------------
  25. extern PACKAGE TForm1 *Form1;
  26. //---------------------------------------------------------------------------
  27. #endif
  28.