home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / CALBROWS.H < prev    next >
C/C++ Source or Header  |  1997-01-16  |  2KB  |  38 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++ Builder
  3. //Copyright (c) 1987 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef calbrowsH
  7. #define calbrowsH
  8. //---------------------------------------------------------------------------
  9. #include <Forms.hpp>
  10. #include <Grids.hpp>
  11. #include <Controls.hpp>
  12. #include <Classes.hpp>
  13. #include <Buttons.hpp>
  14. #include <StdCtrls.hpp>
  15. #include "../../controls/calendar/calendar.h"
  16. //---------------------------------------------------------------------------
  17. class TCalendarBrowser : public TForm
  18. {
  19. __published:
  20.     TCalendar *Calendar1;
  21.     TBitBtn *BitBtn1;
  22.     TBitBtn *BitBtn2;
  23.     TBitBtn *BitBtn3;
  24.     TBitBtn *BitBtn4;
  25.     void __fastcall BitBtn4Click(TObject *Sender);
  26.     void __fastcall BitBtn2Click(TObject *Sender);
  27.     void __fastcall BitBtn3Click(TObject *Sender);
  28.     void __fastcall BitBtn1Click(TObject *Sender);
  29.     void __fastcall Calendar1Change(TObject *Sender);
  30. private:        // private user declarations
  31. public:         // public user declarations
  32.     virtual __fastcall TCalendarBrowser(TComponent* Owner);
  33. };
  34. //---------------------------------------------------------------------------
  35. extern TForCalendarBrowserorCalendarBrowser;
  36. //---------------------------------------------------------------------------
  37. #endif
  38.