blob: aacf3daae8676270f10ab7dcc6df04c9c283b37d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
//---------------------------------------------------------------------------
#ifndef visframeH
#define visframeH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
//---------------------------------------------------------------------------
class TFrame2 : public TFrame
{
__published: // IDE-managed Components
TPanel *Panel1;
TCheckBox *VisibilityCheckBox;
TLabel *NameLabel;
void __fastcall VisibilityCheckBoxClick(TObject *Sender);
private: // User declarations
int m_DrawableIndex;
public: // User declarations
__fastcall TFrame2(TComponent* Owner , int dindex );
};
//---------------------------------------------------------------------------
extern PACKAGE TFrame2 *Frame2;
//---------------------------------------------------------------------------
#endif
|