home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 9 / CDACTUAL9.iso / progs / CB / DATA.Z / WPMMAIN.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-29  |  1.2 KB  |  36 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef wpmmainH
  3. #define wpmmainH
  4. //---------------------------------------------------------------------------
  5. #include <Forms.hpp>
  6. #include <ExtCtrls.hpp>
  7. #include <Classes.hpp>
  8. #include <ComCtrls.hpp>
  9. #include <StdCtrls.hpp>
  10. #include <Controls.hpp>
  11. //---------------------------------------------------------------------------
  12. class TForm1 : public TForm
  13. {
  14. __published:
  15.     TTimer *Timer1;
  16.     TRichEdit *RichEdit1;
  17.     TLabel *Label1;
  18.     TProgressBar *ProgressBar1;
  19.     TButton *Button1;
  20.     TButton *Button2;
  21.     TLabel *Label2;
  22.     void __fastcall IncrementBar(TObject *Sender);
  23.     void __fastcall Button2Click(TObject *Sender);
  24.     void __fastcall Button1Click(TObject *Sender);
  25.     int __fastcall CalculateWPM(void);
  26.     void __fastcall StartTimer(TObject *Sender, Word &Key,
  27.       TShiftState Shift);
  28. private:        // private user declarations
  29. public:         // public user declarations
  30.     virtual __fastcall TForm1(TComponent* Owner);
  31. };
  32. //---------------------------------------------------------------------------
  33. extern TForm1 *Form1;
  34. //---------------------------------------------------------------------------
  35. #endif
  36.