-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathDFMToFMXFM.fmx
94 lines (94 loc) · 2.87 KB
/
DFMToFMXFM.fmx
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
object DFMtoFMXConvert: TDFMtoFMXConvert
Left = 0
Top = 0
Caption = 'VCL2FMX'
ClientHeight = 545
ClientWidth = 465
Position = ScreenCenter
FormFactor.Width = 320
FormFactor.Height = 480
FormFactor.Devices = [Desktop]
OnCreate = FormCreate
OnClose = FormClose
DesignerMasterStyle = 0
object BtnOpenFile: TButton
Position.X = 16.000000000000000000
Position.Y = 8.000000000000000000
Size.Width = 80.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
Text = 'Abrir DFM'
OnClick = BtnOpenFileClick
end
object mmOutput: TMemo
Touch.InteractiveGestures = [Pan, LongTap, DoubleTap]
DataDetectorTypes = []
StyledSettings = [Size, Style, FontColor]
TextSettings.Font.Family = 'Courier New'
Position.X = 16.000000000000000000
Position.Y = 288.000000000000000000
Size.Width = 433.000000000000000000
Size.Height = 241.000000000000000000
Size.PlatformDefault = False
TabOrder = 2
Viewport.Width = 429.000000000000000000
Viewport.Height = 237.000000000000000000
end
object BtnProcess: TButton
Position.X = 104.000000000000000000
Position.Y = 8.000000000000000000
Size.Width = 80.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'BtnProcessStyle1'
TabOrder = 3
Text = 'Processar'
OnClick = BtnProcessClick
end
object btnConfiguracoes: TButton
Position.X = 352.000000000000000000
Position.Y = 8.000000000000000000
Size.Width = 96.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TabOrder = 4
Text = 'Configura'#231#245'es'
OnClick = btnConfiguracoesClick
end
object BtnSaveFMX: TButton
Position.X = 192.000000000000000000
Position.Y = 8.000000000000000000
Size.Width = 80.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TabOrder = 5
Text = 'Salvar FMX'
OnClick = BtnSaveFMXClick
end
object mmInput: TMemo
Touch.InteractiveGestures = [Pan, LongTap, DoubleTap]
DataDetectorTypes = []
StyledSettings = [Size, Style, FontColor]
TextSettings.Font.Family = 'Courier New'
Position.X = 16.000000000000000000
Position.Y = 40.000000000000000000
Size.Width = 433.000000000000000000
Size.Height = 241.000000000000000000
Size.PlatformDefault = False
TabOrder = 1
Viewport.Width = 429.000000000000000000
Viewport.Height = 237.000000000000000000
end
object dlgAbrir: TOpenDialog
Filter =
'DFM Files|*.dfm|Pascal Source|*.pas|FireMonkey|*.fmx|All Files *' +
'.*|*.*'
Title = 'Find DFM'
Left = 256
end
object dlgSalvar: TSaveDialog
Filter = 'Firemonkey|*.FMX|All Files *.*| *.*'
Left = 312
end
end