home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 May / VPR9705A.ISO / VPR_DATA / PROGRAM / CBTRIAL / SETUP / DATA.Z / PREVIEW.H < prev    next >
C/C++ Source or Header  |  1997-02-14  |  2KB  |  47 lines

  1. //---------------------------------------------------------------------------
  2. // Borland C++Builder
  3. // Copyright (c) 1987, 1997 Borland International Inc.  All Rights Reserved.
  4. //---------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef previewH
  7. #define previewH
  8. //---------------------------------------------------------------------------
  9. #include <vcl\Classes.hpp>
  10. #include <vcl\Controls.hpp>
  11. #include <vcl\StdCtrls.hpp>
  12. #include <vcl\Forms.hpp>
  13. #include <vcl\ExtCtrls.hpp>
  14. #include <vcl\QuickRep.hpp>
  15. #include "sampreg.h"
  16. //---------------------------------------------------------------------------
  17. class TPrevForm : public TForm
  18. {
  19. __published:    // IDE-managed Components
  20.         TPanel *Panel1;
  21.         TLabel *Label1;
  22.         TLabel *Label2;
  23.         TButton *ZoomFitBtn;
  24.         TButton *ZoomWidthBtn;
  25.         TQRPreview *QRPreview1;
  26.         TSpinEdit *SpinPage;
  27.         TSpinEdit *SpinZoom;
  28.         TButton *PrintBtn;
  29.         TButton *ExitBtn;
  30.         void __fastcall ZoomFitBtnClick(TObject *Sender);
  31.         void __fastcall SpinPageChange(TObject *Sender);
  32.         void __fastcall SpinZoomChange(TObject *Sender);
  33.         void __fastcall FormShow(TObject *Sender);
  34.         void __fastcall ZoomWidthBtnClick(TObject *Sender);
  35.         void __fastcall SpeedButton1Click(TObject *Sender);
  36.         void __fastcall SpeedButton2Click(TObject *Sender);
  37.         void __fastcall ExitBtnClick(TObject *Sender);
  38.         void __fastcall PrintBtnClick(TObject *Sender);
  39. private:    // User declarations
  40. public:        // User declarations
  41.         virtual __fastcall TPrevForm(TComponent* Owner);
  42. };
  43. //---------------------------------------------------------------------------
  44. extern TPrevForm *PrevForm;
  45. //---------------------------------------------------------------------------
  46. #endif
  47.