source: trunk/Forms/UFormImportFormats.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: 2.2 KB
Line 
1object FormImportFormats: TFormImportFormats
2 Left = 473
3 Height = 518
4 Top = 327
5 Width = 739
6 Caption = 'Import formats'
7 ClientHeight = 518
8 ClientWidth = 739
9 DesignTimePPI = 120
10 OnClose = FormClose
11 OnCreate = FormCreate
12 OnShow = FormShow
13 Position = poScreenCenter
14 LCLVersion = '2.0.2.0'
15 object ListView1: TListView
16 Left = 5
17 Height = 476
18 Top = 5
19 Width = 729
20 Align = alClient
21 BorderSpacing.Around = 5
22 Columns = <
23 item
24 Caption = 'Name'
25 Width = 704
26 end>
27 MultiSelect = True
28 OwnerData = True
29 ParentFont = False
30 PopupMenu = PopupMenuImportSource
31 ReadOnly = True
32 RowSelect = True
33 TabOrder = 0
34 ViewStyle = vsReport
35 OnData = ListView1Data
36 OnDblClick = ListView1DblClick
37 OnKeyPress = ListView1KeyPress
38 OnSelectItem = ListView1SelectItem
39 end
40 object ToolBar1: TToolBar
41 Left = 0
42 Top = 486
43 Width = 739
44 Align = alBottom
45 Images = Core.ImageList1
46 ParentFont = False
47 ParentShowHint = False
48 ShowHint = True
49 TabOrder = 1
50 object ToolButton1: TToolButton
51 Left = 1
52 Top = 2
53 Action = AAdd
54 end
55 object ToolButton2: TToolButton
56 Left = 30
57 Top = 2
58 Action = AModify
59 end
60 object ToolButton3: TToolButton
61 Left = 59
62 Top = 2
63 Action = ARemove
64 end
65 end
66 object ActionList1: TActionList
67 Images = Core.ImageList1
68 left = 510
69 top = 280
70 object AAdd: TAction
71 Caption = 'Add'
72 ImageIndex = 0
73 OnExecute = AAddExecute
74 ShortCut = 45
75 end
76 object ARemove: TAction
77 Caption = 'Remove'
78 ImageIndex = 4
79 OnExecute = ARemoveExecute
80 ShortCut = 46
81 end
82 object AModify: TAction
83 Caption = 'Modify'
84 ImageIndex = 3
85 OnExecute = AModifyExecute
86 ShortCut = 13
87 end
88 end
89 object PopupMenuImportSource: TPopupMenu
90 Images = Core.ImageList1
91 left = 184
92 top = 275
93 object MenuItem1: TMenuItem
94 Action = AAdd
95 end
96 object MenuItem2: TMenuItem
97 Action = AModify
98 end
99 object MenuItem3: TMenuItem
100 Action = ARemove
101 end
102 end
103end
Note: See TracBrowser for help on using the repository browser.