home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
borland
/
cb
/
setup
/
cbuilder
/
data.z
/
PREVIEW.H
< prev
next >
Wrap
C/C++ Source or Header
|
1997-02-28
|
2KB
|
47 lines
//---------------------------------------------------------------------------
// Borland C++Builder
// Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
#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 "sampreg.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;
TButton *PrintBtn;
TButton *ExitBtn;
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);
void __fastcall SpeedButton1Click(TObject *Sender);
void __fastcall SpeedButton2Click(TObject *Sender);
void __fastcall ExitBtnClick(TObject *Sender);
void __fastcall PrintBtnClick(TObject *Sender);
private: // User declarations
public: // User declarations
virtual __fastcall TPrevForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern TPrevForm *PrevForm;
//---------------------------------------------------------------------------
#endif