source: trunk/UFormSearch.lfm

Last change on this file was 6, checked in by chronos, 10 years ago
  • Added: Search form for searching configuration tree.
  • Modified: Better menu category creation. Still not correct.
  • Added: Detect kernel version from Makefile.
File size: 1003 bytes
Line 
1object FormSearch: TFormSearch
2 Left = 713
3 Height = 506
4 Top = 465
5 Width = 772
6 Caption = 'Search'
7 ClientHeight = 506
8 ClientWidth = 772
9 LCLVersion = '1.3'
10 object EditText: TEdit
11 Left = 20
12 Height = 32
13 Top = 8
14 Width = 304
15 OnKeyPress = EditTextKeyPress
16 TabOrder = 0
17 end
18 object ButtonSearch: TButton
19 Left = 352
20 Height = 25
21 Top = 15
22 Width = 75
23 Caption = 'Search'
24 OnClick = ButtonSearchClick
25 TabOrder = 1
26 end
27 object ListView1: TListView
28 Left = 16
29 Height = 448
30 Top = 48
31 Width = 744
32 Anchors = [akTop, akLeft, akRight, akBottom]
33 Columns = <
34 item
35 Caption = 'ID'
36 Width = 150
37 end
38 item
39 Caption = 'Name'
40 Width = 250
41 end
42 item
43 Caption = 'Path'
44 Width = 327
45 end>
46 ReadOnly = True
47 RowSelect = True
48 TabOrder = 2
49 ViewStyle = vsReport
50 OnDblClick = ListView1DblClick
51 OnKeyPress = ListView1KeyPress
52 end
53end
Note: See TracBrowser for help on using the repository browser.