-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathexport_preview_unit.lfm
More file actions
160 lines (160 loc) · 4.18 KB
/
export_preview_unit.lfm
File metadata and controls
160 lines (160 loc) · 4.18 KB
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
object export_preview_form: Texport_preview_form
Left = 445
Height = 697
Top = 221
Width = 1019
BorderIcons = [biSystemMenu]
BorderStyle = bsSizeToolWin
Caption = ' edit export preview applications'
ClientHeight = 697
ClientWidth = 1019
Color = 15790312
DesignTimePPI = 120
Font.Color = clBlack
Font.Height = -16
Font.Name = 'Arial'
Font.Style = [fsBold]
OnCreate = FormCreate
LCLVersion = '3.4.0.0'
Scaled = False
object Label1: TLabel
Left = 20
Height = 20
Top = 520
Width = 90
AutoSize = False
Caption = '3-D viewer:'
end
object Label2: TLabel
Left = 20
Height = 20
Top = 580
Width = 90
AutoSize = False
Caption = '2-D viewer :'
end
object date_stamp_label: TLabel
Left = 0
Height = 4
Top = 646
Width = 980
AutoSize = False
end
object Label3: TLabel
Left = 40
Height = 21
Top = 8
Width = 500
AutoSize = False
Caption = 'viewer applications for DXF / STL export preview'
Font.Color = 16711808
Font.Height = -18
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object preview_3d_edit: TEdit
Left = 44
Height = 26
Top = 540
Width = 589
AutoSize = False
AutoSelect = False
Font.Color = clBlue
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 1
Text = '3D-Tool-Free.exe'
end
object preview_2d_edit: TEdit
Left = 44
Height = 26
Top = 600
Width = 589
AutoSize = False
AutoSelect = False
Font.Color = clBlue
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 2
Text = 'inkscape.exe'
end
object ok_button: TButton
Left = 892
Height = 25
Top = 604
Width = 57
Caption = 'OK'
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ModalResult = 1
ParentFont = False
TabOrder = 0
end
object Memo1: TMemo
Left = 16
Height = 467
Top = 46
Width = 945
BorderStyle = bsNone
Lines.Strings = (
'Enter the name or location of the viewer application programs which you want Templot to use when previewing DXF/STL exports.'
''
'These programs need to be installed on your system. This is beyond Templot''s control, you need to download and install them yourself.'
''
'The recommended applications (free) are:'
''
'3D-Tool Free Viewer - for 3-D exports for 3D printing (STL files).'
' Inkscape - for 2-D exports for laser-cutting and CNC milling (DXF files).'
' '
'You can use the buttons below to visit their respective web sites and download them. If you are interested only in 3D printing you won''t need '
'Inkscape.'
''
'Or you can use any other applications of your choice.'
''
'Templot needs to know the name of these application programs, or the location where the application is installed on your system.'
''
'In most cases it will be sufficient to enter just the program file name, for example:'
''
' inkscape.exe'
''
'On some Windows systems you may need to enter the full program file location, for example:'
''
' C:\Program Files\Inkscape\bin\inkscape.exe'
''
'You can find this information (after downloading and installing them) by RIGHT-clicking on their desktop icon and then clicking "Properties".'
'The information can be copied from the "Target" box.'
''
'It is important to enter the information exactly without any mistakes. You may need to edit these details after installing upgrades to these programs.'
' '
' '
)
ParentColor = True
ReadOnly = True
TabOrder = 3
end
object download_3d_button: TButton
Left = 664
Height = 24
Top = 540
Width = 184
Caption = 'download 3D-Tool >>>'
TabOrder = 4
OnClick = download_3d_buttonClick
end
object download_2d_button: TButton
Left = 664
Height = 24
Top = 600
Width = 184
Caption = 'download Inkscape >>>'
TabOrder = 5
OnClick = download_2d_buttonClick
end
end