-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadvancededit.lfm
196 lines (196 loc) · 3.98 KB
/
advancededit.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
object AdvancedEditForm: TAdvancedEditForm
Left = 935
Height = 311
Top = 596
Width = 770
Caption = 'Screen by Screen Edit'
ClientHeight = 311
ClientWidth = 770
OnClose = FormClose
OnCreate = FormCreate
OnDestroy = FormDestroy
LCLVersion = '2.0.10.0'
object SongScreenLB: TListBox
Left = 16
Height = 184
Top = 16
Width = 72
Anchors = [akTop, akLeft, akBottom]
ItemHeight = 0
OnClick = SongScreenLBClick
OnDrawItem = SongScreenLBDrawItem
PopupMenu = ItemsMenu
ScrollWidth = 70
Style = lbOwnerDrawVariable
TabOrder = 0
TopIndex = -1
end
object AddVerseButton: TButton
Left = 104
Height = 25
Top = 48
Width = 136
Caption = 'Add &Verse'
OnClick = AddVerseButtonClick
TabOrder = 2
end
object AddChorusButton: TButton
Left = 104
Height = 25
Top = 80
Width = 136
Caption = 'Add &Chorus'
OnClick = AddChorusButtonClick
TabOrder = 3
end
object AddBridgeButton: TButton
Left = 104
Height = 25
Top = 112
Width = 136
Caption = 'Add &Bridge'
OnClick = AddBridgeButtonClick
TabOrder = 4
end
object AddEndingButton: TButton
Left = 104
Height = 25
Top = 144
Width = 136
Caption = 'Add &Ending'
OnClick = AddEndingButtonClick
TabOrder = 5
end
object AddBeginningButton: TButton
Left = 104
Height = 25
Top = 16
Width = 136
Caption = 'Add Be&ginning'
OnClick = AddBeginningButtonClick
TabOrder = 1
end
object RepeatExistingButton: TButton
Left = 104
Height = 25
Top = 192
Width = 136
Caption = '&Repeat Existining'
OnClick = RepeatExistingButtonClick
TabOrder = 6
end
object MarkStartButton: TButton
Left = 104
Height = 25
Top = 240
Width = 136
Anchors = [akLeft, akBottom]
Caption = 'Mark Loop Start'
OnClick = MarkStartButtonClick
TabOrder = 7
end
object MarkEndButton: TButton
Left = 104
Height = 25
Top = 272
Width = 136
Anchors = [akLeft, akBottom]
Caption = 'Mark Loop End'
OnClick = MarkEndButtonClick
TabOrder = 8
end
object SongMemo: TMemo
Left = 256
Height = 249
Top = 16
Width = 494
Anchors = [akTop, akLeft, akRight, akBottom]
OnChange = SongMemoChange
TabOrder = 9
end
object CCLButton: TButton
Left = 16
Height = 25
Top = 272
Width = 72
Anchors = [akLeft, akBottom]
Caption = 'CCL No'
OnClick = CCLButtonClick
TabOrder = 10
end
object CopyButton: TButton
Left = 16
Height = 25
Top = 240
Width = 72
Anchors = [akLeft, akBottom]
Caption = 'Copyright'
OnClick = CopyButtonClick
TabOrder = 11
end
object BGImgButton: TButton
Left = 16
Height = 25
Top = 208
Width = 72
Anchors = [akLeft, akBottom]
Caption = 'BG Image'
OnClick = BGImgButtonClick
TabOrder = 12
end
object SaveButton: TButton
Left = 675
Height = 25
Top = 272
Width = 75
Anchors = [akLeft, akBottom]
Caption = '&Save'
OnClick = SaveButtonClick
TabOrder = 13
end
object CancelButton: TButton
Left = 256
Height = 25
Top = 272
Width = 75
Anchors = [akLeft, akBottom]
Caption = 'Cancel'
OnClick = CancelButtonClick
TabOrder = 14
end
object ExistingMenu: TPopupMenu
Left = 272
Top = 208
end
object ItemsMenu: TPopupMenu
Left = 272
Top = 32
object ItemUp: TMenuItem
Caption = 'Move &Up'
OnClick = ItemUpClick
end
object ItemDown: TMenuItem
Caption = 'Move &Down'
OnClick = ItemDownClick
end
object ItemDelete: TMenuItem
Caption = '&Delete'
end
object ItemStart: TMenuItem
Caption = 'Loop &Start'
OnClick = MarkStartButtonClick
end
object ItemEnd: TMenuItem
Caption = 'Loop &End'
OnClick = MarkEndButtonClick
end
end
object OpenDialog1: TOpenDialog
Left = 272
Top = 104
end
object SaveDialog1: TSaveDialog
Left = 632
Top = 272
end
end