forked from crypto2011/IDR
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPlugins.h
More file actions
34 lines (30 loc) · 1.19 KB
/
Plugins.h
File metadata and controls
34 lines (30 loc) · 1.19 KB
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 PluginsH
#define PluginsH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.CheckLst.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
//---------------------------------------------------------------------------
class TFPlugins : public TForm {
__published: // IDE-managed Components
TCheckListBox * cklbPluginsList;
TButton *bOk;
TButton *bCancel;
void __fastcall FormShow(TObject *Sender);
void __fastcall cklbPluginsListClickCheck(TObject *Sender);
void __fastcall cklbPluginsListDblClick(TObject *Sender);
void __fastcall bOkClick(TObject *Sender);
void __fastcall bCancelClick(TObject *Sender);
void __fastcall FormCreate(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TFPlugins(TComponent *Owner);
String PluginsPath;
String PluginName;
};
//---------------------------------------------------------------------------
extern PACKAGE TFPlugins *FPlugins;
//---------------------------------------------------------------------------
#endif