source: trunk/Forms/FormCategories.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: 2.9 KB
Line 
1object FormCategories: TFormCategories
2 Left = 516
3 Height = 515
4 Top = 439
5 Width = 941
6 Caption = 'Acronym categories'
7 ClientHeight = 515
8 ClientWidth = 941
9 DesignTimePPI = 144
10 OnCreate = FormCreate
11 OnShow = FormShow
12 Position = poScreenCenter
13 LCLVersion = '3.6.0.0'
14 object ListViewCategories: TListView
15 Left = 5
16 Height = 472
17 Top = 5
18 Width = 931
19 Align = alClient
20 BorderSpacing.Around = 5
21 Checkboxes = True
22 Columns = <
23 item
24 Caption = 'Name'
25 Width = 360
26 end
27 item
28 Caption = 'Used count'
29 Width = 556
30 end>
31 MultiSelect = True
32 OwnerData = True
33 PopupMenu = PopupMenuCategory
34 ReadOnly = True
35 RowSelect = True
36 TabOrder = 0
37 ViewStyle = vsReport
38 OnChange = ListViewCategoriesChange
39 OnData = ListViewCategoriesData
40 OnDblClick = ListViewCategoriesDblClick
41 OnKeyPress = ListViewCategoriesKeyPress
42 OnSelectItem = ListViewCategoriesSelectItem
43 end
44 object ToolBar1: TToolBar
45 Left = 0
46 Height = 33
47 Top = 482
48 Width = 941
49 Align = alBottom
50 Images = Core.ImageListSmall
51 ParentShowHint = False
52 ShowHint = True
53 TabOrder = 1
54 object ToolButton1: TToolButton
55 Left = 1
56 Top = 2
57 Action = AAdd
58 end
59 object ToolButton2: TToolButton
60 Left = 36
61 Top = 2
62 Action = AModify
63 end
64 object ToolButton3: TToolButton
65 Left = 71
66 Top = 2
67 Action = ARemove
68 end
69 end
70 object ActionList1: TActionList
71 Left = 456
72 Top = 235
73 object AAdd: TAction
74 Caption = 'Add'
75 ImageIndex = 0
76 OnExecute = AAddExecute
77 ShortCut = 45
78 end
79 object ARemove: TAction
80 Caption = 'Remove'
81 ImageIndex = 4
82 OnExecute = ARemoveExecute
83 ShortCut = 46
84 end
85 object AModify: TAction
86 Caption = 'Modify'
87 ImageIndex = 3
88 OnExecute = AModifyExecute
89 ShortCut = 13
90 end
91 object ASelectAll: TAction
92 Caption = 'Select all'
93 OnExecute = ASelectAllExecute
94 ShortCut = 16449
95 end
96 object AEnable: TAction
97 Caption = 'Enable'
98 OnExecute = AEnableExecute
99 end
100 object ADisable: TAction
101 Caption = 'Disable'
102 OnExecute = ADisableExecute
103 end
104 end
105 object PopupMenuCategory: TPopupMenu
106 Left = 143
107 Top = 230
108 object MenuItem1: TMenuItem
109 Action = AAdd
110 end
111 object MenuItem2: TMenuItem
112 Action = AModify
113 end
114 object MenuItem3: TMenuItem
115 Action = ARemove
116 end
117 object MenuItem4: TMenuItem
118 Action = ASelectAll
119 end
120 object MenuItem5: TMenuItem
121 Caption = '-'
122 end
123 object MenuItem6: TMenuItem
124 Action = AEnable
125 end
126 object MenuItem7: TMenuItem
127 Action = ADisable
128 end
129 end
130 object ListViewSort1: TListViewSort
131 ListView = ListViewCategories
132 OnCompareItem = ListViewSort1CompareItem
133 OnFilter = ListViewSort1Filter
134 Column = 0
135 Order = soNone
136 Left = 643
137 Top = 221
138 end
139end
Note: See TracBrowser for help on using the repository browser.