1 | object Form_ToolTemplate: TForm_ToolTemplate |
---|
2 | Left = 0 |
---|
3 | Top = 0 |
---|
4 | Caption = 'Template' |
---|
5 | ClientHeight = 423 |
---|
6 | ClientWidth = 492 |
---|
7 | Color = clBtnFace |
---|
8 | Constraints.MinHeight = 450 |
---|
9 | Constraints.MinWidth = 500 |
---|
10 | Font.Charset = DEFAULT_CHARSET |
---|
11 | Font.Color = clWindowText |
---|
12 | Font.Height = -11 |
---|
13 | Font.Name = 'Tahoma' |
---|
14 | Font.Style = [] |
---|
15 | FormStyle = fsMDIChild |
---|
16 | OldCreateOrder = False |
---|
17 | Visible = True |
---|
18 | WindowState = wsMaximized |
---|
19 | PixelsPerInch = 96 |
---|
20 | TextHeight = 13 |
---|
21 | object Splitter1: TSplitter |
---|
22 | Left = 200 |
---|
23 | Top = 0 |
---|
24 | Width = 9 |
---|
25 | Height = 423 |
---|
26 | AutoSnap = False |
---|
27 | Beveled = True |
---|
28 | MinSize = 150 |
---|
29 | ExplicitHeight = 473 |
---|
30 | end |
---|
31 | object panel_files: TPanel |
---|
32 | Left = 0 |
---|
33 | Top = 0 |
---|
34 | Width = 200 |
---|
35 | Height = 423 |
---|
36 | Align = alLeft |
---|
37 | BevelOuter = bvNone |
---|
38 | TabOrder = 0 |
---|
39 | object filelist: TListBox |
---|
40 | Left = 0 |
---|
41 | Top = 103 |
---|
42 | Width = 200 |
---|
43 | Height = 320 |
---|
44 | Align = alClient |
---|
45 | ItemHeight = 13 |
---|
46 | PopupMenu = filepopup |
---|
47 | TabOrder = 0 |
---|
48 | OnMouseDown = listMouseDown |
---|
49 | end |
---|
50 | object panel_extension: TPanel |
---|
51 | Left = 0 |
---|
52 | Top = 0 |
---|
53 | Width = 200 |
---|
54 | Height = 103 |
---|
55 | Align = alTop |
---|
56 | BevelOuter = bvNone |
---|
57 | TabOrder = 1 |
---|
58 | DesignSize = ( |
---|
59 | 200 |
---|
60 | 103) |
---|
61 | object label_ext: TLabel |
---|
62 | Left = 2 |
---|
63 | Top = 62 |
---|
64 | Width = 100 |
---|
65 | Height = 17 |
---|
66 | AutoSize = False |
---|
67 | Caption = 'Filter by &extension:' |
---|
68 | FocusControl = combo_extension |
---|
69 | end |
---|
70 | object combo_extension: TComboBox |
---|
71 | Left = 2 |
---|
72 | Top = 76 |
---|
73 | Width = 192 |
---|
74 | Height = 21 |
---|
75 | Style = csDropDownList |
---|
76 | Anchors = [akLeft, akTop, akRight] |
---|
77 | DropDownCount = 12 |
---|
78 | Font.Charset = DEFAULT_CHARSET |
---|
79 | Font.Color = clWindowText |
---|
80 | Font.Height = -11 |
---|
81 | Font.Name = 'Tahoma' |
---|
82 | Font.Style = [] |
---|
83 | ItemHeight = 13 |
---|
84 | ParentFont = False |
---|
85 | Sorted = True |
---|
86 | TabOrder = 3 |
---|
87 | OnClick = combo_extensionClick |
---|
88 | end |
---|
89 | object check_zerobyte: TCheckBox |
---|
90 | Left = 2 |
---|
91 | Top = 44 |
---|
92 | Width = 130 |
---|
93 | Height = 13 |
---|
94 | Caption = 'Show &zero-byte files' |
---|
95 | TabOrder = 2 |
---|
96 | OnClick = check_zerobyteClick |
---|
97 | end |
---|
98 | object edit_filtername: TEdit |
---|
99 | Left = 2 |
---|
100 | Top = 20 |
---|
101 | Width = 192 |
---|
102 | Height = 18 |
---|
103 | Anchors = [akLeft, akTop, akRight] |
---|
104 | AutoSize = False |
---|
105 | TabOrder = 1 |
---|
106 | end |
---|
107 | object check_filtername: TCheckBox |
---|
108 | Left = 2 |
---|
109 | Top = 5 |
---|
110 | Width = 130 |
---|
111 | Height = 15 |
---|
112 | Caption = 'Filter by file&name:' |
---|
113 | TabOrder = 0 |
---|
114 | OnClick = check_filternameClick |
---|
115 | end |
---|
116 | end |
---|
117 | end |
---|
118 | object content: TPanel |
---|
119 | Left = 209 |
---|
120 | Top = 0 |
---|
121 | Width = 283 |
---|
122 | Height = 423 |
---|
123 | Align = alClient |
---|
124 | BevelOuter = bvNone |
---|
125 | TabOrder = 1 |
---|
126 | end |
---|
127 | object filepopup: TPopupMenu |
---|
128 | OnPopup = filepopupPopup |
---|
129 | Left = 72 |
---|
130 | Top = 216 |
---|
131 | object popup_separator: TMenuItem |
---|
132 | Caption = '-' |
---|
133 | end |
---|
134 | object popup_import: TMenuItem |
---|
135 | Caption = 'Import binary .dat-file' |
---|
136 | OnClick = popup_importClick |
---|
137 | end |
---|
138 | object popup_export: TMenuItem |
---|
139 | Caption = 'Export binary .dat-file' |
---|
140 | OnClick = popup_exportClick |
---|
141 | end |
---|
142 | end |
---|
143 | object importd: TOpenDialog |
---|
144 | Options = [ofExtensionDifferent, ofPathMustExist, ofFileMustExist, ofEnableSizing] |
---|
145 | Left = 136 |
---|
146 | Top = 232 |
---|
147 | end |
---|
148 | object exportd: TSaveDialog |
---|
149 | Options = [ofHideReadOnly, ofExtensionDifferent, ofPathMustExist, ofEnableSizing] |
---|
150 | Left = 144 |
---|
151 | Top = 256 |
---|
152 | end |
---|
153 | end |
---|