32 lines
1.1 KiB
C++
32 lines
1.1 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef JvScreenCaptureMainFormUH
|
|
#define JvScreenCaptureMainFormUH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <Buttons.hpp>
|
|
#include <JclGraphics.hpp>
|
|
#include <ExtCtrls.hpp>
|
|
#include <ClipBrd.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TForm1 : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TPanel *Panel1;
|
|
TBitBtn *Button1;
|
|
TBitBtn *Button2;
|
|
TImage *Image1;
|
|
void __fastcall Button1Click(TObject *Sender);
|
|
void __fastcall Button2Click(TObject *Sender);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TForm1(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TForm1 *Form1;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|