git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.jvcl@12 7f62d464-2af8-f54e-996c-e91b33f51cbe
27 lines
945 B
C++
27 lines
945 B
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef Unit4H
|
|
#define Unit4H
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include "JvDockControlForm.hpp"
|
|
//---------------------------------------------------------------------------
|
|
class TForm4 : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TJvDockClient *lbDockClient1;
|
|
TMemo *Memo1;
|
|
void __fastcall lbDockClient1FormHide(TObject *Sender);
|
|
void __fastcall lbDockClient1FormShow(TObject *Sender);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TForm4(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TForm4 *Form4;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|