Repo for the search and displace ingest module that takes odf, docx and pdf and transforms it into .md to be used with search and displace operations
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

212 lines
5.4 KiB

3 years ago
  1. object FormAdvOptions: TFormAdvOptions
  2. Left = 140
  3. Height = 322
  4. Top = 346
  5. Width = 454
  6. BorderIcons = [biSystemMenu]
  7. BorderStyle = bsDialog
  8. Caption = 'Advanced Options'
  9. ClientHeight = 322
  10. ClientWidth = 454
  11. Color = clWhite
  12. OnCreate = FormCreate
  13. OnDestroy = FormDestroy
  14. Position = poMainFormCenter
  15. LCLVersion = '1.8.4.0'
  16. object Panel1: TPanel
  17. Left = 8
  18. Height = 306
  19. Top = 8
  20. Width = 438
  21. Align = alClient
  22. BorderSpacing.Around = 8
  23. BevelOuter = bvNone
  24. ClientHeight = 306
  25. ClientWidth = 438
  26. TabOrder = 0
  27. object LabTitle: TLabel
  28. Left = 0
  29. Height = 23
  30. Top = 4
  31. Width = 438
  32. Align = alTop
  33. BorderSpacing.Top = 4
  34. BorderSpacing.Bottom = 4
  35. Caption = 'Advanced Options '
  36. Font.Color = 11428096
  37. Font.Height = 24
  38. Font.Style = [fsBold]
  39. ParentColor = False
  40. ParentFont = False
  41. end
  42. object LabMaxAngle: TLabel
  43. AnchorSideLeft.Control = LabForcedFormat
  44. AnchorSideTop.Control = LabForcedFormat
  45. AnchorSideTop.Side = asrBottom
  46. Left = 8
  47. Height = 15
  48. Top = 72
  49. Width = 112
  50. BorderSpacing.Top = 18
  51. Caption = 'Max. angle [degrees]:'
  52. ParentColor = False
  53. end
  54. object SpinEditMaxAngle: TFloatSpinEdit
  55. AnchorSideLeft.Control = LabMaxAngle
  56. AnchorSideLeft.Side = asrBottom
  57. AnchorSideTop.Control = LabMaxAngle
  58. AnchorSideTop.Side = asrCenter
  59. Left = 128
  60. Height = 23
  61. Top = 68
  62. Width = 64
  63. BorderSpacing.Left = 8
  64. DecimalPlaces = 1
  65. Increment = 1
  66. MaxValue = 90
  67. MinValue = 1
  68. TabOrder = 1
  69. Value = 10
  70. end
  71. object LabSkipAngle: TLabel
  72. AnchorSideLeft.Control = LabForcedFormat
  73. AnchorSideTop.Control = LabMaxAngle
  74. AnchorSideTop.Side = asrBottom
  75. Left = 8
  76. Height = 15
  77. Top = 105
  78. Width = 109
  79. BorderSpacing.Top = 18
  80. BorderSpacing.Right = 8
  81. Caption = 'Skip angle [degrees]:'
  82. ParentColor = False
  83. end
  84. object SpinEditSkipAngle: TFloatSpinEdit
  85. AnchorSideLeft.Control = SpinEditMaxAngle
  86. AnchorSideTop.Control = LabSkipAngle
  87. AnchorSideTop.Side = asrCenter
  88. AnchorSideRight.Side = asrBottom
  89. Left = 128
  90. Height = 23
  91. Top = 101
  92. Width = 64
  93. Increment = 1
  94. MaxValue = 45
  95. MinValue = 0
  96. TabOrder = 2
  97. Value = 0.01
  98. end
  99. object LabForcedFormat: TLabel
  100. AnchorSideLeft.Control = Panel1
  101. AnchorSideTop.Control = LabTitle
  102. AnchorSideTop.Side = asrBottom
  103. Left = 8
  104. Height = 15
  105. Top = 39
  106. Width = 80
  107. BorderSpacing.Left = 8
  108. BorderSpacing.Top = 12
  109. Caption = 'Output format:'
  110. ParentColor = False
  111. end
  112. object ComboOutputFormat: TComboBox
  113. AnchorSideLeft.Control = LabForcedFormat
  114. AnchorSideLeft.Side = asrBottom
  115. AnchorSideTop.Control = LabForcedFormat
  116. AnchorSideTop.Side = asrCenter
  117. Left = 100
  118. Height = 23
  119. Top = 35
  120. Width = 256
  121. BorderSpacing.Left = 12
  122. ItemHeight = 15
  123. Style = csDropDownList
  124. TabOrder = 0
  125. end
  126. object LabDeskewExe: TLabel
  127. AnchorSideLeft.Control = CheckDefaultExecutable
  128. AnchorSideTop.Control = CheckDefaultExecutable
  129. AnchorSideTop.Side = asrBottom
  130. Left = 8
  131. Height = 15
  132. Top = 207
  133. Width = 102
  134. BorderSpacing.Top = 12
  135. Caption = 'Deskew executable:'
  136. ParentColor = False
  137. end
  138. object CheckDefaultExecutable: TCheckBox
  139. AnchorSideLeft.Control = LabForcedFormat
  140. AnchorSideTop.Side = asrCenter
  141. AnchorSideBottom.Side = asrCenter
  142. Left = 8
  143. Height = 19
  144. Top = 176
  145. Width = 181
  146. Caption = 'Use default Deskew executable'
  147. Checked = True
  148. State = cbChecked
  149. TabOrder = 3
  150. end
  151. object EdDeskewExePath: TEdit
  152. AnchorSideLeft.Control = LabDeskewExe
  153. AnchorSideLeft.Side = asrBottom
  154. AnchorSideTop.Control = LabDeskewExe
  155. AnchorSideTop.Side = asrCenter
  156. AnchorSideRight.Control = BtnBrowseDeskewExePath
  157. AnchorSideBottom.Side = asrCenter
  158. Left = 118
  159. Height = 23
  160. Top = 203
  161. Width = 233
  162. Anchors = [akTop, akLeft, akRight]
  163. BorderSpacing.Left = 8
  164. TabOrder = 4
  165. end
  166. object BtnBrowseDeskewExePath: TButton
  167. AnchorSideLeft.Side = asrBottom
  168. AnchorSideTop.Control = EdDeskewExePath
  169. AnchorSideTop.Side = asrCenter
  170. AnchorSideRight.Control = Panel1
  171. AnchorSideRight.Side = asrBottom
  172. AnchorSideBottom.Side = asrBottom
  173. Left = 357
  174. Height = 25
  175. Top = 202
  176. Width = 73
  177. Action = AtcBrowseDeskewExe
  178. Anchors = [akTop, akRight]
  179. AutoSize = True
  180. BorderSpacing.Left = 6
  181. BorderSpacing.Right = 8
  182. TabOrder = 5
  183. end
  184. object BtnResetOptions: TButton
  185. AnchorSideLeft.Control = Panel1
  186. AnchorSideBottom.Control = Panel1
  187. AnchorSideBottom.Side = asrBottom
  188. Left = 8
  189. Height = 25
  190. Top = 277
  191. Width = 108
  192. Action = ActResetOptions
  193. Anchors = [akLeft, akBottom]
  194. AutoSize = True
  195. BorderSpacing.Left = 8
  196. BorderSpacing.Bottom = 4
  197. TabOrder = 6
  198. end
  199. end
  200. object ActionList: TActionList
  201. left = 216
  202. top = 8
  203. object AtcBrowseDeskewExe: TAction
  204. Caption = 'Browse...'
  205. OnExecute = AtcBrowseDeskewExeExecute
  206. end
  207. object ActResetOptions: TAction
  208. Caption = 'Reset Options...'
  209. OnExecute = ActResetOptionsExecute
  210. end
  211. end
  212. end