home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #ifndef previewH
- #define previewH
- //---------------------------------------------------------------------------
- #include <vcl\Classes.hpp>
- #include <vcl\Controls.hpp>
- #include <vcl\StdCtrls.hpp>
- #include <vcl\Forms.hpp>
- #include <vcl\ExtCtrls.hpp>
- #include <vcl\QuickRep.hpp>
- #include "spin.h"
- //---------------------------------------------------------------------------
- class TPrevForm : public TForm
- {
- __published: // IDE-managed Components
- TPanel *Panel1;
- TLabel *Label1;
- TLabel *Label2;
- TButton *ZoomFitBtn;
- TButton *ZoomWidthBtn;
- TQRPreview *QRPreview1;
- TSpinEdit *SpinPage;
- TSpinEdit *SpinZoom;
- void __fastcall ZoomFitBtnClick(TObject *Sender);
- void __fastcall SpinPageChange(TObject *Sender);
- void __fastcall SpinZoomChange(TObject *Sender);
- void __fastcall FormShow(TObject *Sender);
- void __fastcall ZoomWidthBtnClick(TObject *Sender);
- private: // User declarations
- public: // User declarations
- virtual __fastcall TPrevForm(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern TPrevForm *PrevForm;
- //---------------------------------------------------------------------------
- #endif
-