source: trunk/Forms/UFormCategories.lfm

Last change on this file was 204, checked in by chronos, 5 years ago
  • Modified: Use fgl unit instead of TemplateGenerics.
  • Modified: Update czech translation.
  • Modified: Updated packages.
File size: 3.0 KB
Line 
1object FormCategories: TFormCategories
2 Left = 516
3 Height = 429
4 Top = 439
5 Width = 784
6 Caption = 'Acronym categories'
7 ClientHeight = 429
8 ClientWidth = 784
9 DesignTimePPI = 120
10 OnClose = FormClose
11 OnCreate = FormCreate
12 OnShow = FormShow
13 Position = poScreenCenter
14 LCLVersion = '2.0.2.0'
15 object ListViewCategories: TListView
16 Left = 4
17 Height = 395
18 Top = 4
19 Width = 776
20 Align = alClient
21 BorderSpacing.Around = 4
22 Checkboxes = True
23 Columns = <
24 item
25 Caption = 'Name'
26 Width = 300
27 end
28 item
29 Caption = 'Used count'
30 Width = 456
31 end>
32 MultiSelect = True
33 OwnerData = True
34 PopupMenu = PopupMenuCategory
35 ReadOnly = True
36 RowSelect = True
37 TabOrder = 0
38 ViewStyle = vsReport
39 OnChange = ListViewCategoriesChange
40 OnData = ListViewCategoriesData
41 OnDblClick = ListViewCategoriesDblClick
42 OnKeyPress = ListViewCategoriesKeyPress
43 OnSelectItem = ListViewCategoriesSelectItem
44 end
45 object ToolBar1: TToolBar
46 Left = 0
47 Height = 26
48 Top = 403
49 Width = 784
50 Align = alBottom
51 Images = Core.ImageList1
52 ParentShowHint = False
53 ShowHint = True
54 TabOrder = 1
55 object ToolButton1: TToolButton
56 Left = 1
57 Top = 2
58 Action = AAdd
59 end
60 object ToolButton2: TToolButton
61 Left = 30
62 Top = 2
63 Action = AModify
64 end
65 object ToolButton3: TToolButton
66 Left = 59
67 Top = 2
68 Action = ARemove
69 end
70 end
71 object ActionList1: TActionList
72 Images = Core.ImageList1
73 left = 380
74 top = 196
75 object AAdd: TAction
76 Caption = 'Add'
77 ImageIndex = 0
78 OnExecute = AAddExecute
79 ShortCut = 45
80 end
81 object ARemove: TAction
82 Caption = 'Remove'
83 ImageIndex = 4
84 OnExecute = ARemoveExecute
85 ShortCut = 46
86 end
87 object AModify: TAction
88 Caption = 'Modify'
89 ImageIndex = 3
90 OnExecute = AModifyExecute
91 ShortCut = 13
92 end
93 object ASelectAll: TAction
94 Caption = 'Select all'
95 OnExecute = ASelectAllExecute
96 ShortCut = 16449
97 end
98 object AEnable: TAction
99 Caption = 'Enable'
100 OnExecute = AEnableExecute
101 end
102 object ADisable: TAction
103 Caption = 'Disable'
104 OnExecute = ADisableExecute
105 end
106 end
107 object PopupMenuCategory: TPopupMenu
108 Images = Core.ImageList1
109 left = 119
110 top = 192
111 object MenuItem1: TMenuItem
112 Action = AAdd
113 end
114 object MenuItem2: TMenuItem
115 Action = AModify
116 end
117 object MenuItem3: TMenuItem
118 Action = ARemove
119 end
120 object MenuItem4: TMenuItem
121 Action = ASelectAll
122 end
123 object MenuItem5: TMenuItem
124 Caption = '-'
125 end
126 object MenuItem6: TMenuItem
127 Action = AEnable
128 end
129 object MenuItem7: TMenuItem
130 Action = ADisable
131 end
132 end
133 object ListViewSort1: TListViewSort
134 ListView = ListViewCategories
135 OnCompareItem = ListViewSort1CompareItem
136 OnFilter = ListViewSort1Filter
137 Column = 0
138 Order = soNone
139 left = 536
140 top = 184
141 end
142end
Note: See TracBrowser for help on using the repository browser.