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

  1. //---------------------------------------------------------------------------
  2. #ifndef previewH
  3. #define previewH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\ExtCtrls.hpp>
  10. #include <vcl\QuickRep.hpp>
  11. #include "spin.h"
  12. //---------------------------------------------------------------------------
  13. class TPrevForm : public TForm
  14. {
  15. __published:    // IDE-managed Components
  16.         TPanel *Panel1;
  17.         TLabel *Label1;
  18.         TLabel *Label2;
  19.         TButton *ZoomFitBtn;
  20.         TButton *ZoomWidthBtn;
  21.         TQRPreview *QRPreview1;
  22.         TSpinEdit *SpinPage;
  23.         TSpinEdit *SpinZoom;
  24.         void __fastcall ZoomFitBtnClick(TObject *Sender);
  25.         void __fastcall SpinPageChange(TObject *Sender);
  26.         void __fastcall SpinZoomChange(TObject *Sender);
  27.         void __fastcall FormShow(TObject *Sender);
  28.         void __fastcall ZoomWidthBtnClick(TObject *Sender);
  29. private:    // User declarations
  30. public:        // User declarations
  31.         virtual __fastcall TPrevForm(TComponent* Owner);
  32. };
  33. //---------------------------------------------------------------------------
  34. extern TPrevForm *PrevForm;
  35. //---------------------------------------------------------------------------
  36. #endif
  37.