-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunit1.lfm
executable file
·126 lines (126 loc) · 3.76 KB
/
unit1.lfm
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
object MainForm: TMainForm
Left = 789
Height = 276
Top = 417
Width = 254
BorderWidth = 5
Caption = 'wpckne v0.1.0'
ClientHeight = 276
ClientWidth = 254
Position = poDesktopCenter
LCLVersion = '2.2.0.4'
object rgGames: TRadioGroup
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Owner
Left = 5
Height = 58
Top = 5
Width = 145
AutoFill = True
AutoSize = True
Caption = 'Игра'
ChildSizing.LeftRightSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 38
ClientWidth = 141
ItemIndex = 1
Items.Strings = (
'Crusader Kings II'
'Europa Universalis IV'
)
OnClick = rgGamesClick
TabOrder = 0
end
object rgEncoding: TRadioGroup
AnchorSideLeft.Control = rgGames
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = rgGames
Left = 150
Height = 58
Top = 5
Width = 97
AutoFill = True
AutoSize = True
Caption = 'Кодировка'
ChildSizing.LeftRightSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 38
ClientWidth = 93
ItemIndex = 1
Items.Strings = (
'CP1251'
'CP1252CYR'
)
OnClick = rgEncodingClick
TabOrder = 1
end
object lEncodingsDescription: TLabel
AnchorSideLeft.Control = rgGames
AnchorSideTop.Control = rgGames
AnchorSideTop.Side = asrBottom
Left = 5
Height = 45
Top = 63
Width = 152
Caption = 'Кодировки русификаторов:'#13#10'CP1251 — Full и LiteMP'#13#10'CP1252CYR — Lite'
end
object bGithub: TButton
AnchorSideLeft.Control = lEncodingsDescription
AnchorSideTop.Control = lEncodingsDescription
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = bStrategium
Left = 5
Height = 25
Hint = 'Открыть в браузере страницу проекта на Github.com.'
Top = 108
Width = 89
AutoSize = True
Caption = 'Github.com'
OnClick = bGithubClick
TabOrder = 2
end
object bStrategium: TButton
AnchorSideLeft.Control = bGithub
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = lEncodingsDescription
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 94
Height = 25
Hint = 'Открыть в браузере тему программы на Strategium.ru.'
Top = 108
Width = 98
AutoSize = True
Caption = 'Strategium.ru'
OnClick = bStrategiumClick
TabOrder = 3
end
object lCopyingNotice: TLabel
AnchorSideLeft.Control = bGithub
AnchorSideTop.Control = bGithub
AnchorSideTop.Side = asrBottom
Left = 5
Height = 139
Top = 133
Width = 240
AutoSize = False
Caption = 'WPCKNE v0.1.0'#13#10'Copyright (C) 2018, 2022 terqüéz <[email protected]>'#13#10'License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.'#13#10'This is free software: you are free to change and redistribute it.'#13#10'There is NO WARRANTY, to the extent permitted by law.'
WordWrap = True
end
object tGame: TTimer
OnTimer = tGameTimer
Left = 200
Top = 72
end
end