-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUnit1.dfm
More file actions
129 lines (129 loc) · 2.76 KB
/
Unit1.dfm
File metadata and controls
129 lines (129 loc) · 2.76 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
object MainForm: TMainForm
Left = 0
Top = 0
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Caption = 'Minesweeper Delphi (Primitives)'
ClientHeight = 515
ClientWidth = 468
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -14
Font.Name = 'Tahoma'
Font.Style = []
Menu = MainMenu1
Position = poScreenCenter
OnCreate = FormCreate
OnDestroy = FormDestroy
OnResize = FormResize
PixelsPerInch = 120
TextHeight = 17
object imgBoard: TImage
Left = 30
Top = 90
Width = 381
Height = 381
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
OnMouseDown = imgBoardMouseDown
end
object imgSmiley: TImage
Left = 209
Top = 30
Width = 60
Height = 60
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
OnClick = imgSmileyClick
end
object imgOverlay: TImage
Left = 0
Top = 0
Width = 468
Height = 515
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Visible = False
OnClick = imgOverlayClick
end
object StatusBar1: TStatusBar
Left = 0
Top = 491
Width = 468
Height = 24
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Panels = <
item
Width = 125
end
item
Width = 100
end>
end
object GameTimer: TTimer
Enabled = False
OnTimer = GameTimerTimer
Left = 48
Top = 16
end
object AnimationTimer: TTimer
Enabled = False
Interval = 100
OnTimer = AnimationTimerTimer
Left = 120
Top = 16
end
object MainMenu1: TMainMenu
Left = 192
Top = 16
object FileMenu: TMenuItem
Caption = '&File'
object NGame: TMenuItem
Caption = '&New Game'
ShortCut = 113
OnClick = NGameClick
end
object DifficultyMenu: TMenuItem
Caption = '&Difficulty'
object EasyItem: TMenuItem
Caption = '&Easy'
Checked = True
GroupIndex = 1
RadioItem = True
OnClick = EasyItemClick
end
object MediumItem: TMenuItem
Caption = '&Medium'
GroupIndex = 1
RadioItem = True
OnClick = MediumItemClick
end
object HardItem: TMenuItem
Caption = '&Hard'
GroupIndex = 1
RadioItem = True
OnClick = HardItemClick
end
end
object N1: TMenuItem
Caption = '-'
end
object ExitItem: TMenuItem
Caption = 'E&xit'
OnClick = ExitItemClick
end
end
end
end