forked from masonwheeler/DFMJSON
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.dfm
140 lines (140 loc) · 2.76 KB
/
main.dfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
object frmProcessorMain: TfrmProcessorMain
Left = 0
Top = 0
BorderStyle = bsSingle
Caption = 'DFMJSON Processor'
ClientHeight = 885
ClientWidth = 833
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -14
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
DesignSize = (
833
885)
PixelsPerInch = 120
TextHeight = 17
object Label1: TLabel
Left = 10
Top = 59
Width = 40
Height = 17
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Caption = 'Script:'
end
object Label2: TLabel
Left = 10
Top = 10
Width = 33
Height = 17
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Caption = 'Path:'
end
object Label3: TLabel
Left = 10
Top = 373
Width = 44
Height = 17
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Caption = 'Output'
end
object Label4: TLabel
Left = 544
Top = 10
Width = 29
Height = 17
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Caption = 'Files:'
end
object btnProcess: TButton
Left = 366
Top = 825
Width = 98
Height = 33
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Anchors = [akLeft, akBottom]
Caption = '&Process'
TabOrder = 0
OnClick = btnProcessClick
end
object txtScript: TMemo
Left = 10
Top = 84
Width = 813
Height = 276
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Anchors = [akLeft, akTop, akRight, akBottom]
ScrollBars = ssVertical
TabOrder = 1
end
object txtPath: TEdit
Left = 52
Top = 7
Width = 476
Height = 25
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
TabOrder = 2
end
object txtOutput: TMemo
Left = 10
Top = 398
Width = 813
Height = 419
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Anchors = [akLeft, akTop, akRight, akBottom]
ReadOnly = True
ScrollBars = ssVertical
TabOrder = 3
end
object txtMask: TEdit
Left = 577
Top = 7
Width = 246
Height = 25
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
TabOrder = 4
end
object chkRecurse: TCheckBox
Left = 52
Top = 39
Width = 181
Height = 17
Caption = 'Include Subdirectories'
TabOrder = 5
end
object OpenDialog1: TOpenDialog
Filter = 'DFM files|*.dfm'
Left = 144
Top = 288
end
end