source: branches/generator/Forms/UFormLookupTables.lfm

Last change on this file was 190, checked in by chronos, 6 years ago
  • Added: Missing .lrj files to generate complete language files.
File size: 2.8 KB
Line 
1object FormLookupTables: TFormLookupTables
2 Left = 521
3 Height = 636
4 Top = 323
5 Width = 860
6 Caption = 'Lookup tables'
7 ClientHeight = 636
8 ClientWidth = 860
9 DesignTimePPI = 144
10 OnClose = FormClose
11 OnCreate = FormCreate
12 OnShow = FormShow
13 LCLVersion = '2.0.2.0'
14 object ListView1: TListView
15 Left = 6
16 Height = 576
17 Top = 6
18 Width = 848
19 Align = alClient
20 BorderSpacing.Around = 6
21 Columns = <
22 item
23 Caption = 'Name'
24 Width = 833
25 end>
26 MultiSelect = True
27 OwnerData = True
28 ParentFont = False
29 PopupMenu = PopupMenu1
30 ReadOnly = True
31 RowSelect = True
32 TabOrder = 0
33 ViewStyle = vsReport
34 OnData = ListView1Data
35 OnDblClick = ListView1DblClick
36 OnKeyPress = ListView1KeyPress
37 OnSelectItem = ListView1SelectItem
38 end
39 object CoolBar1: TCoolBar
40 Left = 0
41 Height = 48
42 Top = 588
43 Width = 860
44 Align = alBottom
45 Bands = <
46 item
47 Control = ToolBar1
48 Width = 179
49 end>
50 Images = Core.ImageList1
51 ParentFont = False
52 object ToolBar1: TToolBar
53 AnchorSideLeft.Control = CoolBar1
54 AnchorSideTop.Control = CoolBar1
55 Left = 24
56 Height = 33
57 Top = 5
58 Width = 106
59 Align = alNone
60 AutoSize = True
61 BorderSpacing.Left = 22
62 BorderSpacing.Top = 3
63 EdgeInner = esNone
64 EdgeOuter = esNone
65 Images = Core.ImageList1
66 ParentFont = False
67 ParentShowHint = False
68 ShowHint = True
69 TabOrder = 0
70 Transparent = True
71 object ToolButton1: TToolButton
72 Left = 1
73 Top = 0
74 Action = AAdd
75 end
76 object ToolButton2: TToolButton
77 Left = 36
78 Top = 0
79 Action = AModify
80 end
81 object ToolButton3: TToolButton
82 Left = 71
83 Top = 0
84 Action = ARemove
85 end
86 end
87 end
88 object ActionList1: TActionList
89 Images = Core.ImageList1
90 left = 204
91 top = 264
92 object AAdd: TAction
93 Caption = 'Add'
94 Hint = 'Add'
95 ImageIndex = 0
96 OnExecute = AAddExecute
97 ShortCut = 45
98 end
99 object AModify: TAction
100 Caption = 'Modify'
101 Hint = 'Modify'
102 ImageIndex = 3
103 OnExecute = AModifyExecute
104 end
105 object ARemove: TAction
106 Caption = 'Remove'
107 Hint = 'Remove'
108 ImageIndex = 1
109 OnExecute = ARemoveExecute
110 ShortCut = 46
111 end
112 end
113 object PopupMenu1: TPopupMenu
114 Images = Core.ImageList1
115 left = 432
116 top = 264
117 object MenuItem1: TMenuItem
118 Action = AAdd
119 end
120 object MenuItem2: TMenuItem
121 Action = AModify
122 end
123 object MenuItem3: TMenuItem
124 Action = ARemove
125 end
126 end
127 object ListViewSort1: TListViewSort
128 ListView = ListView1
129 OnCompareItem = ListViewSort1CompareItem
130 OnFilter = ListViewSort1Filter
131 Column = 0
132 Order = soUp
133 left = 612
134 top = 264
135 end
136end
Note: See TracBrowser for help on using the repository browser.