-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestWindow.h
More file actions
50 lines (45 loc) · 1.61 KB
/
Copy pathTestWindow.h
File metadata and controls
50 lines (45 loc) · 1.61 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//---------------------------------------------------------------------------
#ifndef TestWindowH
#define TestWindowH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include "Data/AllData.h"
#include <Vcl.ComCtrls.hpp>
//---------------------------------------------------------------------------
class TForm2 : public TForm
{
__published: // IDE-managed Components
TButton *LoadIni_test;
TButton *SaveIni_Test;
TButton *LoadWR_Test;
TButton *Button1;
TButton *Button2;
TListView *ListView1;
TButton *Button3;
TButton *Button4;
TButton *Button5;
TButton *Button6;
TButton *Button7;
void __fastcall LoadIni_testClick(TObject *Sender);
void __fastcall Button1Click(TObject *Sender);
void __fastcall Button2Click(TObject *Sender);
void __fastcall SaveIni_TestClick(TObject *Sender);
void __fastcall LoadWR_TestClick(TObject *Sender);
void __fastcall Button3Click(TObject *Sender);
void __fastcall Button4Click(TObject *Sender);
void __fastcall Button5Click(TObject *Sender);
void __fastcall Button6Click(TObject *Sender);
void __fastcall ListView1SelectItem(TObject *Sender, TListItem *Item, bool Selected);
void __fastcall Button7Click(TObject *Sender);
void __fastcall FillListView();
private: // User declarations
public: // User declarations
__fastcall TForm2(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm2 *Form2;
//---------------------------------------------------------------------------
#endif