source: trunk/Forms/FormImportSources.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: 4.6 KB
Line 
1object FormImportSources: TFormImportSources
2 Left = 475
3 Height = 497
4 Top = 329
5 Width = 974
6 Caption = 'Import sources'
7 ClientHeight = 497
8 ClientWidth = 974
9 DesignTimePPI = 144
10 OnActivate = FormActivate
11 OnCreate = FormCreate
12 OnShow = FormShow
13 Position = poScreenCenter
14 LCLVersion = '3.6.0.0'
15 object ToolBar1: TToolBar
16 Left = 0
17 Height = 33
18 Top = 464
19 Width = 974
20 Align = alBottom
21 Caption = 'ToolBar1'
22 Images = Core.ImageListSmall
23 ParentShowHint = False
24 ShowHint = True
25 TabOrder = 0
26 object ToolButton1: TToolButton
27 Left = 1
28 Top = 2
29 Action = AAdd
30 end
31 object ToolButton2: TToolButton
32 Left = 36
33 Top = 2
34 Action = AModify
35 end
36 object ToolButton3: TToolButton
37 Left = 71
38 Top = 2
39 Action = ARemove
40 end
41 object ToolButton4: TToolButton
42 Left = 106
43 Top = 2
44 Action = AProcess
45 end
46 object ToolButton5: TToolButton
47 Left = 141
48 Top = 2
49 Action = APreview
50 end
51 object ToolButton6: TToolButton
52 Left = 176
53 Top = 2
54 Action = AEnable
55 end
56 object ToolButton7: TToolButton
57 Left = 211
58 Top = 2
59 Action = ADisable
60 end
61 end
62 object ListView1: TListView
63 Left = 5
64 Height = 419
65 Top = 40
66 Width = 964
67 Align = alClient
68 BorderSpacing.Left = 5
69 BorderSpacing.Right = 5
70 BorderSpacing.Bottom = 5
71 Checkboxes = True
72 Columns = <
73 item
74 Caption = 'Name'
75 Width = 180
76 end
77 item
78 Caption = 'URL'
79 Width = 300
80 end
81 item
82 Caption = 'Categories'
83 Width = 240
84 end
85 item
86 Caption = 'Count'
87 Width = 84
88 end
89 item
90 Caption = 'Date'
91 Width = 120
92 end
93 item
94 Caption = 'Format'
95 Width = 150
96 end>
97 MultiSelect = True
98 OwnerData = True
99 PopupMenu = PopupMenuImportSource
100 ReadOnly = True
101 RowSelect = True
102 TabOrder = 1
103 ViewStyle = vsReport
104 OnChange = ListView1Change
105 OnData = ListView1Data
106 OnDblClick = ListView1DblClick
107 OnKeyPress = ListView1KeyPress
108 OnResize = ListView1Resize
109 OnSelectItem = ListView1SelectItem
110 end
111 object ListViewFilter1: TListViewFilter
112 Left = 5
113 Height = 35
114 Top = 5
115 Width = 964
116 OnChange = ListViewFilter1Change
117 Align = alTop
118 BorderSpacing.Left = 5
119 BorderSpacing.Top = 5
120 BorderSpacing.Right = 5
121 end
122 object ActionList1: TActionList
123 Images = Core.ImageListSmall
124 Left = 490
125 Top = 269
126 object AAdd: TAction
127 Caption = 'Add'
128 ImageIndex = 0
129 OnExecute = AAddExecute
130 ShortCut = 45
131 end
132 object ARemove: TAction
133 Caption = 'Remove'
134 ImageIndex = 4
135 OnExecute = ARemoveExecute
136 ShortCut = 46
137 end
138 object AModify: TAction
139 Caption = 'Modify'
140 ImageIndex = 3
141 OnExecute = AModifyExecute
142 ShortCut = 13
143 end
144 object AProcess: TAction
145 Caption = 'Process'
146 ImageIndex = 5
147 OnExecute = AProcessExecute
148 end
149 object AEnable: TAction
150 Caption = 'Enable'
151 ImageIndex = 24
152 OnExecute = AEnableExecute
153 end
154 object ADisable: TAction
155 Caption = 'Disable'
156 ImageIndex = 23
157 OnExecute = ADisableExecute
158 end
159 object APreview: TAction
160 Caption = 'Preview'
161 ImageIndex = 13
162 OnExecute = APreviewExecute
163 end
164 end
165 object PopupMenuImportSource: TPopupMenu
166 Images = Core.ImageListSmall
167 Left = 176
168 Top = 264
169 object MenuItem1: TMenuItem
170 Action = AAdd
171 end
172 object MenuItem2: TMenuItem
173 Action = AModify
174 end
175 object MenuItem3: TMenuItem
176 Action = ARemove
177 end
178 object MenuItem4: TMenuItem
179 Action = AProcess
180 end
181 object MenuItem8: TMenuItem
182 Action = APreview
183 end
184 object MenuItem7: TMenuItem
185 Caption = '-'
186 end
187 object MenuItem5: TMenuItem
188 Action = AEnable
189 end
190 object MenuItem6: TMenuItem
191 Action = ADisable
192 end
193 end
194 object JobProgressView1: TJobProgressView
195 OwnerDraw = False
196 ShowDelay = 0
197 AutoClose = True
198 Left = 359
199 Top = 143
200 end
201 object ListViewSort1: TListViewSort
202 ListView = ListView1
203 OnCompareItem = ListViewSort1CompareItem
204 OnFilter = ListViewSort1Filter
205 OnColumnWidthChanged = ListViewSort1ColumnWidthChanged
206 Column = 0
207 Order = soNone
208 Left = 656
209 Top = 206
210 end
211end
Note: See TracBrowser for help on using the repository browser.