source: trunk/Forms/FormCategories.lfm

Last change on this file was 234, checked in by chronos, 5 months ago
  • Fixed: Workaround to show checkboxes on Qt5 in import sources and acronym categories.
File size: 3.3 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 = 'Acronym meanings'
29 Width = 556
30 end
31 item
32 Caption = 'Import sources'
33 end>
34 MultiSelect = True
35 OwnerData = True
36 PopupMenu = PopupMenuCategory
37 ReadOnly = True
38 RowSelect = True
39 TabOrder = 0
40 ViewStyle = vsReport
41 OnChange = ListViewCategoriesChange
42 OnData = ListViewCategoriesData
43 OnDblClick = ListViewCategoriesDblClick
44 OnKeyPress = ListViewCategoriesKeyPress
45 OnSelectItem = ListViewCategoriesSelectItem
46 end
47 object ToolBar1: TToolBar
48 Left = 0
49 Height = 33
50 Top = 482
51 Width = 941
52 Align = alBottom
53 Images = Core.ImageListSmall
54 ParentShowHint = False
55 ShowHint = True
56 TabOrder = 1
57 object ToolButton1: TToolButton
58 Left = 1
59 Top = 2
60 Action = AAdd
61 end
62 object ToolButton2: TToolButton
63 Left = 36
64 Top = 2
65 Action = AModify
66 end
67 object ToolButton3: TToolButton
68 Left = 71
69 Top = 2
70 Action = ARemove
71 end
72 object ToolButton4: TToolButton
73 Left = 106
74 Top = 2
75 Action = AEnable
76 end
77 object ToolButton5: TToolButton
78 Left = 141
79 Top = 2
80 Action = ADisable
81 end
82 end
83 object ActionList1: TActionList
84 Images = Core.ImageListSmall
85 Left = 456
86 Top = 235
87 object AAdd: TAction
88 Caption = 'Add'
89 ImageIndex = 0
90 OnExecute = AAddExecute
91 ShortCut = 45
92 end
93 object ARemove: TAction
94 Caption = 'Remove'
95 ImageIndex = 4
96 OnExecute = ARemoveExecute
97 ShortCut = 46
98 end
99 object AModify: TAction
100 Caption = 'Modify'
101 ImageIndex = 3
102 OnExecute = AModifyExecute
103 ShortCut = 13
104 end
105 object ASelectAll: TAction
106 Caption = 'Select all'
107 OnExecute = ASelectAllExecute
108 ShortCut = 16449
109 end
110 object AEnable: TAction
111 Caption = 'Enable'
112 ImageIndex = 24
113 OnExecute = AEnableExecute
114 end
115 object ADisable: TAction
116 Caption = 'Disable'
117 ImageIndex = 23
118 OnExecute = ADisableExecute
119 end
120 end
121 object PopupMenuCategory: TPopupMenu
122 Images = Core.ImageListSmall
123 Left = 143
124 Top = 230
125 object MenuItem1: TMenuItem
126 Action = AAdd
127 end
128 object MenuItem2: TMenuItem
129 Action = AModify
130 end
131 object MenuItem3: TMenuItem
132 Action = ARemove
133 end
134 object MenuItem4: TMenuItem
135 Action = ASelectAll
136 end
137 object MenuItem5: TMenuItem
138 Caption = '-'
139 end
140 object MenuItem6: TMenuItem
141 Action = AEnable
142 end
143 object MenuItem7: TMenuItem
144 Action = ADisable
145 end
146 end
147 object ListViewSort1: TListViewSort
148 ListView = ListViewCategories
149 OnCompareItem = ListViewSort1CompareItem
150 OnFilter = ListViewSort1Filter
151 Column = 0
152 Order = soNone
153 Left = 643
154 Top = 221
155 end
156end
Note: See TracBrowser for help on using the repository browser.