blob: b2b0519ced315b56568770aae1d32786a6a49e30 (
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
29
30
31
32
33
34
|
//---------------------------------------------------------------------------
#ifndef callbacksframeH
#define callbacksframeH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
//---------------------------------------------------------------------------
class TFrame4 : public TFrame
{
__published: // IDE-managed Components
TPanel *Panel1;
TLabel *Label2;
TComboBox *CallbackComboBox;
TLabel *Label1;
TEdit *OnFrameEditBox;
TButton *Button1;
void __fastcall CallbackComboBoxChange(TObject *Sender);
void __fastcall OnFrameEditBoxChange(TObject *Sender);
void __fastcall Button1Click(TObject *Sender);
void __fastcall OnFrameEditBoxExit(TObject *Sender);
private: // User declarations
int m_CBIndex;
public: // User declarations
__fastcall TFrame4(TComponent* Owner,int cbindex);
};
//---------------------------------------------------------------------------
extern PACKAGE TFrame4 *Frame4;
//---------------------------------------------------------------------------
#endif
|