source: trunk/Forms/UFormAcronyms.lfm

Last change on this file was 203, checked in by chronos, 5 years ago
  • Modified: Build under Lazarus 2.0.0 and newer.
  • Modified: Older .lrt files replaced by .lrj files.
File size: 3.4 KB
Line 
1object FormAcronyms: TFormAcronyms
2 Left = 426
3 Height = 558
4 Top = 251
5 Width = 740
6 Caption = 'Acronyms'
7 ClientHeight = 558
8 ClientWidth = 740
9 DesignTimePPI = 120
10 OnClose = FormClose
11 OnCreate = FormCreate
12 OnShow = FormShow
13 Position = poScreenCenter
14 LCLVersion = '2.0.2.0'
15 object ListViewAcronyms: TListView
16 Left = 4
17 Height = 466
18 Top = 34
19 Width = 732
20 Align = alClient
21 BorderSpacing.Left = 4
22 BorderSpacing.Right = 4
23 BorderSpacing.Bottom = 4
24 Columns = <
25 item
26 Caption = 'Name'
27 Width = 100
28 end
29 item
30 Caption = 'Description'
31 Width = 300
32 end
33 item
34 Caption = 'Categories'
35 Width = 312
36 end>
37 MultiSelect = True
38 OwnerData = True
39 PopupMenu = PopupMenuAcronym
40 ReadOnly = True
41 RowSelect = True
42 TabOrder = 0
43 ViewStyle = vsReport
44 OnData = ListViewAcronymsData
45 OnDblClick = ListViewAcronymsDblClick
46 OnKeyPress = ListViewAcronymsKeyPress
47 OnResize = ListViewAcronymsResize
48 OnSelectItem = ListViewAcronymsSelectItem
49 end
50 object ListViewFilter1: TListViewFilter
51 Left = 4
52 Height = 30
53 Top = 4
54 Width = 732
55 OnChange = ListViewFilter1Change
56 Align = alTop
57 BorderSpacing.Left = 4
58 BorderSpacing.Top = 4
59 BorderSpacing.Right = 4
60 end
61 object StatusBar1: TStatusBar
62 Left = 0
63 Height = 28
64 Top = 530
65 Width = 740
66 Panels = <
67 item
68 Width = 120
69 end
70 item
71 Width = 120
72 end>
73 SimplePanel = False
74 end
75 object ToolBar1: TToolBar
76 Left = 0
77 Height = 26
78 Top = 504
79 Width = 740
80 Align = alBottom
81 Caption = 'ToolBar1'
82 Images = Core.ImageList1
83 ParentShowHint = False
84 ShowHint = True
85 TabOrder = 3
86 object ToolButton1: TToolButton
87 Left = 1
88 Top = 2
89 Action = AAdd
90 end
91 object ToolButton2: TToolButton
92 Left = 30
93 Top = 2
94 Action = AModify
95 end
96 object ToolButton3: TToolButton
97 Left = 59
98 Top = 2
99 Action = ARemove
100 end
101 end
102 object ListViewSort1: TListViewSort
103 ListView = ListViewAcronyms
104 OnCompareItem = ListViewSort1CompareItem
105 OnFilter = ListViewSort1Filter
106 OnColumnWidthChanged = ListViewSort1ColumnWidthChanged
107 Column = 0
108 Order = soUp
109 left = 248
110 top = 168
111 end
112 object ActionList1: TActionList
113 Images = Core.ImageList1
114 left = 248
115 top = 232
116 object AAdd: TAction
117 Caption = 'Add'
118 ImageIndex = 0
119 OnExecute = AAddExecute
120 ShortCut = 45
121 end
122 object AModify: TAction
123 Caption = 'Modify'
124 ImageIndex = 3
125 OnExecute = AModifyExecute
126 ShortCut = 13
127 end
128 object ARemove: TAction
129 Caption = 'Remove'
130 ImageIndex = 4
131 OnExecute = ARemoveExecute
132 ShortCut = 46
133 end
134 object ASelectAll: TAction
135 Caption = 'Select all'
136 OnExecute = ASelectAllExecute
137 ShortCut = 16449
138 end
139 end
140 object PopupMenuAcronym: TPopupMenu
141 Images = Core.ImageList1
142 left = 248
143 top = 296
144 object MenuItem4: TMenuItem
145 Action = AAdd
146 end
147 object MenuItem5: TMenuItem
148 Action = AModify
149 end
150 object MenuItem6: TMenuItem
151 Action = ARemove
152 end
153 object MenuItem7: TMenuItem
154 Action = ASelectAll
155 end
156 end
157end
Note: See TracBrowser for help on using the repository browser.