blob: d3fa99dc09d886ed2f900be946e9646fb13f953a (
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
35
36
37
|
//---------------------------------------------------------------------------
#ifndef ModVisFrmH
#define ModVisFrmH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Buttons.hpp>
#include <CheckLst.hpp>
#include <ExtCtrls.hpp>
#include <swconfig.h>
#include <swmgr.h>
#include <ComCtrls.hpp>
//---------------------------------------------------------------------------
class TModVisForm : public TForm
{
__published: // IDE-managed Components
TPanel *Panel2;
TPanel *Panel1;
TBitBtn *OkBtn;
TBitBtn *CancelBtn;
TListView *modList;
void __fastcall FormShow(TObject *Sender);
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
private: // User declarations
public: // User declarations
ConfigEntMap *section;
SWMgr *mgr;
__fastcall TModVisForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TModVisForm *ModVisForm;
//---------------------------------------------------------------------------
#endif
|