-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathForm.Main.fmx
More file actions
85 lines (85 loc) · 2.44 KB
/
Form.Main.fmx
File metadata and controls
85 lines (85 loc) · 2.44 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
object MainForm: TMainForm
Left = 0
Top = 0
Caption = 'Translate'
ClientHeight = 202
ClientWidth = 640
FormFactor.Width = 320
FormFactor.Height = 480
FormFactor.Devices = [Desktop]
OnCreate = FormCreate
DesignerMasterStyle = 0
object MemoTextSource: TMemo
Touch.InteractiveGestures = [Pan, LongTap, DoubleTap]
DataDetectorTypes = []
Position.X = 8.000000000000000000
Position.Y = 38.000000000000000000
Size.Width = 289.000000000000000000
Size.Height = 155.000000000000000000
Size.PlatformDefault = False
TabOrder = 3
OnKeyDown = MemoTextSourceKeyDown
Viewport.Width = 285.000000000000000000
Viewport.Height = 151.000000000000000000
end
object MemoTranslatedText: TMemo
Touch.InteractiveGestures = [Pan, LongTap, DoubleTap]
DataDetectorTypes = []
Position.X = 343.000000000000000000
Position.Y = 38.000000000000000000
Size.Width = 289.000000000000000000
Size.Height = 155.000000000000000000
Size.PlatformDefault = False
TabOrder = 2
Viewport.Width = 285.000000000000000000
Viewport.Height = 151.000000000000000000
end
object BtnSwitchLanguages: TButton
Action = ActSwitchLanguages
Enabled = False
ImageIndex = -1
Position.X = 305.000000000000000000
Position.Y = 8.000000000000000000
Size.Width = 30.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TabOrder = 4
end
object ComboSourceLanguage: TComboBox
Items.Strings = (
'auto: Detect Language Automatically')
ItemIndex = 0
Position.X = 8.000000000000000000
Position.Y = 8.000000000000000000
Size.Width = 289.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TabOrder = 1
OnChange = ComboSourceLanguageChange
end
object ComboTargetLanguage: TComboBox
Items.Strings = (
'en: English')
ItemIndex = 0
Position.X = 343.000000000000000000
Position.Y = 8.000000000000000000
Size.Width = 289.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
end
object ActionList1: TActionList
Left = 304
Top = 40
object ActSwitchLanguages: TAction
Text = '<>'
Enabled = False
Hint = 'Switch source and target languages.'
OnExecute = ActSwitchLanguagesExecute
end
object ActTranslate: TAction
Text = 'Translate'
OnExecute = ActTranslateExecute
end
end
end