git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.jvcl@12 7f62d464-2af8-f54e-996c-e91b33f51cbe
33 lines
1.1 KiB
C++
33 lines
1.1 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef JvZoomMainFormUB6H
|
|
#define JvZoomMainFormUB6H
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include "JvComponent.hpp"
|
|
#include "JvExControls.hpp"
|
|
#include "JvZoom.hpp"
|
|
//---------------------------------------------------------------------------
|
|
class TfrmMain : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TLabel *Label1;
|
|
TJvZoom *JvZoom1;
|
|
TCheckBox *CheckBox1;
|
|
TButton *Button1;
|
|
TButton *Button2;
|
|
void __fastcall CheckBox1Click(TObject *Sender);
|
|
void __fastcall Button1Click(TObject *Sender);
|
|
void __fastcall Button2Click(TObject *Sender);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TfrmMain(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TfrmMain *frmMain;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|