source: branches/generator/Forms/UFormRules.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: 3.1 KB
Line 
1object FormRules: TFormRules
2 Left = 348
3 Height = 916
4 Top = 230
5 Width = 1286
6 Caption = 'Rules'
7 ClientHeight = 916
8 ClientWidth = 1286
9 DesignTimePPI = 144
10 OnClose = FormClose
11 OnCreate = FormCreate
12 OnShow = FormShow
13 LCLVersion = '2.0.2.0'
14 object CoolBar1: TCoolBar
15 Left = 0
16 Height = 48
17 Top = 868
18 Width = 1286
19 Align = alBottom
20 Bands = <
21 item
22 Control = ToolBar1
23 Width = 179
24 end>
25 Images = Core.ImageList1
26 ParentFont = False
27 object ToolBar1: TToolBar
28 AnchorSideLeft.Control = CoolBar1
29 AnchorSideTop.Control = CoolBar1
30 Left = 24
31 Height = 33
32 Top = 5
33 Width = 106
34 Align = alNone
35 AutoSize = True
36 BorderSpacing.Left = 22
37 BorderSpacing.Top = 3
38 EdgeInner = esNone
39 EdgeOuter = esNone
40 Images = Core.ImageList1
41 ParentFont = False
42 ParentShowHint = False
43 ShowHint = True
44 TabOrder = 0
45 Transparent = True
46 object ToolButton1: TToolButton
47 Left = 1
48 Top = 0
49 Action = AAdd
50 end
51 object ToolButton2: TToolButton
52 Left = 36
53 Top = 0
54 Action = AModify
55 end
56 object ToolButton3: TToolButton
57 Left = 71
58 Top = 0
59 Action = ARemove
60 end
61 end
62 end
63 object ListView1: TListView
64 Left = 6
65 Height = 856
66 Top = 6
67 Width = 1274
68 Align = alClient
69 BorderSpacing.Around = 6
70 Columns = <
71 item
72 Caption = 'Name'
73 Width = 300
74 end
75 item
76 Caption = 'Node'
77 Width = 120
78 end
79 item
80 Caption = 'Items'
81 Width = 600
82 end
83 item
84 Caption = 'Char length'
85 Width = 120
86 end
87 item
88 Caption = 'Level'
89 Width = 119
90 end>
91 MultiSelect = True
92 OwnerData = True
93 ParentFont = False
94 PopupMenu = PopupMenu1
95 ReadOnly = True
96 RowSelect = True
97 TabOrder = 1
98 ViewStyle = vsReport
99 OnData = ListView1Data
100 OnDblClick = ListView1DblClick
101 OnKeyPress = ListView1KeyPress
102 OnSelectItem = ListView1SelectItem
103 end
104 object ActionList1: TActionList
105 Images = Core.ImageList1
106 left = 372
107 top = 318
108 object AAdd: TAction
109 Caption = 'Add'
110 Hint = 'Add'
111 ImageIndex = 0
112 OnExecute = AAddExecute
113 ShortCut = 45
114 end
115 object AModify: TAction
116 Caption = 'Modify'
117 Hint = 'Modify'
118 ImageIndex = 3
119 OnExecute = AModifyExecute
120 end
121 object ARemove: TAction
122 Caption = 'Remove'
123 Hint = 'Remove'
124 ImageIndex = 1
125 OnExecute = ARemoveExecute
126 ShortCut = 46
127 end
128 end
129 object PopupMenu1: TPopupMenu
130 Images = Core.ImageList1
131 left = 641
132 top = 318
133 object MenuItem1: TMenuItem
134 Action = AAdd
135 end
136 object MenuItem2: TMenuItem
137 Action = AModify
138 end
139 object MenuItem3: TMenuItem
140 Action = ARemove
141 end
142 end
143 object ListViewSort1: TListViewSort
144 ListView = ListView1
145 OnCompareItem = ListViewSort1CompareItem
146 OnFilter = ListViewSort1Filter
147 Column = 0
148 Order = soUp
149 left = 861
150 top = 318
151 end
152end
Note: See TracBrowser for help on using the repository browser.