-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDisplayUnit.h
48 lines (47 loc) · 1.62 KB
/
DisplayUnit.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
//---------------------------------------------------------------------------
#ifndef DisplayUnitH
#define DisplayUnitH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
//---------------------------------------------------------------------------
class TDisplayForm : public TForm
{
__published: // IDE-managed Components
TPanel *TopPanel;
TPanel *LeftPanel;
TPanel *RightPanel;
TPanel *CentralPanel;
TPanel *CentralTopPanel;
TPanel *CentralBottomPanel;
TPanel *TimePanel;
TPanel *CategoryPanel;
TLabel *Player1Label;
TLabel *Player2Label;
TPanel *Player1Scores;
TPanel *Player2Scores;
TPanel *Player1Advantage;
TPanel *Player1Penalty;
TPanel *Player2Advantage;
TPanel *Player2Penalty;
TLabel *Player1ScoresLabel;
TLabel *Player1AdvantageLabel;
TLabel *Player1PenaltyLabel;
TLabel *Player2ScoresLabel;
TLabel *Player2AdvantageLabel;
TLabel *Player2PenaltyLabel;
TImage *Image1;
TImage *Image2;
void __fastcall FormResize(TObject *Sender);
void __fastcall FormCreate(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TDisplayForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TDisplayForm *DisplayForm;
//---------------------------------------------------------------------------
#endif