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