-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathForm.Main.fmx
More file actions
115 lines (115 loc) · 3.4 KB
/
Form.Main.fmx
File metadata and controls
115 lines (115 loc) · 3.4 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
object MainForm: TMainForm
Left = 0
Top = 0
Caption = 'Textract Demo'
ClientHeight = 480
ClientWidth = 640
FormFactor.Width = 320
FormFactor.Height = 480
FormFactor.Devices = [Desktop]
OnCreate = FormCreate
DesignerMasterStyle = 0
object ToolBar1: TToolBar
Size.Width = 640.000000000000000000
Size.Height = 40.000000000000000000
Size.PlatformDefault = False
TabOrder = 1
object SpeedButton1: TSpeedButton
Action = ActOpen
Enabled = True
ImageIndex = -1
Position.X = 8.000000000000000000
Position.Y = 8.000000000000000000
end
object SpeedButton2: TSpeedButton
Action = ActDetectDocumentText
Enabled = False
ImageIndex = -1
Position.X = 96.000000000000000000
Position.Y = 8.000000000000000000
Size.Width = 137.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
end
end
object MemoOutput: TMemo
Touch.InteractiveGestures = [Pan, LongTap, DoubleTap]
DataDetectorTypes = []
Align = Bottom
Position.Y = 440.000000000000000000
Size.Width = 640.000000000000000000
Size.Height = 40.000000000000000000
Size.PlatformDefault = False
TabOrder = 4
Viewport.Width = 636.000000000000000000
Viewport.Height = 36.000000000000000000
end
object OpenInputDocumentDialog: TOpenDialog
Title = 'Choose an input document image...'
Left = 160
Top = 80
end
object Panel1: TPanel
Align = Client
Size.Width = 640.000000000000000000
Size.Height = 396.000000000000000000
Size.PlatformDefault = False
TabOrder = 9
object BlocksListView: TListView
ItemAppearanceClassName = 'TImageListItemBottomDetailAppearance'
ItemEditAppearanceClassName = 'TImageListItemBottomDetailShowCheckAppearance'
HeaderAppearanceClassName = 'TListHeaderObjects'
FooterAppearanceClassName = 'TListHeaderObjects'
Align = Left
Size.Width = 303.000000000000000000
Size.Height = 396.000000000000000000
Size.PlatformDefault = False
TabOrder = 6
ItemAppearanceObjects.ItemObjects.Accessory.Visible = False
ItemAppearanceObjects.ItemObjects.Image.Visible = False
OnChange = BlocksListViewChange
end
object Splitter1: TSplitter
Align = Left
Cursor = crHSplit
MinSize = 20.000000000000000000
Position.X = 303.000000000000000000
Size.Width = 4.000000000000000000
Size.Height = 396.000000000000000000
Size.PlatformDefault = False
end
object InputDocumentImage: TImage
MultiResBitmap = <
item
end>
Align = Client
Size.Width = 333.000000000000000000
Size.Height = 396.000000000000000000
Size.PlatformDefault = False
end
end
object Splitter2: TSplitter
Align = Bottom
Cursor = crVSplit
MinSize = 20.000000000000000000
Position.Y = 436.000000000000000000
Size.Width = 640.000000000000000000
Size.Height = 4.000000000000000000
Size.PlatformDefault = False
end
object ActionList1: TActionList
Left = 80
Top = 80
object ActOpen: TAction
Text = 'Open...'
Hint = 'Choose a file as the input document image.'
OnExecute = ActOpenExecute
end
object ActDetectDocumentText: TAction
Text = 'Detect Document Text'
Enabled = False
Hint = 'Detect text within the input document.'
OnExecute = ActDetectDocumentTextExecute
end
end
end