source: tags/1.5.0/Forms/UFormCategories.lfm

Last change on this file was 174, checked in by chronos, 6 years ago
  • Added: Basic color theming support. Colors can be changed only for some controls.
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 = '1.8.0.6'
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 Caption = 'ToolBar1'
52 Images = Core.ImageList1
53 ParentShowHint = False
54 ShowHint = True
55 TabOrder = 1
56 object ToolButton1: TToolButton
57 Left = 1
58 Top = 2
59 Action = AAdd
60 end
61 object ToolButton2: TToolButton
62 Left = 24
63 Top = 2
64 Action = AModify
65 end
66 object ToolButton3: TToolButton
67 Left = 47
68 Top = 2
69 Action = ARemove
70 end
71 end
72 object ActionList1: TActionList
73 Images = Core.ImageList1
74 left = 380
75 top = 196
76 object AAdd: TAction
77 Caption = 'Add'
78 ImageIndex = 0
79 OnExecute = AAddExecute
80 ShortCut = 45
81 end
82 object ARemove: TAction
83 Caption = 'Remove'
84 ImageIndex = 4
85 OnExecute = ARemoveExecute
86 ShortCut = 46
87 end
88 object AModify: TAction
89 Caption = 'Modify'
90 ImageIndex = 3
91 OnExecute = AModifyExecute
92 ShortCut = 13
93 end
94 object ASelectAll: TAction
95 Caption = 'Select all'
96 OnExecute = ASelectAllExecute
97 ShortCut = 16449
98 end
99 object AEnable: TAction
100 Caption = 'Enable'
101 OnExecute = AEnableExecute
102 end
103 object ADisable: TAction
104 Caption = 'Disable'
105 OnExecute = ADisableExecute
106 end
107 end
108 object PopupMenuCategory: TPopupMenu
109 Images = Core.ImageList1
110 left = 119
111 top = 192
112 object MenuItem1: TMenuItem
113 Action = AAdd
114 end
115 object MenuItem2: TMenuItem
116 Action = AModify
117 end
118 object MenuItem3: TMenuItem
119 Action = ARemove
120 end
121 object MenuItem4: TMenuItem
122 Action = ASelectAll
123 end
124 object MenuItem5: TMenuItem
125 Caption = '-'
126 end
127 object MenuItem6: TMenuItem
128 Action = AEnable
129 end
130 object MenuItem7: TMenuItem
131 Action = ADisable
132 end
133 end
134 object ListViewSort1: TListViewSort
135 ListView = ListViewCategories
136 OnCompareItem = ListViewSort1CompareItem
137 OnFilter = ListViewSort1Filter
138 Column = 0
139 Order = soNone
140 left = 536
141 top = 184
142 end
143end
Note: See TracBrowser for help on using the repository browser.