git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.jvcl@12 7f62d464-2af8-f54e-996c-e91b33f51cbe
28 lines
980 B
C++
28 lines
980 B
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef TransparentFormH
|
|
#define TransparentFormH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include "JvComponent.hpp"
|
|
#include "JvExControls.hpp"
|
|
#include "JvFormTransparent.hpp"
|
|
#include "JvLabel.hpp"
|
|
//---------------------------------------------------------------------------
|
|
class TfrmTransparent : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TJvTransparentForm *JvTransparentForm1;
|
|
TJvLabel *JvLabel1;
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TfrmTransparent(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TfrmTransparent *frmTransparent;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|