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.

92 lines
2.0 KiB

3 years ago
  1. object FormAbout: TFormAbout
  2. Left = 425
  3. Height = 209
  4. Top = 332
  5. Width = 378
  6. BorderIcons = [biSystemMenu]
  7. BorderStyle = bsDialog
  8. Caption = 'About'
  9. ClientHeight = 209
  10. ClientWidth = 378
  11. Color = clWhite
  12. OnCreate = FormCreate
  13. Position = poMainFormCenter
  14. LCLVersion = '1.8.4.0'
  15. object ImageIcon: TImage
  16. Left = 14
  17. Height = 128
  18. Top = 24
  19. Width = 128
  20. AntialiasingMode = amOff
  21. Center = True
  22. Proportional = True
  23. Stretch = True
  24. end
  25. object BtnClose: TButton
  26. AnchorSideLeft.Control = Owner
  27. AnchorSideLeft.Side = asrCenter
  28. AnchorSideRight.Control = Owner
  29. AnchorSideRight.Side = asrCenter
  30. AnchorSideBottom.Control = Owner
  31. AnchorSideBottom.Side = asrBottom
  32. Left = 162
  33. Height = 25
  34. Top = 174
  35. Width = 55
  36. Anchors = [akLeft, akBottom]
  37. AutoSize = True
  38. BorderSpacing.Bottom = 10
  39. Caption = 'Close'
  40. Default = True
  41. OnClick = BtnCloseClick
  42. TabOrder = 0
  43. end
  44. object LabTitle: TLabel
  45. Left = 160
  46. Height = 30
  47. Top = 24
  48. Width = 90
  49. Caption = 'App Title'
  50. Font.Color = 11428096
  51. Font.Height = 30
  52. Font.Style = [fsBold]
  53. Layout = tlBottom
  54. ParentColor = False
  55. ParentFont = False
  56. end
  57. object LabVersion: TLabel
  58. AnchorSideLeft.Control = LabTitle
  59. AnchorSideTop.Control = LabTitle
  60. AnchorSideTop.Side = asrBottom
  61. AnchorSideBottom.Control = LabTitle
  62. AnchorSideBottom.Side = asrBottom
  63. Left = 160
  64. Height = 15
  65. Top = 54
  66. Width = 21
  67. Caption = 'v1.0'
  68. Layout = tlBottom
  69. ParentColor = False
  70. end
  71. object Label1: TLabel
  72. Left = 160
  73. Height = 15
  74. Top = 119
  75. Width = 93
  76. Caption = 'by Marek Mauder'
  77. ParentColor = False
  78. end
  79. object LabWeb: TLabel
  80. Cursor = crHandPoint
  81. Left = 160
  82. Height = 15
  83. Top = 136
  84. Width = 162
  85. Caption = 'http://galfar.vevb.net/deskew/'
  86. Font.Color = 16744448
  87. Font.Style = [fsUnderline]
  88. ParentColor = False
  89. ParentFont = False
  90. OnClick = LabWebClick
  91. end
  92. end