source: trunk/Forms/FormAcronyms.lfm

Last change on this file was 221, checked in by chronos, 4 days ago
  • Fixed: Use scrollbox in resizable forms.
  • Fixed: Translate all forms.
File size: 3.4 KB
Line 
1object FormAcronyms: TFormAcronyms
2 Left = 755
3 Height = 670
4 Top = 284
5 Width = 888
6 Caption = 'Acronyms'
7 ClientHeight = 670
8 ClientWidth = 888
9 DesignTimePPI = 144
10 OnCreate = FormCreate
11 OnShow = FormShow
12 Position = poScreenCenter
13 LCLVersion = '3.6.0.0'
14 object ListViewAcronyms: TListView
15 Left = 5
16 Height = 563
17 Top = 41
18 Width = 878
19 Align = alClient
20 BorderSpacing.Left = 5
21 BorderSpacing.Right = 5
22 BorderSpacing.Bottom = 5
23 Columns = <
24 item
25 Caption = 'Name'
26 Width = 120
27 end
28 item
29 Caption = 'Description'
30 Width = 360
31 end
32 item
33 Caption = 'Categories'
34 Width = 383
35 end>
36 MultiSelect = True
37 OwnerData = True
38 PopupMenu = PopupMenuAcronym
39 ReadOnly = True
40 RowSelect = True
41 TabOrder = 0
42 ViewStyle = vsReport
43 OnData = ListViewAcronymsData
44 OnDblClick = ListViewAcronymsDblClick
45 OnKeyPress = ListViewAcronymsKeyPress
46 OnResize = ListViewAcronymsResize
47 OnSelectItem = ListViewAcronymsSelectItem
48 end
49 object ListViewFilter1: TListViewFilter
50 Left = 5
51 Height = 36
52 Top = 5
53 Width = 878
54 OnChange = ListViewFilter1Change
55 Align = alTop
56 BorderSpacing.Left = 5
57 BorderSpacing.Top = 5
58 BorderSpacing.Right = 5
59 end
60 object ToolBar1: TToolBar
61 AnchorSideBottom.Control = StatusBar1
62 Left = 0
63 Height = 33
64 Top = 609
65 Width = 888
66 Align = alBottom
67 Caption = 'ToolBar1'
68 Images = Core.ImageListSmall
69 ParentShowHint = False
70 ShowHint = True
71 TabOrder = 2
72 object ToolButton1: TToolButton
73 Left = 1
74 Top = 2
75 Action = AAdd
76 end
77 object ToolButton2: TToolButton
78 Left = 36
79 Top = 2
80 Action = AModify
81 end
82 object ToolButton3: TToolButton
83 Left = 71
84 Top = 2
85 Action = ARemove
86 end
87 end
88 object StatusBar1: TStatusBar
89 Left = 0
90 Height = 28
91 Top = 642
92 Width = 888
93 Panels = <
94 item
95 Width = 144
96 end
97 item
98 Width = 144
99 end>
100 SimplePanel = False
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 = 298
110 Top = 202
111 end
112 object ActionList1: TActionList
113 Left = 298
114 Top = 278
115 object AAdd: TAction
116 Caption = 'Add'
117 ImageIndex = 0
118 OnExecute = AAddExecute
119 ShortCut = 45
120 end
121 object AModify: TAction
122 Caption = 'Modify'
123 ImageIndex = 3
124 OnExecute = AModifyExecute
125 ShortCut = 13
126 end
127 object ARemove: TAction
128 Caption = 'Remove'
129 ImageIndex = 4
130 OnExecute = ARemoveExecute
131 ShortCut = 46
132 end
133 object ASelectAll: TAction
134 Caption = 'Select all'
135 OnExecute = ASelectAllExecute
136 ShortCut = 16449
137 end
138 end
139 object PopupMenuAcronym: TPopupMenu
140 Left = 298
141 Top = 355
142 object MenuItem4: TMenuItem
143 Action = AAdd
144 end
145 object MenuItem5: TMenuItem
146 Action = AModify
147 end
148 object MenuItem6: TMenuItem
149 Action = ARemove
150 end
151 object MenuItem7: TMenuItem
152 Action = ASelectAll
153 end
154 end
155end
Note: See TracBrowser for help on using the repository browser.