-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnit7.h
78 lines (77 loc) · 2.57 KB
/
Unit7.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
//---------------------------------------------------------------------------
#ifndef Unit7H
#define Unit7H
#include "Unit1.h"
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Menus.hpp>
#include <Dialogs.hpp>
//---------------------------------------------------------------------------
class TForm7 : public TForm
{
__published: // IDE-managed Components
TLabel *Label1;
TLabel *Label2;
TEdit *Edit1;
TEdit *Edit2;
TLabel *Label3;
TLabel *Label4;
TListBox *ListBox2;
TListBox *ListBox3;
TLabel *Label6;
TLabel *Label7;
TListBox *ListBox1;
TLabel *Label5;
TListBox *ListBox4;
TButton *Button1;
TButton *Button3;
TPopupMenu *PopupMenu1;
TGroupBox *GroupBox1;
TMenuItem *Zmien;
TLabel *Label8;
TComboBox *ComboBox1;
TComboBox *ComboBox2;
TGroupBox *GroupBox2;
TComboBox *ComboBox3;
TLabel *Label9;
TLabel *Label10;
TEdit *Edit3;
TEdit *Edit4;
TLabel *Label11;
TLabel *Label12;
TEdit *Edit5;
TEdit *Edit6;
TLabel *Label13;
TButton *Button4;
TLabel *Label14;
TEdit *Edit7;
TLabel *Label15;
TButton *Button5;
TLabel *Label16;
TSaveDialog *SaveDialog1;
void __fastcall Button3Click(TObject *Sender);
void __fastcall ListBox1Click(TObject *Sender);
void __fastcall ListBox2Click(TObject *Sender);
void __fastcall FormCreate(TObject *Sender);
void __fastcall ComboBox1Change(TObject *Sender);
void __fastcall ListBox4Click(TObject *Sender);
void __fastcall ListBox3Click(TObject *Sender);
void __fastcall ComboBox3Change(TObject *Sender);
void __fastcall Button4Click(TObject *Sender);
void __fastcall Button5Click(TObject *Sender);
void __fastcall Button1Click(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TForm7(TComponent* Owner);
void ShowData(int);
void ShowTimeTable(TimeTable*,TimeTable*);
void CreateTemplate(TimeTable*);
TimeTable *pt;
};
//---------------------------------------------------------------------------
extern PACKAGE TForm7 *Form7;
//---------------------------------------------------------------------------
#endif