source: CoolAudio/Demo/FormPlaylist.lfm

Last change on this file was 569, checked in by chronos, 3 months ago
  • Modified: Removed U prefix from CoolAudio unit names.
File size: 3.2 KB
Line 
1object FormPlaylist: TFormPlaylist
2 Left = 331
3 Height = 400
4 Top = 119
5 Width = 516
6 Caption = 'Playlist'
7 ClientHeight = 400
8 ClientWidth = 516
9 OnCreate = FormCreate
10 OnDestroy = FormDestroy
11 OnShow = FormShow
12 LCLVersion = '1.1'
13 object ButtonDelete: TButton
14 Left = 160
15 Height = 25
16 Top = 366
17 Width = 49
18 Action = AItemDelete
19 Anchors = [akLeft, akBottom]
20 TabOrder = 0
21 end
22 object ButtonAddFolder: TButton
23 Left = 80
24 Height = 25
25 Top = 366
26 Width = 73
27 Action = AAddDirectory
28 Anchors = [akLeft, akBottom]
29 TabOrder = 1
30 end
31 object ButtonAddFile: TButton
32 Left = 8
33 Height = 25
34 Top = 366
35 Width = 65
36 Action = AAddFile
37 Anchors = [akLeft, akBottom]
38 TabOrder = 2
39 end
40 object ListView1: TListView
41 Left = 8
42 Height = 350
43 Top = 8
44 Width = 505
45 Anchors = [akTop, akLeft, akRight, akBottom]
46 AutoWidthLastColumn = True
47 Columns = <
48 item
49 Caption = 'Location'
50 Width = 501
51 end>
52 MultiSelect = True
53 OwnerData = True
54 PopupMenu = PopupMenu1
55 ReadOnly = True
56 RowSelect = True
57 TabOrder = 3
58 ViewStyle = vsReport
59 OnClick = ListView1Click
60 OnData = ListView1Data
61 OnDblClick = ListView1DblClick
62 OnKeyPress = ListView1KeyPress
63 end
64 object ButtonClear: TButton
65 Left = 216
66 Height = 25
67 Top = 366
68 Width = 49
69 Action = AClearAll
70 Anchors = [akLeft, akBottom]
71 TabOrder = 4
72 end
73 object CheckBoxRandom: TCheckBox
74 Left = 328
75 Height = 17
76 Top = 366
77 Width = 88
78 Anchors = [akLeft, akBottom]
79 Caption = 'Random order'
80 TabOrder = 5
81 end
82 object CheckBoxRepeat: TCheckBox
83 Left = 432
84 Height = 17
85 Top = 366
86 Width = 55
87 Anchors = [akLeft, akBottom]
88 Caption = 'Repeat'
89 TabOrder = 6
90 end
91 object Button1: TButton
92 Left = 272
93 Height = 25
94 Top = 366
95 Width = 51
96 Action = AItemPlay
97 Anchors = [akLeft, akBottom]
98 TabOrder = 7
99 end
100 object OpenDialog1: TOpenDialog
101 Filter = 'WAV files|*.wav|All files|*.*'
102 FilterIndex = 0
103 left = 44
104 top = 60
105 end
106 object PopupMenu1: TPopupMenu
107 left = 136
108 top = 60
109 object MenuItem5: TMenuItem
110 Action = AItemPlay
111 end
112 object MenuItem1: TMenuItem
113 Action = AAddFile
114 end
115 object MenuItem2: TMenuItem
116 Action = AAddDirectory
117 end
118 object MenuItem3: TMenuItem
119 Action = AItemDelete
120 end
121 object MenuItem4: TMenuItem
122 Action = AClearAll
123 end
124 end
125 object ActionList1: TActionList
126 left = 208
127 top = 60
128 object AItemDelete: TAction
129 Caption = 'Delete'
130 OnExecute = AItemDeleteExecute
131 end
132 object AAddFile: TAction
133 Caption = 'Add file'
134 OnExecute = AAddFileExecute
135 end
136 object AAddDirectory: TAction
137 Caption = 'Add directory'
138 OnExecute = AAddDirectoryExecute
139 end
140 object AClearAll: TAction
141 Caption = 'Clear all'
142 OnExecute = AClearAllExecute
143 end
144 object AItemPlay: TAction
145 Caption = 'Play'
146 OnExecute = AItemPlayExecute
147 end
148 end
149end
Note: See TracBrowser for help on using the repository browser.