-
Notifications
You must be signed in to change notification settings - Fork 0
/
LifeScriptIntelliSense.h
26 lines (25 loc) · 1.07 KB
/
LifeScriptIntelliSense.h
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
//---------------------------------------------------------------------------
#ifndef LifeScriptIntelliSenseH
#define LifeScriptIntelliSenseH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
//---------------------------------------------------------------------------
class Tfrm_lifeIntelliSense : public TForm
{
__published: // IDE-managed Components
TListBox *list_lifecommands;
void __fastcall FormDeactivate(TObject *Sender);
void __fastcall list_lifecommandsDblClick(TObject *Sender);
void __fastcall list_lifecommandsKeyPress(TObject *Sender, char &Key);
private: // User declarations
public: // User declarations
__fastcall Tfrm_lifeIntelliSense(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE Tfrm_lifeIntelliSense *frm_lifeIntelliSense;
//---------------------------------------------------------------------------
#endif